WebHeaderCollection.Item[] 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 헤더를 가져오거나 설정합니다.
오버로드
Item[HttpRequestHeader] |
지정된 요청 헤더를 가져오거나 설정합니다. |
Item[HttpResponseHeader] |
지정된 응답 헤더를 가져오거나 설정합니다. |
Item[String] |
Item[HttpRequestHeader]
- Source:
- WebHeaderCollection.cs
- Source:
- WebHeaderCollection.cs
- Source:
- WebHeaderCollection.cs
지정된 요청 헤더를 가져오거나 설정합니다.
public:
property System::String ^ default[System::Net::HttpRequestHeader] { System::String ^ get(System::Net::HttpRequestHeader header); void set(System::Net::HttpRequestHeader header, System::String ^ value); };
public string this[System.Net.HttpRequestHeader header] { get; set; }
public string? this[System.Net.HttpRequestHeader header] { get; set; }
member this.Item(System.Net.HttpRequestHeader) : string with get, set
Default Public Property Item(header As HttpRequestHeader) As String
매개 변수
- header
- HttpRequestHeader
요청 헤더 값입니다.
속성 값
지정된 헤더 값을 포함하는 String 인스턴스입니다.
예외
이 WebHeaderCollection 인스턴스에서 HttpRequestHeader의 인스턴스를 사용할 수 없는 경우
적용 대상
Item[HttpResponseHeader]
- Source:
- WebHeaderCollection.cs
- Source:
- WebHeaderCollection.cs
- Source:
- WebHeaderCollection.cs
지정된 응답 헤더를 가져오거나 설정합니다.
public:
property System::String ^ default[System::Net::HttpResponseHeader] { System::String ^ get(System::Net::HttpResponseHeader header); void set(System::Net::HttpResponseHeader header, System::String ^ value); };
public string this[System.Net.HttpResponseHeader header] { get; set; }
public string? this[System.Net.HttpResponseHeader header] { get; set; }
member this.Item(System.Net.HttpResponseHeader) : string with get, set
Default Public Property Item(header As HttpResponseHeader) As String
매개 변수
- header
- HttpResponseHeader
응답 헤더 값입니다.
속성 값
지정된 헤더를 포함하는 String 인스턴스입니다.
예외
.NET Framework 및 .NET Core 버전 2.0 - 3.1만 해당: value
의 길이가 65,535자를 넘는 경우
이 WebHeaderCollection 인스턴스에서 HttpResponseHeader의 인스턴스를 사용할 수 없는 경우
설명
참고
의 value
길이는 .NET Framework 및 .NET Core 버전 2.0 - 3.1에서만 유효성이 검사됩니다.
- 적용 가능한 모든 .NET Framework 버전에서: WebHeaderCollection 의 길이
value
가 65535보다 크면 속성에서 반환 Headers 되는 인스턴스가 을 throw ArgumentOutOfRangeException 합니다. 다른 WebHeaderCollection 모든 인스턴스는 모든 길이의 을value
허용합니다. - 버전 3.1을 통한 .NET Core 버전: WebHeaderCollection 형식 HttpResponseHeader 의 헤더와 함께 사용되는 인스턴스는 의
value
길이가 65535보다 크면 을 throw ArgumentOutOfRangeException 합니다. 다른 WebHeaderCollection 모든 인스턴스는 모든 길이의 을value
허용합니다. - .NET 5 이상 버전에서: WebHeaderCollection 모든 길이의 을
value
허용합니다.
적용 대상
Item[String]
public:
property System::String ^ default[System::String ^] { System::String ^ get(System::String ^ name); void set(System::String ^ name, System::String ^ value); };
public string this[string name] { get; set; }
member this.Item(string) : string with get, set
Default Public Property Item(name As String) As String
매개 변수
- name
- String
속성 값
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET