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