📄 symbol.xml
字号:
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_GLOBAL">
<summary>
Global parameter error.
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_PARAMETER">
<summary>
An error occurred due to invalid parameter.
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_NOTOPEN">
<summary>
The MSR API is not opened (call MSR_Open).
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_STILLOPEN">
<summary>
The MSR API is already opened.
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_MEMORY">
<summary>
An error occurred while allocating memory.
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_SIZE">
<summary>
Card information read is greater than 400 bytes.
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_NAK">
<summary>
Unable to access the MSR device. Usually occurs when the device is not connected to the Serial I/O port.
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_BAD_ANS">
<summary>
Erroneous response from the MSR device.
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_TIMEOUT">
<summary>
Timeout occurred while waiting for response from MSR device.
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_ROM">
<summary>
MSR device ROM error.
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_RAM">
<summary>
MSR device RAM error.
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_EEPROM">
<summary>
MSR device EEPROM error.
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_RES">
<summary>
Reserved error value.
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_CHECKSUM">
<summary>
Check sum error.
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_BADREAD">
<summary>
Read failed.
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_NODATA">
<summary>
Read succeeded, no data.
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_NULLPOINTER">
<summary>
A NULL parameter pointer passed as a parameter.
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_BUSY">
<summary>
MSR device is still busy in previous function state.
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_WAKEUP">
<summary>
MSR device failed to wake up.
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_BUFFERED_MODE">
<summary>
Application trying to read buffered mode data while the MSR device is still in unbuffered mode.
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_UNBUFFERED_MODE">
<summary>
Application trying to read unbuffered mode data while the MSR device is still in buffered mode.
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_PORTEVENT">
<summary>
A failure in Serial I/O Function.
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_OPENFAILURE">
<summary>
Failure to open the MSR device.
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_BATTERYLOW">
<summary>
An asynchronous close due to low battery voltage.
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_POWERDOWN">
<summary>
Power is switched off to MSR device during the execution of the driver function call.
</summary>
</member>
<member name="F:Symbol.Results.MSR_ERR_OSERROR">
<summary>
If the driver function returns error due to Operating System
</summary>
</member>
<member name="T:Symbol.Options">
<summary>
Options class provides the capability of setting parameters that effect that
way in which the EMDK for .NET class libraries work.
</summary>
<remarks>
The Options class can be used to select how the class libraries should handle
errors that are not necessarilly fatal, but may be useful to customer during
development.
</remarks>
</member>
<member name="P:Symbol.Options.DebugMode">
<summary>
Turn on/off debug mode exceptions.
</summary>
<value>
A boolean flag that when set to true enables exceptions to be thrown in
situations that are not fatal but may lead flag issues that should be
addressed prior to an application's release.
</value>
</member>
<member name="T:Symbol.Stopwatch">
<summary>
A helper class that provides a way in which applications can determine how long
tasks are taking.
</summary>
<remarks>
This class is not as accurate as a Performance Counter. It should be used for
rough estimations only.
</remarks>
</member>
<member name="M:Symbol.Stopwatch.start">
<summary>
Start stopwatch.
</summary>
</member>
<member name="M:Symbol.Stopwatch.stop">
<summary>
Stop stopwatch
</summary>
<returns>A TimeSpan object with time elapsed information.</returns>
</member>
<member name="T:Symbol.Exceptions.UnimplementedFunctionException">
<summary>
UnimplementedFunctionException is thrown when a method is
not available for use.
</summary>
<remarks>
Derived off of the System.Exception class, this exception provides
no additional functionality over its derived class.
</remarks>
</member>
<member name="M:Symbol.Exceptions.UnimplementedFunctionException.#ctor(System.String)">
<summary>
UnimplementedFunctionException constructor with settable
string.
</summary>
<param name="sMessage">A string the contain information about
the exception.</param>
</member>
<member name="T:Symbol.Exceptions.WrongMarshalSizeException">
<summary>
WrongMarshalSizeException is thrown when marshalling fails to work
correctly. In particular, when a size of the marshaled buffer is not the
correct size.
</summary>
<remarks>
Derived off of the System.Exception class, this exception provides
no additional functionality over its derived class.
</remarks>
</member>
<member name="M:Symbol.Exceptions.WrongMarshalSizeException.#ctor(System.String)">
<summary>
WrongMarshalSizeException constructor with settable
string.
</summary>
<param name="sMessage">A string the contain information about
the exception.</param>
</member>
<member name="T:Symbol.Exceptions.OperationFailureException">
<summary>
OperationFailureException is thrown when a failure occurs in the
class libraries. This failure usually is one that stops the proper
functioning of the class libraries.
</summary>
<remarks>
Derived off of the System.Exception class, this exception provides
a results enum or integer to be associated with the exception. The
number is returned in integer form via the Result property.
</remarks>
</member>
<member name="M:Symbol.Exceptions.OperationFailureException.#ctor(System.String,Symbol.Results)">
<summary>
OperationFailureException constructor with settable string and
results enum.
</summary>
<param name="sMessage">A string the contains information about
the exception.</param>
<param name="resResults">A Results enumerated type that contains
information about the exception.</param>
</member>
<member name="M:Symbol.Exceptions.OperationFailureException.#ctor(System.String,System.Int32)">
<summary>
OperationFailureException constructor with settable string and
integer value.
</summary>
<param name="sMessage">A string the contains information about
the exception.</param>
<param name="nResults">A integer that contains information about
the exception.</param>
</member>
<member name="P:Symbol.Exceptions.OperationFailureException.Result">
<summary>
The number associated with the exception.
</summary>
<value>
An integer result that contains information about what caused the
exception.
</value>
</member>
<member name="T:Symbol.Exceptions.InvalidUsageException">
<summary>
InvalidUsageException is thrown when a class library method or property
is not used correctly.
</summary>
<remarks>
Derived off of the System.Exception class, this exception provides
no additional functionality over its derived class.
</remarks>
</member>
<member name="M:Symbol.Exceptions.InvalidUsageException.#ctor">
<summary>
Default InvalidUsageException constructor.
</summary>
</member>
<member name="M:Symbol.Exceptions.InvalidUsageException.#ctor(System.String)">
<summary>
InvalidUsageException constructor with settable string.
</summary>
<param name="sMessage">A string that contains information about
the exception.</param>
</member>
<member name="T:Symbol.Exceptions.InvalidDataTypeException">
<summary>
InvalidDataTypeException is thrown when a class library accesses an
invalid data type.
</summary>
<remarks>
Derived off of the <see cref="T:Symbol.Exceptions.InvalidUsageException"/> class,
this exception provides no additional functionality over its
derived class.
</remarks>
</member>
<member name="M:Symbol.Exceptions.InvalidDataTypeException.#ctor">
<summary>
Default InvalidDataTypeException constructor.
</summary>
</member>
<member name="M:Symbol.Exceptions.InvalidDataTypeException.#ctor(System.String)">
<summary>
InvalidDataTypeException constructor with settable string.
</summary>
<param name="sMessage">A string that contains information about
the exception.</param>
</member>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -