ServiceClientGenerator.Operation.Operation C# (CSharp) Method

Operation() public method

Constructs on operation from a service model, operation name, and the json model
public Operation ( ServiceModel model, string name, JsonData data ) : Json.LitJson
model ServiceModel The model of the service the operation belongs to
name string The name of the operation
data JsonData The json data from the model file
return Json.LitJson
        public Operation(ServiceModel model, string name, JsonData data)
            : base(model, data)
        {
            this.model = model;
            this.name = name;
            this.data = data;
        }