📄 opennetcf.xml
字号:
<?xml version="1.0"?>
<doc>
<assembly>
<name>OpenNETCF</name>
</assembly>
<members>
<member name="T:OpenNETCF.ComponentModel.BackgroundWorker">
<summary>
Executes an operation on a separate thread.
<para><b>New in v1.3</b></para>
</summary>
</member>
<member name="M:OpenNETCF.ComponentModel.BackgroundWorker.#ctor">
<summary>
Initializes a new instance of the BackgroundWorker class.
</summary>
</member>
<member name="M:OpenNETCF.ComponentModel.BackgroundWorker.#ctor(System.Windows.Forms.Control)">
<summary>
Initializes a new instance of the BackgroundWorker class.
Call from the desktop code as the other ctor is not good enough
Call it passing in a created control e.g. the Form
</summary>
</member>
<member name="M:OpenNETCF.ComponentModel.BackgroundWorker.ReportProgress(System.Int32)">
<summary>
Raises the BackgroundWorker.ProgressChanged event.
</summary>
<param name="aProgressPercent">The percentage, from 0 to 100, of the background operation that is complete. </param>
</member>
<member name="M:OpenNETCF.ComponentModel.BackgroundWorker.ReportProgress(System.Int32,System.Object)">
<summary>
Raises the BackgroundWorker.ProgressChanged event.
</summary>
<param name="aProgressPercent">The percentage, from 0 to 100, of the background operation that is complete. </param>
<param name="aUserState">The state object passed to BackgroundWorker.RunWorkerAsync(System.Object).</param>
</member>
<member name="M:OpenNETCF.ComponentModel.BackgroundWorker.RunWorkerAsync">
<summary>
Starts execution of a background operation.
</summary>
</member>
<member name="M:OpenNETCF.ComponentModel.BackgroundWorker.RunWorkerAsync(System.Object)">
<summary>
Starts execution of a background operation.
</summary>
<param name="aArgument"> A parameter for use by the background operation to be executed in the BackgroundWorker.DoWork event handler.</param>
</member>
<member name="M:OpenNETCF.ComponentModel.BackgroundWorker.CancelAsync">
<summary>
Requests cancellation of a pending background operation.
</summary>
</member>
<member name="E:OpenNETCF.ComponentModel.BackgroundWorker.DoWork">
<summary>
Occurs when <see cref="M:OpenNETCF.ComponentModel.BackgroundWorker.RunWorkerAsync"/> is called.
</summary>
</member>
<member name="E:OpenNETCF.ComponentModel.BackgroundWorker.ProgressChanged">
<summary>
Occurs when <see cref="M:OpenNETCF.ComponentModel.BackgroundWorker.ReportProgress(System.Int32)"/> is called.
</summary>
</member>
<member name="E:OpenNETCF.ComponentModel.BackgroundWorker.RunWorkerCompleted">
<summary>
Occurs when the background operation has completed, has been cancelled, or has raised an exception.
</summary>
</member>
<member name="P:OpenNETCF.ComponentModel.BackgroundWorker.CancellationPending">
<summary>
Gets a value indicating whether the application has requested cancellation of a background operation.
</summary>
</member>
<member name="P:OpenNETCF.ComponentModel.BackgroundWorker.WorkerReportsProgress">
<summary>
Gets or sets a value indicating whether the BackgroundWorker object can report progress updates.
</summary>
</member>
<member name="P:OpenNETCF.ComponentModel.BackgroundWorker.WorkerSupportsCancellation">
<summary>
Gets or sets a value indicating whether the BackgroundWorker object supports asynchronous cancellation.
</summary>
</member>
<member name="T:OpenNETCF.ComponentModel.InvalidEnumArgumentException">
<summary>
The exception thrown when using invalid arguments that are enumerators.
</summary>
</member>
<member name="M:OpenNETCF.ComponentModel.InvalidEnumArgumentException.#ctor">
<summary>
Initializes a new instance of the InvalidEnumArgumentException class without a message.
</summary>
</member>
<member name="M:OpenNETCF.ComponentModel.InvalidEnumArgumentException.#ctor(System.String)">
<summary>
Initializes a new instance of the InvalidEnumArgumentException class with the specified message.
</summary>
<param name="message">The message to display with this exception.</param>
</member>
<member name="T:OpenNETCF.Configuration.AppSettingsReader">
<summary>
Provides a method for reading values of a particular type from the .config file.
<para><b>New in v1.1</b></para>
</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.Configuration.ConfigurationException">
<summary>
The exception that is thrown when an error occurs in a configuration setting.
<para><b>New in v1.1</b></para>
</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.
<para><b>New in v1.1</b></para>
</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="P:OpenNETCF.Configuration.ConfigurationSettings.AppSettings">
<summary>
Gets configuration settings in the configuration section.
</summary>
</member>
<member name="T:OpenNETCF.Configuration.ConfigXmlDocument">
<summary>
<para><b>New in v1.1</b></para>
</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>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -