SingleDecodeType Class

Single decode type. See decode type to get instance.
Inheritance Hierarchy

Namespace:  Aspose.BarCode.BarCodeRecognition
Assembly:  Aspose.BarCode (in Aspose.BarCode.dll) Version: 20.11.0
Syntax
public sealed class SingleDecodeType : BaseDecodeType, 
	IEquatable<SingleDecodeType>

The SingleDecodeType type exposes the following members.

Properties
  NameDescription
Public propertyTypeIndex
Gets an index of decode type
Public propertyTypeName
Gets a name of decode type
Methods
  NameDescription
Public methodContainsAny
Returns a value indicating whether this instance is included into the list specified.
(Overrides BaseDecodeTypeContainsAny(BaseDecodeType).)
Public methodEquals(Object)
Returns a value indicating whether this instance is equal to a specified SingleDecodeType value.
(Overrides BaseDecodeTypeEquals(Object).)
Public methodEquals(BaseDecodeType)
Returns a value indicating whether this instance is equal to a specified BaseDecodeType value.
(Inherited from BaseDecodeType.)
Public methodEquals(MultyDecodeType)
Returns a value indicating whether this instance is equal to a specified MultyDecodeType value.
(Inherited from BaseDecodeType.)
Public methodEquals(SingleDecodeType)
Returns a value indicating whether this instance is equal to a specified SingleDecodeType value.
(Overrides BaseDecodeTypeEquals(SingleDecodeType).)
Public methodGetHashCode
Returns the hash code for this instance.
(Overrides BaseDecodeTypeGetHashCode.)
Public methodGetString
Converts the instance of SingleDecodeType to its equivalent string representation. The string format is: "Index:-1; Name:None".
Public methodStatic memberGetString(SingleDecodeType)
Converts the instance of SingleDecodeType to its equivalent string representation. The string format is: "Index:-1; Name:None".
Public methodGetType (Inherited from Object.)
Public methodStatic memberParse
Converts the string representation of the name of a SingleDecodeType to its instance.
Public methodToString
Returns the name of the given SingleDecodeType as a string.
(Overrides ObjectToString.)
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