BACnet.SchemaParser.FieldDefinition.FieldDefinition C# (CSharp) Method

FieldDefinition() public method

Constructs a new field definition instance
public FieldDefinition ( string name, byte tag, TypeDefinition type ) : System
name string The name of the field
tag byte The tag of the field
type TypeDefinition The type of the field
return System
        public FieldDefinition(string name, byte tag, TypeDefinition type)
        {
            this.Name = name;
            this.Tag = tag;
            this.Type = type;
        }
FieldDefinition