Recast.WebApp.Models.Entities.Post.CreateKey C# (CSharp) Метод

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

public static CreateKey ( string userName, string feedName ) : string
userName string
feedName string
Результат string
        public static string CreateKey(string userName, string feedName)
        {
            return string.Concat(HttpUtility.UrlEncode(userName), splitToken, HttpUtility.UrlEncode(feedName));
        }