Class SingleDecodeType

SingleDecodeType class

Single decode type. See decode type to get instance.

public sealed class SingleDecodeType : BaseDecodeType, IEquatable<SingleDecodeType>

Properties

NameDescription
TypeIndex { get; }Gets an index of decode type
TypeName { get; }Gets a name of decode type

Methods

NameDescription
static Parse(string)Converts the string representation of the name of a SingleDecodeType to its instance.
override ContainsAny(params BaseDecodeType[])Returns a value indicating whether this instance is included into the list specified.
Equals(BaseDecodeType)Returns a value indicating whether this instance is equal to a specified BaseDecodeType value.
virtual Equals(MultyDecodeType)Returns a value indicating whether this instance is equal to a specified MultyDecodeType value.
override Equals(object)Returns a value indicating whether this instance is equal to a specified SingleDecodeType value.
override Equals(SingleDecodeType)Returns a value indicating whether this instance is equal to a specified SingleDecodeType value.
override GetHashCode()Returns the hash code for this instance.
GetString()Converts the instance of SingleDecodeType to its equivalent string representation. The string format is: “Index:-1; Name:None”.
override ToString()Returns the name of the given SingleDecodeType as a string.
static GetString(SingleDecodeType)Converts the instance of SingleDecodeType to its equivalent string representation. The string format is: “Index:-1; Name:None”.

Examples

This sample shows how to get instance of single decode type.

[C#]
SingleDecodeType singleType = DecodeType.QR 
 
[VB.NET]
Dim singleType As SingleDecodeType 
singleType = DecodeType.QR

See Also