HttpServerChannel コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
HttpServerChannel クラスの新しいインスタンスを初期化します。
オーバーロード
HttpServerChannel() |
HttpServerChannel クラスの新しいインスタンスを初期化します。 |
HttpServerChannel(Int32) |
指定したポートを待機する HttpServerChannel クラスの新しいインスタンスを初期化します。 |
HttpServerChannel(IDictionary, IServerChannelSinkProvider) |
チャネル プロパティとシンクを指定して、HttpServerChannel クラスの新しいインスタンスを初期化します。 |
HttpServerChannel(String, Int32) |
指定した名前を持ち、指定したポートで待機する、HttpServerChannel クラスの新しいインスタンスを初期化します。 |
HttpServerChannel(String, Int32, IServerChannelSinkProvider) |
指定したポートで指定した名前を持つ HttpServerChannel クラスの新しいインスタンスを初期化します。このインスタンスは、指定したポートで待機し、指定したシンクを使用します。 |
HttpServerChannel()
HttpServerChannel クラスの新しいインスタンスを初期化します。
public:
HttpServerChannel();
public HttpServerChannel ();
Public Sub New ()
適用対象
HttpServerChannel(Int32)
指定したポートを待機する HttpServerChannel クラスの新しいインスタンスを初期化します。
public:
HttpServerChannel(int port);
public HttpServerChannel (int port);
new System.Runtime.Remoting.Channels.Http.HttpServerChannel : int -> System.Runtime.Remoting.Channels.Http.HttpServerChannel
Public Sub New (port As Integer)
パラメーター
- port
- Int32
チャネルの待機ポート。
注釈
使用可能なポートを動的に割り当てることを要求するには、 パラメーターを port
0 (ゼロ) に設定します。
適用対象
HttpServerChannel(IDictionary, IServerChannelSinkProvider)
チャネル プロパティとシンクを指定して、HttpServerChannel クラスの新しいインスタンスを初期化します。
public:
HttpServerChannel(System::Collections::IDictionary ^ properties, System::Runtime::Remoting::Channels::IServerChannelSinkProvider ^ sinkProvider);
public HttpServerChannel (System.Collections.IDictionary properties, System.Runtime.Remoting.Channels.IServerChannelSinkProvider sinkProvider);
new System.Runtime.Remoting.Channels.Http.HttpServerChannel : System.Collections.IDictionary * System.Runtime.Remoting.Channels.IServerChannelSinkProvider -> System.Runtime.Remoting.Channels.Http.HttpServerChannel
Public Sub New (properties As IDictionary, sinkProvider As IServerChannelSinkProvider)
パラメーター
- properties
- IDictionary
現在のチャネルの構成情報を保持しているチャネル プロパティの IDictionary。
- sinkProvider
- IServerChannelSinkProvider
IServerChannelSinkProvider の新しいインスタンスと共に使用する HttpServerChannel。
例外
構成プロパティの書式が正しくありませんでした。
例
次のコード例は、このコンストラクターの使用方法を示しています。
System::Collections::Hashtable^ properties = gcnew System::Collections::Hashtable;
properties->default[ L"port" ] = 9090;
IServerChannelSinkProvider^ sinkProvider = nullptr;
HttpServerChannel^ serverChannel = gcnew HttpServerChannel( properties,sinkProvider );
System.Collections.Hashtable properties =
new System.Collections.Hashtable();
properties["port"] = 9090;
IServerChannelSinkProvider sinkProvider = null;
HttpServerChannel serverChannel = new HttpServerChannel(
properties, sinkProvider);
注釈
チャネル構成プロパティの詳細については、「 チャネルとフォーマッタの構成プロパティ」を参照してください。
シンク機能が必要ない場合は、 パラメーターを sinkProvider
に null
設定します。
こちらもご覧ください
適用対象
HttpServerChannel(String, Int32)
指定した名前を持ち、指定したポートで待機する、HttpServerChannel クラスの新しいインスタンスを初期化します。
public:
HttpServerChannel(System::String ^ name, int port);
public HttpServerChannel (string name, int port);
new System.Runtime.Remoting.Channels.Http.HttpServerChannel : string * int -> System.Runtime.Remoting.Channels.Http.HttpServerChannel
Public Sub New (name As String, port As Integer)
パラメーター
- name
- String
チャネルの名前。
- port
- Int32
チャネルの待機ポート。
例
次のコード例は、このコンストラクターの使用方法を示しています。
String^ name = L"RemotingServer";
int port = 9090;
HttpServerChannel^ serverChannel = gcnew HttpServerChannel( name,port );
string name = "RemotingServer";
int port = 9090;
HttpServerChannel serverChannel =
new HttpServerChannel(name, port);
注釈
このコンストラクターは、 パラメーターを ChannelName 使用して プロパティを name
設定します。 複数のチャネルを登録する場合は、各チャネルに一意の名前が必要です。
使用可能なポートを動的に割り当てることを要求するには、 パラメーターを port
0 (ゼロ) に設定します。
適用対象
HttpServerChannel(String, Int32, IServerChannelSinkProvider)
指定したポートで指定した名前を持つ HttpServerChannel クラスの新しいインスタンスを初期化します。このインスタンスは、指定したポートで待機し、指定したシンクを使用します。
public:
HttpServerChannel(System::String ^ name, int port, System::Runtime::Remoting::Channels::IServerChannelSinkProvider ^ sinkProvider);
public HttpServerChannel (string name, int port, System.Runtime.Remoting.Channels.IServerChannelSinkProvider sinkProvider);
new System.Runtime.Remoting.Channels.Http.HttpServerChannel : string * int * System.Runtime.Remoting.Channels.IServerChannelSinkProvider -> System.Runtime.Remoting.Channels.Http.HttpServerChannel
Public Sub New (name As String, port As Integer, sinkProvider As IServerChannelSinkProvider)
パラメーター
- name
- String
チャネルの名前。
- port
- Int32
チャネルの待機ポート。
- sinkProvider
- IServerChannelSinkProvider
チャネルによって使用される IServerChannelSinkProvider。
例
次のコード例は、このコンストラクターの使用方法を示しています。
String^ name = L"RemotingServer";
int port = 9090;
IServerChannelSinkProvider^ sinkProvider = nullptr;
HttpServerChannel^ serverChannel = gcnew HttpServerChannel(
name,port,sinkProvider );
string name = "RemotingServer";
int port = 9090;
IServerChannelSinkProvider sinkProvider = null;
HttpServerChannel serverChannel =
new HttpServerChannel(name, port, sinkProvider);
注釈
このコンストラクターは、 パラメーターを ChannelName 使用して プロパティを name
設定します。
使用可能なポートを動的に割り当てることを要求するには、 パラメーターを port
0 (ゼロ) に設定します。
シンク機能が必要ない場合は、 パラメーターを sinkProvider
に null
設定します。
適用対象
.NET