你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
WebPubSubServiceClient.AddConnectionToGroupAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
添加与目标组的连接。
public virtual System.Threading.Tasks.Task<Azure.Response> AddConnectionToGroupAsync (string group, string connectionId, Azure.RequestContext context = default);
abstract member AddConnectionToGroupAsync : string * string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.AddConnectionToGroupAsync : string * string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function AddConnectionToGroupAsync (group As String, connectionId As String, Optional context As RequestContext = Nothing) As Task(Of Response)
参数
- group
- String
目标组名称,长度应大于 0 且小于 1025。
- connectionId
- String
目标连接 ID。
- context
- RequestContext
请求上下文,可以基于每个调用替代客户端管道的默认行为。
返回
从服务返回的响应。
例外
group
或 connectionId
为 null。
group
或 connectionId
是空字符串,预期为非空。
服务返回了非成功状态代码。
示例
此示例演示如何使用所需参数调用 AddConnectionToGroupAsync。
var client = new WebPubSubServiceClient("<https://my-service.azure.com>", "<hub>");
Response response = await client.AddConnectionToGroupAsync("<group>", "<connectionId>");
Console.WriteLine(response.Status);
注解
的 Response Error
架构:
{
code: string,
message: string,
target: string,
details: [ErrorDetail],
inner: {
code: string,
inner: InnerError
}
}