Share via


WebPubSubAction.CreateSendToAllAction Method

Definition

Overloads

CreateSendToAllAction(BinaryData, WebPubSubDataType, IEnumerable<String>)

Creates an instance of SendToAllAction for output binding.

CreateSendToAllAction(String, WebPubSubDataType, IEnumerable<String>)

Creates an instance of SendToAllAction for output binding.

CreateSendToAllAction(BinaryData, WebPubSubDataType, IEnumerable<String>)

Source:
WebPubSubAction.cs

Creates an instance of SendToAllAction for output binding.

public static Microsoft.Azure.WebJobs.Extensions.WebPubSub.SendToAllAction CreateSendToAllAction (BinaryData data, Microsoft.Azure.WebPubSub.Common.WebPubSubDataType dataType, System.Collections.Generic.IEnumerable<string> excluded = default);
static member CreateSendToAllAction : BinaryData * Microsoft.Azure.WebPubSub.Common.WebPubSubDataType * seq<string> -> Microsoft.Azure.WebJobs.Extensions.WebPubSub.SendToAllAction
Public Shared Function CreateSendToAllAction (data As BinaryData, dataType As WebPubSubDataType, Optional excluded As IEnumerable(Of String) = Nothing) As SendToAllAction

Parameters

data
BinaryData

Web PubSub message data.

dataType
WebPubSubDataType

Web PubSub message data type.

excluded
IEnumerable<String>

ConnectionIds to exclude.

Returns

An instance of SendToAllAction.

Applies to

CreateSendToAllAction(String, WebPubSubDataType, IEnumerable<String>)

Source:
WebPubSubAction.cs

Creates an instance of SendToAllAction for output binding.

public static Microsoft.Azure.WebJobs.Extensions.WebPubSub.SendToAllAction CreateSendToAllAction (string data, Microsoft.Azure.WebPubSub.Common.WebPubSubDataType dataType = Microsoft.Azure.WebPubSub.Common.WebPubSubDataType.Text, System.Collections.Generic.IEnumerable<string> excluded = default);
static member CreateSendToAllAction : string * Microsoft.Azure.WebPubSub.Common.WebPubSubDataType * seq<string> -> Microsoft.Azure.WebJobs.Extensions.WebPubSub.SendToAllAction
Public Shared Function CreateSendToAllAction (data As String, Optional dataType As WebPubSubDataType = Microsoft.Azure.WebPubSub.Common.WebPubSubDataType.Text, Optional excluded As IEnumerable(Of String) = Nothing) As SendToAllAction

Parameters

data
String

Web PubSub message data.

dataType
WebPubSubDataType

Web PubSub message data type.

excluded
IEnumerable<String>

ConnectionIds to exclude.

Returns

An instance of SendToAllAction.

Applies to