📄 opennetcf.xml
字号:
</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>
<para><b>New in v1.1</b></para>
</summary>
</member>
<member name="M:OpenNETCF.Configuration.IConfigurationSystem.GetConfig(System.String)">
<summary>
Returns the config object for the specified key.
</summary>
<param name="configKey">Section name of config object to retrieve. </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.
<para><b>New in v1.1</b></para>
</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.
<para><b>New in v1.1</b></para>
</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.NameValueFileSectionHandler">
<summary>
<para><b>New in v1.1</b></para>
</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.
<para><b>New in v1.1</b></para>
</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>
<para><b>New in v1.1</b></para>
</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>
<member name="T:OpenNETCF.Diagnostics.EntryWrittenEventArgs">
<summary>
Event arguments for the last entry written to the log EntryWrittenEventArgs.
</summary>
</member>
<member name="F:OpenNETCF.Diagnostics.EntryWrittenEventArgs.eventLogEntry">
<summary>
The entry that was just written to the log
</summary>
</member>
<member name="M:OpenNETCF.Diagnostics.EntryWrittenEventArgs.#ctor(OpenNETCF.Diagnostics.EventLogEntry)">
<summary>
Default constructor
</summary>
</member>
<member name="P:OpenNETCF.Diagnostics.EntryWrittenEventArgs.EventLogEntry">
<summary>
The event log entry that was written to the log
</summary>
</member>
<member name="T:OpenNETCF.Diagnostics.EventLog">
<summary>
Class is similar to the System.Diagnostics.EventLog in the full framework with a few differences.
1. Since CE.Net and PPC have no event log we write the log to the application root directory as an XML file
2. Every Application will have it's own log. There will not be one log system/device wide
3. Attempted to keep as close as possible to the full framework class but some things are missing
</summary>
</member>
<member name="M:OpenNETCF.Diagnostics.EventLog.#ctor(System.String,System.String,OpenNETCF.Diagnostics.IEventLogWriter)">
<summary>
Overloaded constructor were a custom IEventLogWriter can be specified
</summary>
<param name="log">Indicates the log item</param>
<param name="source">Indicates what logged the event</param>
<param name="customEventLogWriter">Custom event log writter which implements IEventLogWriter</param>
</member>
<member name="M:OpenNETCF.Diagnostics.EventLog.#ctor(System.String,System.String,OpenNETCF.Diagnostics.EventLogWriterType)">
<summary>
Default constructor.
</summary>
<param name="log">Indicates the log item</param>
<param name="source">Indicates what logged the event</param>
<param name="type"></param>
</member>
<member name="M:OpenNETCF.Diagnostics.EventLog.#ctor(System.String,System.String,System.String,System.String,OpenNETCF.Diagnostics.EventLogWriterType)">
<summary>
Overloaded constructor
</summary>
<param name="log">Indicates the log item</param>
<param name="source">Indicates what logged the event</param>
<param name="path"></param>
<param name="fileName"></param>
<param name="type"></param>
</member>
<member name="M:OpenNETCF.Diagnostics.EventLog.Delete(System.String)">
<summary>
Removes an event log from the local file.
</summary>
<param name="logName">The name of the log to delete.</param>
</member>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -