ServiceStack.HttpUtils.AddQueryParam C# (CSharp) Метод

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

public static AddQueryParam ( this url, object key, string val, bool encode = true ) : string
url this
key object
val string
encode bool
Результат string
        public static string AddQueryParam(this string url, object key, string val, bool encode = true)
        {
            return AddQueryParam(url, (key ?? "").ToString(), val, encode);
        }

Same methods

HttpUtils::AddQueryParam ( this url, string key, object val, bool encode = true ) : string
HttpUtils::AddQueryParam ( this url, string key, string val, bool encode = true ) : string