Connect メソッド (EndpointAddress)
エンドポイント経由で CEP サーバーの実行中のインスタンスへの接続を準備します。既定のバインドとして、WsHttpBinding が使用されます。
名前空間: Microsoft.ComplexEventProcessing
アセンブリ: Microsoft.ComplexEventProcessing (Microsoft.ComplexEventProcessing.dll)
構文
public static Server Connect(
EndpointAddress endpointAddress
)
パラメーター
- endpointAddress
型: System.ServiceModel. . :: . .EndpointAddress
接続するサーバーのエンドポイント。
戻り値
型: Microsoft.ComplexEventProcessing. . :: . .Server
リモート サーバーを表す新しい CEP サーバー インスタンス。
説明
StreamInsight クライアントとサーバーとのプロトコルはステートレスなので、サーバーとのインターフェイスを持つすべてのメソッドが接続を確立します。Server.Connect() は接続の準備をしますが、実際にサーバーとの対話を行うわけではありません。
使用例
Server server = Server.Connect(new System.ServiceModel.EndpointAddress(@"https://localhost/StreamInsight/MyInstance"));