BACnet.Types.Schemas.FieldSchema.FieldSchema C# (CSharp) Method

FieldSchema() public method

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