ServiceClientGenerator.ConstructorForms.ConstructorForms C# (CSharp) Method

ConstructorForms() public method

Creates a representation for a constructor in the structure consisting of a list of a list of member names
public ConstructorForms ( string name, JsonData json ) : Json.LitJson
name string The name of the constructor
json JsonData The json customization for the constructor forms
return Json.LitJson
        public ConstructorForms(string name, JsonData json)
        {
            this._name = name;
            this._constructorRoot = json;
        }
ConstructorForms