VintaSoft Barcode .NET SDK 15.2: Documentation for .NET developer
Vintasoft.Barcode Namespace / ReaderSettings Class / SerialRecognition Property
Syntax Remarks Requirements SeeAlso
In This Topic
    SerialRecognition Property (ReaderSettings)
    In This Topic
    Gets or sets a value indicating whether the barcode reader must use the previous recognition results for increasing performance of current barcode recognition process.
    Syntax
    'Declaration
    
    <DefaultValueAttribute(True)>
    <DescriptionAttribute("A value indicating whether the barcode reader must use the previous recognition results for increasing performance of current barcode recognition process.")>
    Public Property SerialRecognition As Boolean
    
    
    [DefaultValue(True)]
    [Description("A value indicating whether the barcode reader must use the previous recognition results for increasing performance of current barcode recognition process.")]
    public bool SerialRecognition { get; set; }
    
    
    [DefaultValue(True)]
    [Description("A value indicating whether the barcode reader must use the previous recognition results for increasing performance of current barcode recognition process.")]
    public: __property bool get_SerialRecognition();
    public: __property void set_SerialRecognition(
    bool value
    );
    [DefaultValue(True)]
    [Description("A value indicating whether the barcode reader must use the previous recognition results for increasing performance of current barcode recognition process.")]
    public:
    property bool SerialRecognition { bool get(); void set(bool value); }

    Property Value

    True - barcode reader must use the previous recognition results for increasing performance of current recognition;
    False - barcode reader must not use the previous recognition results for increasing performance of current recognition.
    Default value is true.
    Remarks

    The "serial recognition" allows to increase the barcode recognition if barcodes are recognizing from images, which are received from the same source, for example, images are received from from a camera installed on a production line.
    The barcode reader uses the "serial recognition" if:

    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also