ServiceStack.LicenseUtils.GetHashKeyToSign C# (CSharp) Method

GetHashKeyToSign() public static method

public static GetHashKeyToSign ( this key ) : string
key this
return 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);
        }