Microsoft.WindowsAzure.Commands.Profile.Models.AzureProfileSettings.Create C# (CSharp) Method

Create() public static method

public static Create ( NewAzureProfileCommand command ) : AzureProfileSettings
command NewAzureProfileCommand
return AzureProfileSettings
        public static AzureProfileSettings Create(NewAzureProfileCommand command)
        {
            return new AzureProfileSettings
            {
                Environment = command.Environment,
                SubscriptionId = command.SubscriptionId,
                StorageAccount = command.StorageAccount,
                Certificate = command.Certificate,
                Credential = command.Credential,
                Tenant = command.Tenant,
                AccessToken = command.AccessToken,
                AccountId = command.AccountId
            };
        }
    }
AzureProfileSettings