VintaSoft Barcode .NET SDK 14.3: Documentation for .NET developer
Vintasoft.Barcode Namespace / VerifyBarcodeDelegate Delegate
Syntax Remarks Requirements SeeAlso
In This Topic
    VerifyBarcodeDelegate Delegate
    In This Topic
    Represents the method that verifies the information about barcode found by barcode reader.
    Syntax
    'Declaration
    
    Public Delegate Sub VerifyBarcodeDelegate( _
    ByVal reader
    The source of the event.
    As BarcodeReader, _
    ByVal barcodeInfo
    IBarcodeInfo that contains information about found barcode.
    As IBarcodeInfo _
    )
    public delegate void VerifyBarcodeDelegate(
    BarcodeReader reader,
    IBarcodeInfo barcodeInfo
    )
    public: __gc __delegate void VerifyBarcodeDelegate(
    BarcodeReader* reader,
    IBarcodeInfo* barcodeInfo
    )
    public delegate void VerifyBarcodeDelegate(
    BarcodeReader^ reader,
    IBarcodeInfo^ barcodeInfo
    )

    Parameters

    reader
    The source of the event.
    barcodeInfo
    IBarcodeInfo that contains information about found barcode.
    Remarks

    Confidence should be changed after analyzing of barcodeInfo.

    Requirements

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

    %GROUP.MEMBERS%