Vtex.Gallery.Core.VtexCredentials.UnsupportedSchemeMessage C# (CSharp) Method

UnsupportedSchemeMessage() private static method

private static UnsupportedSchemeMessage ( string scheme ) : string
scheme string
return string
        private static string UnsupportedSchemeMessage(string scheme)
        {
            return $"Unsupported authentication scheme: '{scheme}'. " +
                   $"Should be either '{SupportedSchemes.Token}' or '{SupportedSchemes.Basic}'.";
        }