ServiceClientGenerator.CustomizationsModel.CustomizationsModel C# (CSharp) Method

CustomizationsModel() public method

Creates a customization model used to get customizations for a service
public CustomizationsModel ( TextReader reader ) : Json.LitJson
reader TextReader Reader to get the json text from
return Json.LitJson
        public CustomizationsModel(TextReader reader)
        {
            if (reader == null)
                this._documentRoot = new JsonData();
            else
                Initialize(reader);
        }

Same methods

CustomizationsModel::CustomizationsModel ( string modelPath ) : Json.LitJson