📄 opennetcf.xml
字号:
</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="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,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="offset">The offset into the source data at which to start the CRC</param>
<param name="length">The number of bytes in the source data to analyze</param>
<param name="crcBitLength">Length, in bits, of the polynomial to use</param>
<param name="polynomial">Standard polynomial to use for the CRC</param>
<param name="seedCRC">CRC seed value</param>
<returns>The CRC</returns>
<returns></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.Byte[],System.Int32,System.Int32,OpenNETCF.CRCPolynomial,System.UInt64)">
<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="offset">The offset into the source data at which to start the CRC</param>
<param name="length">The number of bytes in the source data to analyze</param>
<param name="crcBitLength">Length, in bits, of the polynomial to use</param>
<param name="polynomial">Standard polynomial to use for the CRC</param>
<param name="seedCRC">CRC seed value</param>
<returns>The CRC</returns>
<returns></returns>
</member>
<member name="M:OpenNETCF.CRC.GenerateChecksum(System.Byte[],System.Int32,System.Int32,System.Int32,System.UInt64,System.UInt64)">
<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="offset">The offset into the source data at which to start the CRC</param>
<param name="length">The number of bytes in the source data to analyze</param>
<param name="crcBitLength">Length, in bits, of the polynomial to use</param>
<param name="polynomial">Custom polynomial to use for the CRC</param>
<param name="seedCRC">CRC seed value</param>
<returns>The CRC</returns>
<returns></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.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -