次の方法で共有


WebPubSubServiceClient.RemoveConnectionFromAllGroupsAsync メソッド

定義

すべてのグループから接続を削除します。

public virtual System.Threading.Tasks.Task<Azure.Response> RemoveConnectionFromAllGroupsAsync (string connectionId, Azure.RequestContext context = default);
abstract member RemoveConnectionFromAllGroupsAsync : string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.RemoveConnectionFromAllGroupsAsync : string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function RemoveConnectionFromAllGroupsAsync (connectionId As String, Optional context As RequestContext = Nothing) As Task(Of Response)

パラメーター

connectionId
String

ターゲット接続 ID。

context
RequestContext

要求コンテキスト。これは、呼び出しごとにクライアント パイプラインの既定の動作をオーバーライドできます。

戻り値

サービスから返された応答。

例外

connectionId が null です。

connectionId は空の文字列であり、空でないと想定されていました。

サービスから成功以外の状態コードが返されました。

このサンプルでは、必要なパラメーターを使用して RemoveConnectionFromAllGroupsAsync を呼び出す方法を示します。

var client = new WebPubSubServiceClient("<https://my-service.azure.com>", "<hub>");

Response response = await client.RemoveConnectionFromAllGroupsAsync("<connectionId>");
Console.WriteLine(response.Status);

適用対象