C# 클래스 Ramone.UriExtensions

파일 보기 프로젝트 열기: JornWildt/Ramone

공개 메소드들

메소드 설명
AddQueryParameters ( this url, object parameters ) : Uri

Add query parameters to URL while keeping exiting parameters already specified in the URL.

This method respects repeated keys, such that adding "x=3&x=4" to "x=1&x=2" yields "x=1&x=2&x=3&x=4".

메소드 상세

AddQueryParameters() 공개 정적인 메소드

Add query parameters to URL while keeping exiting parameters already specified in the URL.
This method respects repeated keys, such that adding "x=3&x=4" to "x=1&x=2" yields "x=1&x=2&x=3&x=4".
public static AddQueryParameters ( this url, object parameters ) : Uri
url this
parameters object Either IDictionary<string,string>, NameValueCollection or any other /// class where the public properties are added as query parameters.
리턴 System.Uri