Regression - BaseEncodeType.Code39Extended is no longer supported

The supported symbologies in the documentation include Code39Standard, but it has stopped working in Aspose.BarCode versions 24.8.0 and 24.9.0 for .NET.

var encodeType = “Code39Extended”;
// The following returns null
var symbology2 = BaseEncodeType.Parse(encodeType);

BaseEncodeType symbology;
// The following returns false
if (BaseEncodeType.TryParse(encodeType, out symbology))
{}

The code above works fine with Aspose.BarCode version 24.5.0.

@ClickIT,

Please note, we replaced Code39Standard to Code39 as it is defined in ISO/IEC 16388. We also replaced Code39Extended to Code39FullASCII because ISO/IEC 16388 defines the code variant as full ASCII support over Code39. These changes are already announced in Public API Changes section on the release notes.

Thanks Amjad.

@ClickIT,

You’re welcome. Please don’t hesitate to reach out if you have any additional questions or feedback.