Aspose::BarCode::BarCodeRecognition::BaseDecodeType class

BaseDecodeType class

Base class for MultyDecodeType and SingleDecodeType.

class BaseDecodeType : public virtual System::IEquatable<System::SharedPtr<Aspose::BarCode::BarCodeRecognition::BaseDecodeType>>

Methods

MethodDescription
virtual ContainsAny(const System::ArrayPtr<System::SharedPtr<BaseDecodeType>>&)Determines whether any of the given decode types is included into.
virtual Equals(System::SharedPtr<SingleDecodeType>)Returns a value indicating whether this instance is equal to a specified SingleDecodeType value.
virtual Equals(System::SharedPtr<MultyDecodeType>)Returns a value indicating whether this instance is equal to a specified MultyDecodeType value.
Equals(System::SharedPtr<BaseDecodeType>) overrideReturns a value indicating whether this instance is equal to a specified BaseDecodeType value.
GetHashCode() const overrideReturns the hash code for this instance.
static TryParse(System::String, System::SharedPtr<SingleDecodeType>&)Converts the string representation of a SingleDecodeType to its instance. A return value indicates whether the conversion succeeded or failed.
static TryParse(System::String, System::SharedPtr<MultyDecodeType>&)Converts the string representation of a MultyDecodeType to its instance. A return value indicates whether the conversion succeeded or failed.
static TryParse(System::String, System::SharedPtr<BaseDecodeType>&)Converts the string representation of a BaseDecodeType to its instance, having determined the concrete type. A return value indicates whether the conversion succeeded or failed.

Remarks

This sample shows how to use BaseDecodeType with SingleDecodeType and MultyDecodeType

[C#]
BaseDecodeType decodeOne = DecodeType.Code128;
BaseDecodeType decodeTwo = new MultyDecodeType(DecodeType.Code128, DecodeType.Code39Standard, DecodeType.Code39Extended);
[VB.NET]
Dim decodeOne As BaseDecodeType = DecodeType.Code128
Dim decodeTwo As BaseDecodeType = New MultyDecodeType(DecodeType.Code128, DecodeType.Code39Standard, DecodeType.Code39Extended)

See Also