diff --git a/References/CompactFramework/OpenNETCF.Configuration.xml b/References/CompactFramework/OpenNETCF.Configuration.xml new file mode 100644 --- /dev/null +++ b/References/CompactFramework/OpenNETCF.Configuration.xml @@ -0,0 +1,394 @@ + + + + OpenNETCF.Configuration + + + + + Provides a method for reading values of a particular type from the .config file. + + + + + + + + + + + + + + + + + + Contains helper functions for the class. + + + + + + Gets the process executable. + + The that is the process executable. + + + + The exception that is thrown when an error occurs in a configuration setting. + + + + + Initializes a new instance of the System.Configuration.ConfigurationException class. + + + + + Initializes a new instance of the System.Configuration.ConfigurationException class with the specified error message. + + The message to display to the client when the exception is thrown. + + + + Initializes a new instance of the System.Configuration.ConfigurationException class with the specified error message and System.Exception.InnerException property. + + The message to display to the client when the exception is thrown. + The System.Exception.InnerException , if any, that threw the current exception. + + + + 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. + + The message to display to the client when the exception is thrown. + The System.Exception.InnerException , if any, that threw the current exception. + The System.Xml.XmlNode that contains the error. + + + + 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. + + The message to display to the client when the exception is thrown. + The name of the configuration file that contains the error. + The number of the line that contains the error. + + + + 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. + + The message to display to the client when the exception is thrown. + The System.Exception.InnerException , if any, that threw the current exception. + The name of the configuration file that contains the error. + The number of the line that contains the error. + + + + Initializes a new instance of the System.Configuration.ConfigurationException with the specified error message and the name of the configuration section containing the error. + + The message to display to the client when the exception is thrown. + The System.Xml.XmlNode that contains the error. + + + + Returns the line number of the configuration section node that contains the error. + + The name of the configuration section node that contains the error. + The line number that contains the error. + + + + Returns the name of the file that contains the configuration section node that contains the error. + + The name of the configuration section node that contains the error. + The name of the configuration file. + + + + Provides access to configuration settings in a specified configuration section. This class cannot be inherited. + + + + + Forces the settings provider to re-load the settings from the configuration file. + + + + + Returns configuration settings for a user-defined configuration section. + + The configuration section to read. + The configuration settings for sectionName. + + + + Returns configuration settings for a user-defined configuration section. + + The configuration section to read. + + + + + + Gets configuration settings in the configuration section. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Summary description for DefaultConfigurationSystem. + + + + + + + + + + Returns the config object for the specified key. + + Section name of config object to retrieve. + Application provided context object that gets passed into the Create method of the IConfigurationSectionHandler + + + + + Initializes the configuration system. + + + + + Reads key-value pair configuration information for a configuration section. + + + + <add key="name" value="text"> - sets key=text + <remove key="name"> - removes the definition of key + <clear/> - removes all definitions + + + + + + 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. + + + + + 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). + + The configuration settings in a corresponding parent configuration section. + 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. + The System.Xml.XmlNode that contains the configuration information from the + configuration file. Provides direct access to the XML contents of the configuration section. + A configuration object. + + + + + + + + + + + + + Make the name of the key attribute configurable by derived classes. + + + + + Make the name of the value attribute configurable by derived classes. + + + + + Provides a section handler definition for configuration sections read and handled by systems other than OpenNETCF.Configuration. + + + + + + + + + + + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + 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>. + + + + + + + + + + + + + + + + + + + Provides name-value pair configuration information from a configuration section. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Returns a collection of configuration section values. + + The configuration settings in a corresponding parent configuration section. + This parameter is reserved and is null. + An that contains configuration information from the configuration file. + Provides direct access to the XML contents of the configuration section. + A containing configuration section directives. + + +