DuplexChannelFactory<TChannel>.CreateChannel メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定したエンドポイント アドレスへの指定した種類の双方向チャネルを作成します。
オーバーロード
CreateChannel(Object, Binding, EndpointAddress, Uri) |
サービスと、クライアント上のコールバック インスタンスとの間の双方向チャネルを作成します。 |
CreateChannel(InstanceContext) |
サービスと、クライアント上のコールバック インスタンスとの間の双方向チャネルを作成します。 |
CreateChannel(Object, String) |
サービスと、クライアント上のコールバック インスタンスとの間の双方向チャネルを作成します。 |
CreateChannel(EndpointAddress, Uri) |
サービスと、クライアント上のコールバック インスタンスとの間の双方向チャネルを作成します。 |
CreateChannel(InstanceContext, EndpointAddress) |
サービスと、クライアント上のコールバック インスタンスとの間の双方向チャネルを作成します。 |
CreateChannel(InstanceContext, String) |
サービスと、クライアント上のコールバック インスタンスとの間の双方向チャネルを作成します。 |
CreateChannel(Object, Binding, EndpointAddress) |
サービスと、クライアント上のコールバック インスタンスとの間の双方向チャネルを作成します。 |
CreateChannel(InstanceContext, Binding, EndpointAddress) |
サービスと、クライアント上のコールバック インスタンスとの間の双方向チャネルを作成します。 |
CreateChannel(InstanceContext, EndpointAddress, Uri) |
サービスと、クライアント上のコールバック インスタンスとの間の双方向チャネルを作成します。 |
CreateChannel(InstanceContext, Binding, EndpointAddress, Uri) |
サービスと、クライアント上のコールバック インスタンスとの間の双方向チャネルを作成します。 |
CreateChannel(Object, Binding, EndpointAddress, Uri)
サービスと、クライアント上のコールバック インスタンスとの間の双方向チャネルを作成します。
public:
static TChannel CreateChannel(System::Object ^ callbackObject, System::ServiceModel::Channels::Binding ^ binding, System::ServiceModel::EndpointAddress ^ endpointAddress, Uri ^ via);
public static TChannel CreateChannel (object callbackObject, System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress endpointAddress, Uri via);
static member CreateChannel : obj * System.ServiceModel.Channels.Binding * System.ServiceModel.EndpointAddress * Uri -> 'Channel
Public Shared Function CreateChannel (callbackObject As Object, binding As Binding, endpointAddress As EndpointAddress, via As Uri) As TChannel
パラメーター
- endpointAddress
- EndpointAddress
サービスの場所を提供する EndpointAddress。
戻り値
クライアントとサービス間のファクトリに対するジェネリック パラメーターである TChannel
型のチャネル。
例外
binding
または endpointAddress
が null
です。
callbackInstance
またはcallbackInstance
.UserObject が null
です。
適用対象
CreateChannel(InstanceContext)
サービスと、クライアント上のコールバック インスタンスとの間の双方向チャネルを作成します。
public:
TChannel CreateChannel(System::ServiceModel::InstanceContext ^ callbackInstance);
public TChannel CreateChannel (System.ServiceModel.InstanceContext callbackInstance);
override this.CreateChannel : System.ServiceModel.InstanceContext -> 'Channel
Public Function CreateChannel (callbackInstance As InstanceContext) As TChannel
パラメーター
- callbackInstance
- InstanceContext
接続サービスからのメッセージをリッスンするためにクライアントが使用する InstanceContext。
戻り値
クライアントとサービス間のファクトリに対するジェネリック パラメーターである TChannel
型の双方向チャネル。
例外
callbackInstance
またはcallbackInstance
.UserObject が null
です。
適用対象
CreateChannel(Object, String)
サービスと、クライアント上のコールバック インスタンスとの間の双方向チャネルを作成します。
public:
static TChannel CreateChannel(System::Object ^ callbackObject, System::String ^ endpointConfigurationName);
public static TChannel CreateChannel (object callbackObject, string endpointConfigurationName);
static member CreateChannel : obj * string -> 'Channel
Public Shared Function CreateChannel (callbackObject As Object, endpointConfigurationName As String) As TChannel
パラメーター
- endpointConfigurationName
- String
エンドポイント構成で使用される名前。
戻り値
クライアントとサービス間のファクトリに対するジェネリック パラメーターである TChannel
型のチャネル。
例外
endpointConfigurationName
が null
です。
callbackInstance
またはcallbackInstance
.UserObject が null
です。
適用対象
CreateChannel(EndpointAddress, Uri)
サービスと、クライアント上のコールバック インスタンスとの間の双方向チャネルを作成します。
public:
override TChannel CreateChannel(System::ServiceModel::EndpointAddress ^ address, Uri ^ via);
public override TChannel CreateChannel (System.ServiceModel.EndpointAddress address, Uri via);
override this.CreateChannel : System.ServiceModel.EndpointAddress * Uri -> 'Channel
Public Overrides Function CreateChannel (address As EndpointAddress, via As Uri) As TChannel
パラメーター
- address
- EndpointAddress
サービスの場所を提供する EndpointAddress。
戻り値
クライアントとサービス間のファクトリに対するジェネリック パラメーターである TChannel
型の双方向チャネル。
例外
address
が null
です。
適用対象
CreateChannel(InstanceContext, EndpointAddress)
サービスと、クライアント上のコールバック インスタンスとの間の双方向チャネルを作成します。
public:
TChannel CreateChannel(System::ServiceModel::InstanceContext ^ callbackInstance, System::ServiceModel::EndpointAddress ^ address);
public TChannel CreateChannel (System.ServiceModel.InstanceContext callbackInstance, System.ServiceModel.EndpointAddress address);
override this.CreateChannel : System.ServiceModel.InstanceContext * System.ServiceModel.EndpointAddress -> 'Channel
Public Function CreateChannel (callbackInstance As InstanceContext, address As EndpointAddress) As TChannel
パラメーター
- callbackInstance
- InstanceContext
接続サービスからのメッセージをリッスンするためにクライアントが使用する InstanceContext。
- address
- EndpointAddress
サービスの場所を提供する EndpointAddress。
戻り値
クライアントとサービス間のファクトリに対するジェネリック パラメーターである TChannel
型の双方向チャネル。
例外
address
が null
です。
callbackInstance
またはcallbackInstance
.UserObject が null
です。
適用対象
CreateChannel(InstanceContext, String)
サービスと、クライアント上のコールバック インスタンスとの間の双方向チャネルを作成します。
public:
static TChannel CreateChannel(System::ServiceModel::InstanceContext ^ callbackInstance, System::String ^ endpointConfigurationName);
public static TChannel CreateChannel (System.ServiceModel.InstanceContext callbackInstance, string endpointConfigurationName);
static member CreateChannel : System.ServiceModel.InstanceContext * string -> 'Channel
Public Shared Function CreateChannel (callbackInstance As InstanceContext, endpointConfigurationName As String) As TChannel
パラメーター
- callbackInstance
- InstanceContext
接続サービスからのメッセージをリッスンするためにクライアントが使用する InstanceContext。
- endpointConfigurationName
- String
エンドポイント構成で使用される名前。
戻り値
クライアントとサービス間のファクトリに対するジェネリック パラメーターである TChannel
型のチャネル。
例外
endpointConfigurationName
が null
です。
callbackInstance
またはcallbackInstance
.UserObject が null
です。
適用対象
CreateChannel(Object, Binding, EndpointAddress)
サービスと、クライアント上のコールバック インスタンスとの間の双方向チャネルを作成します。
public:
static TChannel CreateChannel(System::Object ^ callbackObject, System::ServiceModel::Channels::Binding ^ binding, System::ServiceModel::EndpointAddress ^ endpointAddress);
public static TChannel CreateChannel (object callbackObject, System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress endpointAddress);
static member CreateChannel : obj * System.ServiceModel.Channels.Binding * System.ServiceModel.EndpointAddress -> 'Channel
Public Shared Function CreateChannel (callbackObject As Object, binding As Binding, endpointAddress As EndpointAddress) As TChannel
パラメーター
- endpointAddress
- EndpointAddress
サービスの場所を提供する EndpointAddress。
戻り値
クライアントとサービス間のファクトリに対するジェネリック パラメーターである TChannel
型のチャネル。
例外
binding
または endpointAddress
が null
です。
callbackInstance
またはcallbackInstance
.UserObject が null
です。
適用対象
CreateChannel(InstanceContext, Binding, EndpointAddress)
サービスと、クライアント上のコールバック インスタンスとの間の双方向チャネルを作成します。
public:
static TChannel CreateChannel(System::ServiceModel::InstanceContext ^ callbackInstance, System::ServiceModel::Channels::Binding ^ binding, System::ServiceModel::EndpointAddress ^ endpointAddress);
public static TChannel CreateChannel (System.ServiceModel.InstanceContext callbackInstance, System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress endpointAddress);
static member CreateChannel : System.ServiceModel.InstanceContext * System.ServiceModel.Channels.Binding * System.ServiceModel.EndpointAddress -> 'Channel
Public Shared Function CreateChannel (callbackInstance As InstanceContext, binding As Binding, endpointAddress As EndpointAddress) As TChannel
パラメーター
- callbackInstance
- InstanceContext
接続サービスからのメッセージをリッスンするためにクライアントが使用する InstanceContext。
- endpointAddress
- EndpointAddress
サービスの場所を提供する EndpointAddress。
戻り値
クライアントとサービス間のファクトリに対するジェネリック パラメーターである TChannel
型のチャネル。
例外
binding
または endpointAddress
が null
です。
callbackInstance
またはcallbackInstance
.UserObject が null
です。
適用対象
CreateChannel(InstanceContext, EndpointAddress, Uri)
サービスと、クライアント上のコールバック インスタンスとの間の双方向チャネルを作成します。
public:
virtual TChannel CreateChannel(System::ServiceModel::InstanceContext ^ callbackInstance, System::ServiceModel::EndpointAddress ^ address, Uri ^ via);
public virtual TChannel CreateChannel (System.ServiceModel.InstanceContext callbackInstance, System.ServiceModel.EndpointAddress address, Uri via);
override this.CreateChannel : System.ServiceModel.InstanceContext * System.ServiceModel.EndpointAddress * Uri -> 'Channel
Public Overridable Function CreateChannel (callbackInstance As InstanceContext, address As EndpointAddress, via As Uri) As TChannel
パラメーター
- callbackInstance
- InstanceContext
接続サービスからのメッセージをリッスンするためにクライアントが使用する InstanceContext。
- address
- EndpointAddress
サービスの場所を提供する EndpointAddress。
戻り値
クライアントとサービス間のファクトリに対するジェネリック パラメーターである TChannel
型のチャネル。
例外
address
が null
です。
callbackInstance
またはcallbackInstance
.UserObject が null
です。
適用対象
CreateChannel(InstanceContext, Binding, EndpointAddress, Uri)
サービスと、クライアント上のコールバック インスタンスとの間の双方向チャネルを作成します。
public:
static TChannel CreateChannel(System::ServiceModel::InstanceContext ^ callbackInstance, System::ServiceModel::Channels::Binding ^ binding, System::ServiceModel::EndpointAddress ^ endpointAddress, Uri ^ via);
public static TChannel CreateChannel (System.ServiceModel.InstanceContext callbackInstance, System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress endpointAddress, Uri via);
static member CreateChannel : System.ServiceModel.InstanceContext * System.ServiceModel.Channels.Binding * System.ServiceModel.EndpointAddress * Uri -> 'Channel
Public Shared Function CreateChannel (callbackInstance As InstanceContext, binding As Binding, endpointAddress As EndpointAddress, via As Uri) As TChannel
パラメーター
- callbackInstance
- InstanceContext
接続サービスからのメッセージをリッスンするためにクライアントが使用する InstanceContext。
- endpointAddress
- EndpointAddress
サービスの場所を提供する EndpointAddress。
戻り値
クライアントとサービス間のファクトリに対するジェネリック パラメーターである TChannel
型のチャネル。
例外
binding
または endpointAddress
が null
です。
callbackInstance
またはcallbackInstance
.UserObject が null
です。
適用対象
.NET