QuickFix.DataDictionary.DDField.DDField C# (CSharp) Method

DDField() public method

public DDField ( int tag, String name, HashSet enums, String fixFldType ) : System
tag int
name String
enums HashSet
fixFldType String
return System
        public DDField(int tag, String name, HashSet<String> enums, String fixFldType)
        {
            this.Tag = tag;
            this.Name = name;
            this.Enums = enums;
            this.FixFldType = fixFldType;
            this.FieldType = FieldTypeFromFix(this.FixFldType);
        }