ServiceClientGenerator.ServiceModel.ServiceModel C# (CSharp) Method

ServiceModel() public method

Used for unit testing, creates a service model from a TextReader so that the generation can be checked
public ServiceModel ( TextReader serviceModelReader, TextReader customizationReader ) : System
serviceModelReader TextReader The reader to get the model information from
customizationReader TextReader The reader to get any customizations for the service from
return System
        public ServiceModel(TextReader serviceModelReader, TextReader customizationReader)
        {
            InitializeServiceModel(serviceModelReader);
            this._customizationModel = new CustomizationsModel(customizationReader);
        }

Same methods

ServiceModel::ServiceModel ( string serviceModelPath, string customizationModelPath ) : System