다음을 통해 공유


HttpClientChannel.Keys 속성

정의

채널 속성과 연결된 키의 ICollection을 가져옵니다.

public:
 virtual property System::Collections::ICollection ^ Keys { System::Collections::ICollection ^ get(); };
public override System.Collections.ICollection Keys { get; }
member this.Keys : System.Collections.ICollection
Public Overrides ReadOnly Property Keys As ICollection

속성 값

채널 속성과 연결된 키의 ICollection입니다.

예제

다음 코드 예제에서는 Keys 속성을 사용하는 방법을 보여 줍니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 HttpClientChannel 클래스입니다.

// Display the channel's properties using Keys and Item.
for each(String^ key in clientChannel->Keys)
{
    Console::WriteLine("clientChannel[{0}] = <{1}>", key, clientChannel[key]);
}
// Display the channel's properties using Keys and Item.
foreach(string key in clientChannel.Keys)
{
    Console.WriteLine(
        "clientChannel[{0}] = <{1}>",
        key, clientChannel[key]);
}

설명

채널 속성은 런타임 시 채널을 구성 하려면 사용 됩니다. 목록을 가능한 채널 속성 및 예제를 참조 하세요 채널 및 포맷터 구성 속성합니다.

적용 대상

추가 정보