共用方式為


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]);
}

備註

通道屬性可用來在運行時間設定通道。 如需可能通道屬性的清單和範例,請參閱 通道和格式器組態屬性

適用於

另請參閱