ServiceClientGenerator.MethodForms.MethodForms C# (CSharp) Method

MethodForms() public method

Creates a representation of the forms for a custom simple method
public MethodForms ( string name, JsonData json ) : Json.LitJson
name string The name of the method
json JsonData The json model for the customization consisting of a list of forms
return Json.LitJson
        public MethodForms(string name, JsonData json)
        {
            this._name = name;
            this._methodRoot = json;
        }
MethodForms