WebPubSubAction.CreateSendToGroupAction Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CreateSendToGroupAction(String, BinaryData, WebPubSubDataType, IEnumerable<String>) |
Creates an instance of SendToGroupAction for output binding. |
CreateSendToGroupAction(String, String, WebPubSubDataType, IEnumerable<String>) |
Creates an instance of SendToGroupAction for output binding. |
CreateSendToGroupAction(String, BinaryData, WebPubSubDataType, IEnumerable<String>)
- Source:
- WebPubSubAction.cs
Creates an instance of SendToGroupAction for output binding.
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
Parameters
- group
- String
Target group.
- data
- BinaryData
Message data.
- dataType
- WebPubSubDataType
Message data type.
- excluded
- IEnumerable<String>
ConnectionIds to exclude.
Returns
An instance of SendToGroupAction.
Applies to
CreateSendToGroupAction(String, String, WebPubSubDataType, IEnumerable<String>)
- Source:
- WebPubSubAction.cs
Creates an instance of SendToGroupAction for output binding.
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
Parameters
- group
- String
Target group.
- data
- String
Message data.
- dataType
- WebPubSubDataType
Message data type.
- excluded
- IEnumerable<String>
ConnectionIds to exclude.
Returns
An instance of SendToGroupAction.
Applies to
Azure SDK for .NET