📄 opennetcf.xml
字号:
<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="P:OpenNETCF.ComponentModel.BackgroundWorker.IsBusy">
<summary>
Gets a value indicating whether the System.ComponentModel.BackgroundWorker is running an asynchronous operation.
Returns:
true, if the System.ComponentModel.BackgroundWorker is running an
asynchronous operation; otherwise, false.
</summary>
</member>
<member name="T:OpenNETCF.ComponentModel.DoWorkEventHandler">
<summary>
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="T:OpenNETCF.ComponentModel.ProgressChangedEventHandler">
<summary>
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="T:OpenNETCF.ComponentModel.RunWorkerCompletedEventHandler">
<summary>
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="T:OpenNETCF.ComponentModel.DoWorkEventArgs">
<summary>
</summary>
</member>
<member name="M:OpenNETCF.ComponentModel.DoWorkEventArgs.#ctor(System.Object)">
<summary>
</summary>
<param name="aArgument"></param>
</member>
<member name="P:OpenNETCF.ComponentModel.DoWorkEventArgs.Argument">
<summary>
</summary>
</member>
<member name="P:OpenNETCF.ComponentModel.DoWorkEventArgs.Result">
<summary>
</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 <see cref="T:OpenNETCF.ComponentModel.InvalidEnumArgumentException"/> class without a message.
</summary>
</member>
<member name="M:OpenNETCF.ComponentModel.InvalidEnumArgumentException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenNETCF.ComponentModel.InvalidEnumArgumentException"/> class with the specified message.
</summary>
<param name="message">The message to display with this exception.</param>
</member>
<member name="M:OpenNETCF.ComponentModel.InvalidEnumArgumentException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:OpenNETCF.ComponentModel.InvalidEnumArgumentException"/> class with the specified detailed description and the specified exception.
</summary>
<param name="message">A detailed description of the error.</param>
<param name="innerException">A reference to the inner exception that is the cause of this exception.</param>
</member>
<member name="M:OpenNETCF.ComponentModel.InvalidEnumArgumentException.#ctor(System.String,System.Int32,System.Type)">
<summary>
Initializes a new instance of the <see cref="T:OpenNETCF.ComponentModel.InvalidEnumArgumentException"/> class with a message generated from the argument, the invalid value, and an enumeration class.
</summary>
<param name="argumentName">The name of the argument that caused the exception.</param>
<param name="invalidValue">The value of the argument that failed.</param>
<param name="enumClass">A <see cref="T:System.Type"/> that represents the enumeration class with the valid values.</param>
</member>
<member name="T:OpenNETCF.ComponentModel.ProgressChangedEventArgs">
<summary>
</summary>
</member>
<member name="M:OpenNETCF.ComponentModel.ProgressChangedEventArgs.#ctor(System.Int32,System.Object)">
<summary>
</summary>
<param name="aProgressPercent"></param>
<param name="aUserState"></param>
</member>
<member name="P:OpenNETCF.ComponentModel.ProgressChangedEventArgs.ProgressPercentage">
<summary>
</summary>
</member>
<member name="P:OpenNETCF.ComponentModel.ProgressChangedEventArgs.UserState">
<summary>
</summary>
</member>
<member name="T:OpenNETCF.ComponentModel.RunWorkerCompletedEventArgs">
<summary>
</summary>
</member>
<member name="M:OpenNETCF.ComponentModel.RunWorkerCompletedEventArgs.#ctor(System.Object,System.Exception,System.Boolean)">
<summary>
</summary>
<param name="aResult"></param>
<param name="aError"></param>
<param name="aCancelled"></param>
</member>
<member name="P:OpenNETCF.ComponentModel.RunWorkerCompletedEventArgs.Result">
<summary>
</summary>
</member>
<member name="P:OpenNETCF.ComponentModel.RunWorkerCompletedEventArgs.Cancelled">
<summary>
</summary>
</member>
<member name="P:OpenNETCF.ComponentModel.RunWorkerCompletedEventArgs.Error">
<summary>
</summary>
</member>
<member name="T:OpenNETCF.CRC">
<summary>
Class used for generating Cyclic Redundancy Check (CRC) Hashes
</summary>
</member>
<member name="M:OpenNETCF.CRC.GenerateChecksum(System.Byte[])">
<summary>
Generates a CCITT32 CRC of the data
</summary>
<param name="data">Data to generate a CRC for</param>
<returns>The CRC</returns>
</member>
<member name="M:OpenNETCF.CRC.GenerateChecksum(System.Byte[],System.Int32)">
<summary>
Generates a CRC using a common polynomial for the next closest bitlength above that specified.
For example, a bit length of 13 through 16 will use the CCITT16 polynomial masking off bits necessary to maintain the specified bitlength.
</summary>
<param name="data">Data to generate a CRC for</param>
<param name="crcBitLength">Length, in bits, of the polynomial to use</param>
<returns>The CRC</returns>
</member>
<member name="M:OpenNETCF.CRC.GenerateChecksum(System.IO.Stream,System.Int32,System.UInt64)">
<summary>
Generates a CRC for the data in an open data stream
</summary>
<param name="stream">Stream to use as a source for the data</param>
<param name="crcBitLength"></param>
<param name="polynomial">Custom Polynomial or <c>CRCPolynomial</c> to use in the CRC</param>
<returns>The data's CRC</returns>
</member>
<member name="T:OpenNETCF.Diagnostics.DebugMessage">
<summary>
Use the static methods of this class to output data to a device's debug port. Messages will be sent only in Debug builds, allowing developers to easily compile out messaging.
</summary>
<remarks>
This is the equivalent of the unmanaged DEBUGMSG macro and applies only to generic CE devices.
Most commercial Pocket PC and SmartPhone devices do not expose a debug port.
</remarks>
</member>
<member name="M:OpenNETCF.Diagnostics.DebugMessage.Write(System.Boolean,System.String)">
<summary>
If <i>condition</i> evaluates to <b>true</b> and the current assembly is a Debug build, <i>message</i> will be output on the device's debug port.
</summary>
<param name="condition">When <b>true</b> output will be sent to the debug port</param>
<param name="message">Text to output</param>
</member>
<member name="M:OpenNETCF.Diagnostics.DebugMessage.Write(System.Boolean,System.Object)">
<summary>
If <i>condition</i> evaluates to <b>true</b> and the current assembly is a Debug build, the result from <i>obj.ToString</i> will be output on the device's debug port.
</summary>
<param name="condition">When <b>true</b> output will be sent to the debug port</param>
<param name="obj">Object to call ToString() on</param>
</member>
<member name="M:OpenNETCF.Diagnostics.DebugMessage.WriteLine(System.Boolean,System.String)">
<summary>
If <i>condition</i> evaluates to <b>true</b> and the current assembly is a Debug build, <i>message</i> will be output on the device's debug port followed by a carriage return and new line.
Lines output with <i>WriteLine</i> are also affected by calls to <c>Indent</c> or <c>Unindent</c>.
</summary>
<param name="condition">When <b>true</b> output will be sent to the debug port</param>
<param name="message">Text to output</param>
</member>
<member name="M:OpenNETCF.Diagnostics.DebugMessage.Indent">
<summary>
Increases the indent level used by <c>WriteLine</c> by two spaces
</summary>
</member>
<member name="M:OpenNETCF.Diagnostics.DebugMessage.Unindent">
<summary>
Decreases the indent level used by <c>WriteLine</c> by two spaces
</summary>
</member>
<member name="T:OpenNETCF.Diagnostics.DiagnosticsConfigurationHandler">
<summary>
Summary description for DiagnosticsConfigurationHandler.
</summary>
</member>
<member name="M:OpenNETCF.Diagnostics.DiagnosticsConfigurationHandler.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.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>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -