/// <summary> /// This implementation of the FixDxBlock constructor /// is used to create an instance of a component block /// that represents a repeating group. /// </summary> /// <param name="name"> /// The component block's name. /// </param> /// <param name="category"> /// The component block's category. /// </param> /// <param name="field"> /// The name of the FIX field that is used as the /// count/start field for the repeating group. /// </param> public FixDxBlock(string name, string category, string field) { _name = name; _type = FixDxBlockTypes.Repeating; _category = category; _field = field; }
/// <summary> /// This implementation of the FixDxBlock constructor /// is used to create an instance of a component block /// with the name and category fields set. The component /// block's type will be automatically set to the value /// of FixDxBlockTypes.Component. /// </summary> /// <param name="name"></param> /// <param name="category"></param> public FixDxBlock(string name, string category) { _name = name; _type = FixDxBlockTypes.Component; _category = category; }
/// <summary> /// This implementation of the FixDxBlock constructor /// is used to create an instance of a component block /// with the name field set. The component block's type /// is automatically set to FixDxBlockTypes.Component. /// </summary> /// <param name="name"></param> public FixDxBlock(string name) { _name = name; _type = FixDxBlockTypes.Component; }