ServiceClientGenerator.CustomizationsModel.CustomizationsModel C# (CSharp) Method

CustomizationsModel() public method

Creates a customization model used to get customizations for a service
public CustomizationsModel ( string modelPath ) : Json.LitJson
modelPath string Path to the file to read the customizations from
return Json.LitJson
        public CustomizationsModel(string modelPath)
        {
            if (string.IsNullOrEmpty(modelPath))
                _documentRoot = new JsonData();
            else
                using (var reader = new StreamReader(modelPath))
                    Initialize(reader);
        }

Same methods

CustomizationsModel::CustomizationsModel ( TextReader reader ) : Json.LitJson