QueryString.Add 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
Add(QueryString) |
현재 쿼리 문자열에 연결 |
Add(String, String) |
및 를 사용하여 |
Add(QueryString)
- Source:
- QueryString.cs
- Source:
- QueryString.cs
- Source:
- QueryString.cs
현재 쿼리 문자열에 연결 other
합니다.
public:
Microsoft::AspNetCore::Http::QueryString Add(Microsoft::AspNetCore::Http::QueryString other);
public Microsoft.AspNetCore.Http.QueryString Add (Microsoft.AspNetCore.Http.QueryString other);
member this.Add : Microsoft.AspNetCore.Http.QueryString -> Microsoft.AspNetCore.Http.QueryString
Public Function Add (other As QueryString) As QueryString
매개 변수
- other
- QueryString
연결할 QueryString입니다.
반환
연결된 입니다 QueryString.
적용 대상
Add(String, String)
- Source:
- QueryString.cs
- Source:
- QueryString.cs
- Source:
- QueryString.cs
및 를 사용하여 name
value
쿼리 문자열을 현재 쿼리 문자열에 연결합니다.
public:
Microsoft::AspNetCore::Http::QueryString Add(System::String ^ name, System::String ^ value);
public Microsoft.AspNetCore.Http.QueryString Add (string name, string value);
member this.Add : string * string -> Microsoft.AspNetCore.Http.QueryString
Public Function Add (name As String, value As String) As QueryString
매개 변수
- name
- String
연결할 쿼리 문자열의 이름입니다.
- value
- String
연결할 쿼리 문자열의 값입니다.
반환
연결된 입니다 QueryString.