Elastacloud.AzureManagement.Fluent.Commands.MobileServices.GetMobileServiceSettingsCommand.GetMobileServiceSettingsCommand C# (CSharp) Method

GetMobileServiceSettingsCommand() private method

Constructs a command to create a mobile service
private GetMobileServiceSettingsCommand ( string serviceName, string path, string overrideVerb = HttpVerbGet ) : System.IO
serviceName string
path string
overrideVerb string
return System.IO
        internal GetMobileServiceSettingsCommand(string serviceName, string path, string overrideVerb = HttpVerbGet)
        {
            OperationId = "mobileservices";
            ServiceType = "services";
            Name = serviceName;
            HttpVerb = overrideVerb;
            Accept = "application/json";
            HttpCommand = string.Format("mobileservices/{0}/{1}", serviceName.ToLower(), path);
        }