Search Results for

    Show / Hide Table of Contents

    Class IdentifierDefinition

    Base class for defining identifiers in structured data formats, including validation rules.

    Inheritance
    System.Object
    IdentifierDefinition
    Namespace: IronBarCode
    Assembly: IronBarCode.dll
    Syntax
    public class IdentifierDefinition : Object

    When a structured barcode payload such as a GS1 string needs to be split into named fields, IdentifierDefinition is the rule that describes one of those fields. Structured formats prefix each value with an identifier code that says what the value is and how long it runs, and a definition captures that contract for a single identifier so the parser knows where one field ends and the next begins. A developer works with these definitions when reading or validating application-identifier data rather than treating a barcode as one opaque string.

    A definition states the shape of its field. Identifier is the code that introduces the field, Description is a human-readable label for it, and Format describes the expected content. Length is expressed by Length for fixed-width fields, with IsVariableLength flagging fields that can vary and MaxLength capping how far a variable field may run. These together let the parser carve a payload into the right pieces without guessing.

    Validation rides on Validator, a Func<string, ValidationResult> that checks a candidate value and returns a ValidationResult reporting whether it is well formed. A developer reads these properties to understand how a field is recognized and constrained, and the resulting ParsedElement objects carry the data each definition extracted. Treat the definition as the read-only description of a field's rules. The checksum and format validation how-to walks through validating structured values, and the output data formats how-to shows how parsed fields are surfaced.

    using IronBarCode;
    
    Console.WriteLine($"{definition.Identifier}: {definition.Description}");
    ValidationResult check = definition.Validator(candidate);
    Console.WriteLine(check.IsValid);

    The reading barcodes tutorial covers the wider read and parse workflow.

    Constructors

    IdentifierDefinition(String, Int32, String, String, Func<String, ValidationResult>)

    Initializes a new instance of the IdentifierDefinition class.

    Declaration
    public IdentifierDefinition(string identifier, int length, string description, string format, Func<string, ValidationResult> validator = null)
    Parameters
    Type Name Description
    System.String identifier

    The identifier string.

    System.Int32 length

    The length of the data (negative for variable length).

    System.String description

    Description of the identifier.

    System.String format

    Expected format of the data.

    System.Func<System.String, ValidationResult> validator

    Optional validator function. Uses default validator if null.

    Properties

    Description

    Description of the identifier.

    Declaration
    public string Description { get; }
    Property Value
    Type Description
    System.String

    Format

    Expected format of the data.

    Declaration
    public string Format { get; }
    Property Value
    Type Description
    System.String

    Identifier

    Identifier string that this definition represents.

    Declaration
    public string Identifier { get; }
    Property Value
    Type Description
    System.String

    IsVariableLength

    Gets a value indicating whether this identifier represents variable-length data.

    Declaration
    public bool IsVariableLength { get; }
    Property Value
    Type Description
    System.Boolean

    Length

    Length of the data element. Negative values indicate variable length.

    Declaration
    public int Length { get; }
    Property Value
    Type Description
    System.Int32

    MaxLength

    Maximum length of the data (absolute value of Length property).

    Declaration
    public int MaxLength { get; }
    Property Value
    Type Description
    System.Int32

    Validator

    Validator function for this identifier.

    Declaration
    public Func<string, ValidationResult> Validator { get; }
    Property Value
    Type Description
    System.Func<System.String, ValidationResult>
    ☀
    ☾
    Downloads
    • Download with Nuget
    • Start for Free
    In This Article
    Back to top
    Install with Nuget
    IronBarcode_for_dotnet_log2o
    Blue key in circleGet started for FREE
    No credit card required
    Test in a live environment

    Test in production without watermarks.
    Works wherever you need it to.

    Fully-functional product

    Get 30 days of fully functional product.
    Have it up and running in minutes.

    24/5 technical support

    Full access to our support engineering team during your product trial

    Grey key in circleGet started for FREE
    The trial form was submitted successfully.
    Calendar in circleBook Free Live Demo
    No contact, no card details, no commitments Book a 30-minute, personal demo.
    Here's what to expect:

    A live demo of our product and its key features

    Get project specific feature recommendations

    All your questions are answered to make sure you have all the information you need. (No commitment whatsoever.)

    Grey key in circleBook Free Live Demo
    Your booking has been completed Check your e-mail for confirmation
    Support Team Member 6 related to The C# PDF Library Support Team Member 14 related to The C# PDF Library Support Team Member 4 related to The C# PDF Library Support Team Member 2 related to The C# PDF Library
    Online 24/5
    Need help? Our sales team would be glad to help you.
    Try the Enterprise Trial
    ironpdf_for_dotnet_log2o
    Key in blue circle
    Get your free 30-day Trial Key instantly.
    bullet_checkedNo credit card or account creation required
    Key in blue circle
    Get your free 30-day Trial Key instantly.
    Blue key in circleNo credit card or account creation required
    Green Check in orange circle
    The trial form was submitted successfully.
    badge_greencheck_in_yellowcircle
    Thank you for starting a trial

    Please check your email for the trial license key.

    If you don’t receive an email, please start a live chat or email support@ironsoftware.com

    Install with NuGet
    View Licensing
    • Logo Aetna
    • Logo NASA
    • Logo GE
    • Logo Porsche
    • Logo USDA
    • Logo Qatar
    Join Millions of Engineers who’ve tried IronBarcode