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

BuildBase64Config() private method

Builds the configuration necessary to build a mobile service
private BuildBase64Config ( MobileServiceCommand &command ) : void
command Elastacloud.AzureManagement.Fluent.Commands.MobileServices.MobileServiceCommand The name of the command
return void
        private void BuildBase64Config(ref MobileServiceCommand command)
        {
            var jjson = GetCreateNewServiceSpecification();
            var json = JsonConvert.DeserializeObject(jjson);

            command.Config = Convert.ToBase64String(Encoding.UTF8.GetBytes(json.ToString()));
        }