DecodeType.TryParse

TryParse(string, out SingleDecodeType)

Converts the string representation of a SingleDecodeType to its instance. A return value indicates whether the conversion succeeded or failed.

public static bool TryParse(string parsingType, out SingleDecodeType result)
ParameterTypeDescription
parsingTypeStringA string containing a SingleDecodeType in the format as “EAN8” or “EAN13” or “CodaBar”… to convert.
resultSingleDecodeType&An actual SingleDecodeType returns, when conversion has completed successfully; otherwise it returns indefinite type: DecodeType.None.

Return Value

true if parsingType was converted successfully; otherwise, false.

See Also


TryParse(string, out MultiDecodeType)

Converts the string representation of a MultiDecodeType to its instance. A return value indicates whether the conversion succeeded or failed.

public static bool TryParse(string parsingType, out MultiDecodeType result)
ParameterTypeDescription
parsingTypeStringA string in the format as either “AllSupportedTypes” or “EAN8,EAN13,CodaBar” to convert.
resultMultiDecodeType&An actual MultiDecodeType is returned, when conversion has completed successfully; otherwise it returns indefinite type: new MultiDecodeType(DecodeType.None)

Return Value

true if parsingType was converted successfully; otherwise, false.

See Also