Elastacloud.AzureManagement.Fluent.Clients.MobileServiceClient.GetServiceSettings C# (CSharp) Method

GetServiceSettings() private method

Gets all of the Windows settings for notifications and other things
private GetServiceSettings ( ) : void
return void
        private void GetServiceSettings()
        {
            // execute the command
            var command = new GetMobileServiceSettingsCommand(MobileServiceName, Constants.MobileServicesServiceSettings)
            {
                SubscriptionId = SubscriptionId,
                Certificate = ManagementCertificate
            };
            command.Execute();
            // get all the mobile providers returned

            var settings = (JObject)JsonConvert.DeserializeObject(command.JsonResult);
            DynamicSchemaEnabled = (bool)settings.GetValue(Constants.DynamicSchemaEnabled).ToObject(typeof(bool));
        }