你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
WebPubSubAction.CreateSendToGroupAction 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
CreateSendToGroupAction(String, BinaryData, WebPubSubDataType, IEnumerable<String>)
- Source:
- WebPubSubAction.cs
为输出绑定创建 的 SendToGroupAction 实例。
public static Microsoft.Azure.WebJobs.Extensions.WebPubSub.SendToGroupAction CreateSendToGroupAction (string group, BinaryData data, Microsoft.Azure.WebPubSub.Common.WebPubSubDataType dataType, System.Collections.Generic.IEnumerable<string> excluded = default);
static member CreateSendToGroupAction : string * BinaryData * Microsoft.Azure.WebPubSub.Common.WebPubSubDataType * seq<string> -> Microsoft.Azure.WebJobs.Extensions.WebPubSub.SendToGroupAction
Public Shared Function CreateSendToGroupAction (group As String, data As BinaryData, dataType As WebPubSubDataType, Optional excluded As IEnumerable(Of String) = Nothing) As SendToGroupAction
参数
- group
- String
目标组。
- data
- BinaryData
消息数据。
- dataType
- WebPubSubDataType
消息数据类型。
- excluded
- IEnumerable<String>
要排除的 ConnectionId。
返回
SendToGroupAction 的一个实例。
适用于
CreateSendToGroupAction(String, String, WebPubSubDataType, IEnumerable<String>)
- Source:
- WebPubSubAction.cs
为输出绑定创建 的 SendToGroupAction 实例。
public static Microsoft.Azure.WebJobs.Extensions.WebPubSub.SendToGroupAction CreateSendToGroupAction (string group, string data, Microsoft.Azure.WebPubSub.Common.WebPubSubDataType dataType = Microsoft.Azure.WebPubSub.Common.WebPubSubDataType.Text, System.Collections.Generic.IEnumerable<string> excluded = default);
static member CreateSendToGroupAction : string * string * Microsoft.Azure.WebPubSub.Common.WebPubSubDataType * seq<string> -> Microsoft.Azure.WebJobs.Extensions.WebPubSub.SendToGroupAction
Public Shared Function CreateSendToGroupAction (group As String, data As String, Optional dataType As WebPubSubDataType = Microsoft.Azure.WebPubSub.Common.WebPubSubDataType.Text, Optional excluded As IEnumerable(Of String) = Nothing) As SendToGroupAction
参数
- group
- String
目标组。
- data
- String
消息数据。
- dataType
- WebPubSubDataType
消息数据类型。
- excluded
- IEnumerable<String>
要排除的 ConnectionId。
返回
SendToGroupAction 的一个实例。