HttpClientChannel 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 HttpClientChannel 類別的新執行個體。
多載
HttpClientChannel() |
初始化 HttpClientChannel 類別的新執行個體。 |
HttpClientChannel(IDictionary, IClientChannelSinkProvider) |
使用指定的組態屬性和接收,初始化 HttpClientChannel 類別的新執行個體。 |
HttpClientChannel(String, IClientChannelSinkProvider) |
使用指定的名稱和接收,初始化 HttpClientChannel 類別的新執行個體。 |
HttpClientChannel()
初始化 HttpClientChannel 類別的新執行個體。
public:
HttpClientChannel();
public HttpClientChannel ();
Public Sub New ()
備註
這個建構函式傳回之實例的 HttpClientChannel 組態屬性全都設定為其預設值。
適用於
HttpClientChannel(IDictionary, IClientChannelSinkProvider)
使用指定的組態屬性和接收,初始化 HttpClientChannel 類別的新執行個體。
public:
HttpClientChannel(System::Collections::IDictionary ^ properties, System::Runtime::Remoting::Channels::IClientChannelSinkProvider ^ sinkProvider);
public HttpClientChannel (System.Collections.IDictionary properties, System.Runtime.Remoting.Channels.IClientChannelSinkProvider sinkProvider);
new System.Runtime.Remoting.Channels.Http.HttpClientChannel : System.Collections.IDictionary * System.Runtime.Remoting.Channels.IClientChannelSinkProvider -> System.Runtime.Remoting.Channels.Http.HttpClientChannel
Public Sub New (properties As IDictionary, sinkProvider As IClientChannelSinkProvider)
參數
- properties
- IDictionary
IDictionary 集合,指定通道要使用的組態屬性值。
- sinkProvider
- IClientChannelSinkProvider
通道要使用的 IClientChannelSinkProvider 實作。
例外狀況
組態屬性的格式不正確。
範例
下列程式代碼範例示範如何使用這個建構函式。
// Create a client channel.
System::Collections::Hashtable^ properties = gcnew System::Collections::Hashtable;
properties->default[ L"port" ] = 9090;
IClientChannelSinkProvider^ sinkProvider = nullptr;
HttpClientChannel^ clientChannel = gcnew HttpClientChannel( properties,sinkProvider );
// Create a client channel.
System.Collections.Hashtable properties =
new System.Collections.Hashtable();
properties["port"] = 9090;
IClientChannelSinkProvider sinkProvider = null;
HttpClientChannel clientChannel = new HttpClientChannel(
properties, sinkProvider);
備註
如需通道組態屬性的詳細資訊,請參閱 通道和格式器組態屬性。
如果您不需要接收功能,請將 sinkProvider
參數設定為 null
。
另請參閱
適用於
HttpClientChannel(String, IClientChannelSinkProvider)
使用指定的名稱和接收,初始化 HttpClientChannel 類別的新執行個體。
public:
HttpClientChannel(System::String ^ name, System::Runtime::Remoting::Channels::IClientChannelSinkProvider ^ sinkProvider);
public HttpClientChannel (string name, System.Runtime.Remoting.Channels.IClientChannelSinkProvider sinkProvider);
new System.Runtime.Remoting.Channels.Http.HttpClientChannel : string * System.Runtime.Remoting.Channels.IClientChannelSinkProvider -> System.Runtime.Remoting.Channels.Http.HttpClientChannel
Public Sub New (name As String, sinkProvider As IClientChannelSinkProvider)
參數
- name
- String
HttpClientChannel 之新執行個體的名稱。
- sinkProvider
- IClientChannelSinkProvider
通道要使用的 IClientChannelSinkProvider。
範例
下列程式代碼範例示範如何使用這個建構函式。
// Create a client channel.
String^ name = L"RemotingClient";
IClientChannelSinkProvider^ sinkProvider = nullptr;
HttpClientChannel^ clientChannel = gcnew HttpClientChannel( name,sinkProvider );
// Create a client channel.
string name = "RemotingClient";
IClientChannelSinkProvider sinkProvider = null;
HttpClientChannel clientChannel = new HttpClientChannel(name,
sinkProvider);
備註
這個建構函式會使用 name
參數來設定 ChannelName 屬性。