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

UserEventRequest.CreateResponse 方法

定义

重载

CreateResponse(BinaryData, WebPubSubDataType)

创建 UserEventResponse

CreateResponse(String, WebPubSubDataType)

创建 UserEventResponse

CreateResponse(BinaryData, WebPubSubDataType)

Source:
UserEventRequest.cs

创建 UserEventResponse

public Microsoft.Azure.WebPubSub.Common.UserEventResponse CreateResponse (BinaryData data, Microsoft.Azure.WebPubSub.Common.WebPubSubDataType dataType);
member this.CreateResponse : BinaryData * Microsoft.Azure.WebPubSub.Common.WebPubSubDataType -> Microsoft.Azure.WebPubSub.Common.UserEventResponse
Public Function CreateResponse (data As BinaryData, dataType As WebPubSubDataType) As UserEventResponse

参数

data
BinaryData

用于返回调用方的 BinaryData 消息。

返回

返回调用方的消息响应。

适用于

CreateResponse(String, WebPubSubDataType)

Source:
UserEventRequest.cs

创建 UserEventResponse

public Microsoft.Azure.WebPubSub.Common.UserEventResponse CreateResponse (string data, Microsoft.Azure.WebPubSub.Common.WebPubSubDataType dataType = Microsoft.Azure.WebPubSub.Common.WebPubSubDataType.Text);
member this.CreateResponse : string * Microsoft.Azure.WebPubSub.Common.WebPubSubDataType -> Microsoft.Azure.WebPubSub.Common.UserEventResponse
Public Function CreateResponse (data As String, Optional dataType As WebPubSubDataType = Microsoft.Azure.WebPubSub.Common.WebPubSubDataType.Text) As UserEventResponse

参数

data
String

用于返回调用方的字符串消息。

dataType
WebPubSubDataType

消息 WebPubSubDataType,默认为“文本”。

返回

返回调用方的消息响应。

适用于