WebPubSubServiceClient.CloseUserConnections メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
特定のユーザーの接続を閉じます。
public virtual Azure.Response CloseUserConnections (string userId, System.Collections.Generic.IEnumerable<string> excluded = default, string reason = default, Azure.RequestContext context = default);
abstract member CloseUserConnections : string * seq<string> * string * Azure.RequestContext -> Azure.Response
override this.CloseUserConnections : string * seq<string> * string * Azure.RequestContext -> Azure.Response
Public Overridable Function CloseUserConnections (userId As String, Optional excluded As IEnumerable(Of String) = Nothing, Optional reason As String = Nothing, Optional context As RequestContext = Nothing) As Response
パラメーター
- userId
- String
ユーザー ID。
- excluded
- IEnumerable<String>
ユーザーの接続を閉じるときに、これらの connectionId を除外します。
- reason
- String
クライアント接続を閉じる理由。
- context
- RequestContext
要求コンテキスト。これは、呼び出しごとにクライアント パイプラインの既定の動作をオーバーライドできます。
戻り値
サービスから返された応答。
例外
userId
が null です。
userId
は空の文字列であり、空でないと想定されていました。
サービスから成功以外の状態コードが返されました。
例
このサンプルでは、必要なパラメーターを使用して CloseUserConnections を呼び出す方法を示します。
var client = new WebPubSubServiceClient("<https://my-service.azure.com>", "<hub>");
Response response = client.CloseUserConnections("<userId>");
Console.WriteLine(response.Status);
このサンプルでは、すべてのパラメーターを使用して CloseUserConnections を呼び出す方法を示します。
var client = new WebPubSubServiceClient("<https://my-service.azure.com>", "<hub>");
Response response = client.CloseUserConnections("<userId>", new String[]{"<excluded>"}, "<reason>");
Console.WriteLine(response.Status);
注釈
の Response Error
スキーマ:
{
code: string,
message: string,
target: string,
details: [ErrorDetail],
inner: {
code: string,
inner: InnerError
}
}
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for .NET