Files
@ 2f841e844536
Branch filter:
Location: seniordesign-ui/References/CompactFramework/OpenNETCF.Configuration.xml
2f841e844536
19.9 KiB
text/xml
fixed the problem of two forms being created. still need to fix the addToChart()
and addMarker()
and addMarker()
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 | <?xml version="1.0"?>
<doc>
<assembly>
<name>OpenNETCF.Configuration</name>
</assembly>
<members>
<member name="T:OpenNETCF.Configuration.AppSettingsReader">
<summary>
Provides a method for reading values of a particular type from the .config file.
</summary>
</member>
<member name="M:OpenNETCF.Configuration.AppSettingsReader.#ctor">
<summary>
</summary>
</member>
<member name="M:OpenNETCF.Configuration.AppSettingsReader.GetValue(System.String,System.Type)">
<summary>
</summary>
<param name="key"></param>
<param name="type"></param>
<returns></returns>
</member>
<member name="T:OpenNETCF.Reflection.Assembly2">
<summary>
Contains helper functions for the <see cref="T:System.Reflection.Assembly"/> class.
</summary>
<seealso cref="T:System.Reflection.Assembly"/>
</member>
<member name="M:OpenNETCF.Reflection.Assembly2.GetEntryAssembly">
<summary>
Gets the process executable.
</summary>
<returns>The <see cref="T:System.Reflection.Assembly"/> that is the process executable.</returns>
</member>
<member name="T:OpenNETCF.Configuration.ConfigurationException">
<summary>
The exception that is thrown when an error occurs in a configuration setting.
</summary>
</member>
<member name="M:OpenNETCF.Configuration.ConfigurationException.#ctor">
<summary>
Initializes a new instance of the System.Configuration.ConfigurationException class.
</summary>
</member>
<member name="M:OpenNETCF.Configuration.ConfigurationException.#ctor(System.String)">
<summary>
Initializes a new instance of the System.Configuration.ConfigurationException class with the specified error message.
</summary>
<param name="message">The message to display to the client when the exception is thrown.</param>
</member>
<member name="M:OpenNETCF.Configuration.ConfigurationException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the System.Configuration.ConfigurationException class with the specified error message and System.Exception.InnerException property.
</summary>
<param name="message">The message to display to the client when the exception is thrown.</param>
<param name="inner">The System.Exception.InnerException , if any, that threw the current exception.</param>
</member>
<member name="M:OpenNETCF.Configuration.ConfigurationException.#ctor(System.String,System.Exception,System.Xml.XmlNode)">
<summary>
Initializes a new instance of the System.Configuration.ConfigurationException class with the specified error message and System.Exception.InnerException and the name of the configuration section node that contains the error.
</summary>
<param name="message">The message to display to the client when the exception is thrown.</param>
<param name="inner">The System.Exception.InnerException , if any, that threw the current exception.</param>
<param name="node">The System.Xml.XmlNode that contains the error.</param>
</member>
<member name="M:OpenNETCF.Configuration.ConfigurationException.#ctor(System.String,System.String,System.Int32)">
<summary>
Initializes a new instance of the System.Configuration.ConfigurationException class with the specified error message, the name of the configuration file that contains the error, and the line number in the file.
</summary>
<param name="message">The message to display to the client when the exception is thrown.</param>
<param name="filename">The name of the configuration file that contains the error.</param>
<param name="line">The number of the line that contains the error.</param>
</member>
<member name="M:OpenNETCF.Configuration.ConfigurationException.#ctor(System.String,System.Exception,System.String,System.Int32)">
<summary>
Initializes a new instance of the System.Configuration.ConfigurationException with the specified error message and System.Exception.InnerException, the name of the file containing the error, and the line number of the error in the file.
</summary>
<param name="message">The message to display to the client when the exception is thrown.</param>
<param name="inner">The System.Exception.InnerException , if any, that threw the current exception.</param>
<param name="filename">The name of the configuration file that contains the error.</param>
<param name="line">The number of the line that contains the error.</param>
</member>
<member name="M:OpenNETCF.Configuration.ConfigurationException.#ctor(System.String,System.Xml.XmlNode)">
<summary>
Initializes a new instance of the System.Configuration.ConfigurationException with the specified error message and the name of the configuration section containing the error.
</summary>
<param name="message">The message to display to the client when the exception is thrown.</param>
<param name="node">The System.Xml.XmlNode that contains the error.</param>
</member>
<member name="M:OpenNETCF.Configuration.ConfigurationException.GetXmlNodeLineNumber(System.Xml.XmlNode)">
<summary>
Returns the line number of the configuration section node that contains the error.
</summary>
<param name="node">The name of the configuration section node that contains the error.</param>
<returns>The line number that contains the error.</returns>
</member>
<member name="M:OpenNETCF.Configuration.ConfigurationException.GetXmlNodeFilename(System.Xml.XmlNode)">
<summary>
Returns the name of the file that contains the configuration section node that contains the error.
</summary>
<param name="node">The name of the configuration section node that contains the error.</param>
<returns>The name of the configuration file.</returns>
</member>
<member name="T:OpenNETCF.Configuration.ConfigurationSettings">
<summary>
Provides access to configuration settings in a specified configuration section. This class cannot be inherited.
</summary>
</member>
<member name="M:OpenNETCF.Configuration.ConfigurationSettings.Reload">
<summary>
Forces the settings provider to re-load the settings from the configuration file.
</summary>
</member>
<member name="M:OpenNETCF.Configuration.ConfigurationSettings.GetConfig(System.String)">
<summary>
Returns configuration settings for a user-defined configuration section.
</summary>
<param name="sectionName">The configuration section to read.</param>
<returns>The configuration settings for sectionName.</returns>
</member>
<member name="M:OpenNETCF.Configuration.ConfigurationSettings.GetConfig(System.String,System.Object)">
<summary>
Returns configuration settings for a user-defined configuration section.
</summary>
<param name="sectionName">The configuration section to read.</param>
<param name="context"></param>
<returns></returns>
</member>
<member name="P:OpenNETCF.Configuration.ConfigurationSettings.AppSettings">
<summary>
Gets configuration settings in the configuration section.
</summary>
</member>
<member name="T:OpenNETCF.Configuration.ConfigXmlDocument">
<summary>
</summary>
</member>
<member name="M:OpenNETCF.Configuration.ConfigXmlDocument.Load(System.String)">
<summary>
</summary>
<param name="filename"></param>
</member>
<member name="M:OpenNETCF.Configuration.ConfigXmlDocument.ReadConfigNode(System.String,System.Xml.XmlTextReader)">
<summary>
</summary>
<param name="filename"></param>
<param name="sourceReader"></param>
<returns></returns>
</member>
<member name="M:OpenNETCF.Configuration.ConfigXmlDocument.LoadSingleElement(System.String,System.Xml.XmlTextReader)">
<summary>
</summary>
<param name="filename"></param>
<param name="sourceReader"></param>
</member>
<member name="M:OpenNETCF.Configuration.ConfigXmlDocument.CreateAttribute(System.String,System.String,System.String)">
<summary>
</summary>
<param name="prefix"></param>
<param name="localName"></param>
<param name="namespaceUri"></param>
<returns></returns>
</member>
<member name="M:OpenNETCF.Configuration.ConfigXmlDocument.CreateElement(System.String,System.String,System.String)">
<summary>
</summary>
<param name="prefix"></param>
<param name="localName"></param>
<param name="namespaceUri"></param>
<returns></returns>
</member>
<member name="M:OpenNETCF.Configuration.ConfigXmlDocument.CreateTextNode(System.String)">
<summary>
</summary>
<param name="text"></param>
<returns></returns>
</member>
<member name="M:OpenNETCF.Configuration.ConfigXmlDocument.CreateCDataSection(System.String)">
<summary>
</summary>
<param name="data"></param>
<returns></returns>
</member>
<member name="M:OpenNETCF.Configuration.ConfigXmlDocument.CreateComment(System.String)">
<summary>
</summary>
<param name="data"></param>
<returns></returns>
</member>
<member name="M:OpenNETCF.Configuration.ConfigXmlDocument.CreateSignificantWhitespace(System.String)">
<summary>
</summary>
<param name="data"></param>
<returns></returns>
</member>
<member name="M:OpenNETCF.Configuration.ConfigXmlDocument.CreateWhitespace(System.String)">
<summary>
</summary>
<param name="data"></param>
<returns></returns>
</member>
<member name="P:OpenNETCF.Configuration.ConfigXmlDocument.Filename">
<summary>
</summary>
</member>
<member name="P:OpenNETCF.Configuration.ConfigXmlDocument.LineNumber">
<summary>
</summary>
</member>
<member name="T:OpenNETCF.Configuration.DefaultConfigurationSystem">
<summary>
Summary description for DefaultConfigurationSystem.
</summary>
</member>
<member name="T:OpenNETCF.Configuration.IConfigurationSystem">
<summary>
</summary>
</member>
<member name="M:OpenNETCF.Configuration.IConfigurationSystem.GetConfig(System.String,System.Object)">
<summary>
Returns the config object for the specified key.
</summary>
<param name="configKey">Section name of config object to retrieve. </param>
<param name="context">Application provided context object that gets passed into the Create method of the IConfigurationSectionHandler</param>
<returns></returns>
</member>
<member name="M:OpenNETCF.Configuration.IConfigurationSystem.Init">
<summary>
Initializes the configuration system.
</summary>
</member>
<member name="T:OpenNETCF.Configuration.DictionarySectionHandler">
<summary>
Reads key-value pair configuration information for a configuration section.
</summary>
<example>
<code>
<add key="name" value="text"> - sets key=text
<remove key="name"> - removes the definition of key
<clear/> - removes all definitions
</code>
</example>
</member>
<member name="T:OpenNETCF.Configuration.IConfigurationSectionHandler">
<summary>
Defines the contract that all configuration section handlers must implement in order to participate in the resolution of configuration settings.
Reads key-value pair configuration information for a configuration section.
</summary>
</member>
<member name="M:OpenNETCF.Configuration.IConfigurationSectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)">
<summary>
Implemented by all configuration section handlers to parse the XML of the configuration section. The
returned object is added to the configuration collection and is accessed by
System.Configuration.ConfigurationSettings.GetConfig(System.String).
</summary>
<param name="parent">The configuration settings in a corresponding parent configuration section.</param>
<param name="configContext">An System.Web.Configuration.HttpConfigurationContext when
System.Configuration.IConfigurationSectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)
is called from the ASP.NET configuration system. Otherwise, this parameter is reserved and is null.</param>
<param name="section">The System.Xml.XmlNode that contains the configuration information from the
configuration file. Provides direct access to the XML contents of the configuration section.</param>
<returns>A configuration object.</returns>
</member>
<member name="M:OpenNETCF.Configuration.DictionarySectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)">
<summary>
</summary>
<param name="parent"></param>
<param name="context"></param>
<param name="section"></param>
<returns></returns>
</member>
<member name="P:OpenNETCF.Configuration.DictionarySectionHandler.KeyAttributeName">
<summary>
Make the name of the key attribute configurable by derived classes.
</summary>
</member>
<member name="P:OpenNETCF.Configuration.DictionarySectionHandler.ValueAttributeName">
<summary>
Make the name of the value attribute configurable by derived classes.
</summary>
</member>
<member name="T:OpenNETCF.Configuration.IgnoreSectionHandler">
<summary>
Provides a section handler definition for configuration sections read and handled by systems other than OpenNETCF.Configuration.
</summary>
</member>
<member name="M:OpenNETCF.Configuration.IgnoreSectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)">
<summary>
</summary>
<param name="parent"></param>
<param name="configContext"></param>
<param name="section"></param>
<returns></returns>
</member>
<member name="T:OpenNETCF.Configuration.machineconfig">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:OpenNETCF.Configuration.machineconfig.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:OpenNETCF.Configuration.machineconfig.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:OpenNETCF.Configuration.machineconfig.machine_config">
<summary>
Looks up a localized string similar to <?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="appSettings" type="OpenNETCF.Configuration.NameValueFileSectionHandler, OpenNETCF.Configuration" allowLocation="false" />
<section name="opennetcf.diagnostics" type="OpenNETCF.Diagnostics.DiagnosticsConfigurationHandler, OpenNETCF"/>
</configSections>
</configuration>.
</summary>
</member>
<member name="T:OpenNETCF.Configuration.NameValueFileSectionHandler">
<summary>
</summary>
</member>
<member name="M:OpenNETCF.Configuration.NameValueFileSectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)">
<summary>
</summary>
<param name="parent"></param>
<param name="configContext"></param>
<param name="section"></param>
<returns></returns>
</member>
<member name="T:OpenNETCF.Configuration.NameValueSectionHandler">
<summary>
Provides name-value pair configuration information from a configuration section.
</summary>
</member>
<member name="M:OpenNETCF.Configuration.NameValueSectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)">
<summary>
</summary>
<param name="parent"></param>
<param name="context"></param>
<param name="section"></param>
<returns></returns>
</member>
<member name="P:OpenNETCF.Configuration.NameValueSectionHandler.KeyAttributeName">
<summary>
</summary>
</member>
<member name="P:OpenNETCF.Configuration.NameValueSectionHandler.ValueAttributeName">
<summary>
</summary>
</member>
<member name="T:OpenNETCF.Configuration.SingleTagSectionHandler">
<summary>
</summary>
</member>
<member name="M:OpenNETCF.Configuration.SingleTagSectionHandler.Create(System.Object,System.Object,System.Xml.XmlNode)">
<summary>
Returns a collection of configuration section values.
</summary>
<param name="parent">The configuration settings in a corresponding parent configuration section.</param>
<param name="context">This parameter is reserved and is null.</param>
<param name="section">An <see cref="T:System.Xml.XmlNode"/> that contains configuration information from the configuration file.
Provides direct access to the XML contents of the configuration section.</param>
<returns>A <see cref="T:System.Collections.Hashtable"/> containing configuration section directives.</returns>
</member>
</members>
</doc>
|