Microsoft.Azure.Commands.RecoveryServices.CertUtils.GenerateCertFriendlyName C# (CSharp) Method

GenerateCertFriendlyName() private static method

Generates friendly name
private static GenerateCertFriendlyName ( string subscriptionId, string prefix = "" ) : string
subscriptionId string subscription id
prefix string prefix, likely resource name
return string
        private static string GenerateCertFriendlyName(string subscriptionId, string prefix = "")
        {
            return string.Format("{0}{1}-{2}-vaultcredentials", prefix, subscriptionId, DateTime.Now.ToString("M-d-yyyy"));
        }