你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

WebPubSubServiceClient.SendToConnection 方法

定义

重载

SendToConnection(String, String, ContentType)

将消息发送到特定连接。

SendToConnection(String, RequestContent, ContentType, RequestContext)

将请求正文内的内容发送到特定连接。

SendToConnection(String, String, ContentType)

Source:
WebPubSubServiceClient_extensions.cs

将消息发送到特定连接。

public virtual Azure.Response SendToConnection (string connectionId, string content, Azure.Core.ContentType contentType = default);
abstract member SendToConnection : string * string * Azure.Core.ContentType -> Azure.Response
override this.SendToConnection : string * string * Azure.Core.ContentType -> Azure.Response
Public Overridable Function SendToConnection (connectionId As String, content As String, Optional contentType As ContentType = Nothing) As Response

参数

connectionId
String

连接 ID。

content
String
contentType
ContentType

默认为 ContentType.PlainText。

返回

如果成功,则 Response 为 。

适用于

SendToConnection(String, RequestContent, ContentType, RequestContext)

Source:
WebPubSubServiceClient.cs

将请求正文内的内容发送到特定连接。

public virtual Azure.Response SendToConnection (string connectionId, Azure.Core.RequestContent content, Azure.Core.ContentType contentType, Azure.RequestContext context = default);
abstract member SendToConnection : string * Azure.Core.RequestContent * Azure.Core.ContentType * Azure.RequestContext -> Azure.Response
override this.SendToConnection : string * Azure.Core.RequestContent * Azure.Core.ContentType * Azure.RequestContext -> Azure.Response
Public Overridable Function SendToConnection (connectionId As String, content As RequestContent, contentType As ContentType, Optional context As RequestContext = Nothing) As Response

参数

connectionId
String

连接 ID。

content
RequestContent

要作为请求正文发送的内容。 请求正文架构的详细信息,请参阅下面的“备注”部分。

contentType
ContentType

上传文件类型。 允许的值:“application/json” |“application/octet-stream” |“text/plain”。

context
RequestContext

请求上下文,可以基于每个调用替代客户端管道的默认行为。

返回

从服务返回的响应。

例外

connectionIdcontent 为 null。

connectionId 是一个空字符串,预期为非空。

服务返回了非成功状态代码。

示例

此示例演示如何使用所需的参数和请求内容调用 SendToConnection。

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

var data = File.OpenRead("<filePath>");

Response response = client.SendToConnection("<connectionId>", RequestContent.Create(data), ContentType.ApplicationOctetStream);
Console.WriteLine(response.Status);

注解

Response Error架构:

{
              code: string,
              message: string,
              target: string,
              details: [ErrorDetail],
              inner: {
                code: string,
                inner: InnerError
              }
            }

适用于