ServiceStack.LicenseUtils.GetHashKeyToSign C# (CSharp) Метод

GetHashKeyToSign() публичный статический Метод

public static GetHashKeyToSign ( this key ) : string
key this
Результат string
        public static string GetHashKeyToSign(this LicenseKey key)
        {
            return "{0}:{1}:{2}:{3}".Fmt(key.Ref, key.Name, key.Expiry.ToString("yyyy-MM-dd"), key.Type);
        }