?? opennetcf.configuration.xml
字號:
<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>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -