共用方式為


SocketIOAction.CreateSendToNamespaceAction Method

Definition

Creates an instance of SendToNamespaceAction for output binding.

public static Microsoft.Azure.WebJobs.Extensions.WebPubSubForSocketIO.SendToNamespaceAction CreateSendToNamespaceAction (string eventName, System.Collections.Generic.IEnumerable<object> parameters, System.Collections.Generic.IList<string> exceptRooms = default, string namespace = "/");
static member CreateSendToNamespaceAction : string * seq<obj> * System.Collections.Generic.IList<string> * string -> Microsoft.Azure.WebJobs.Extensions.WebPubSubForSocketIO.SendToNamespaceAction
Public Shared Function CreateSendToNamespaceAction (eventName As String, parameters As IEnumerable(Of Object), Optional exceptRooms As IList(Of String) = Nothing, Optional namespace As String = "/") As SendToNamespaceAction

Parameters

eventName
String

Event name.

parameters
IEnumerable<Object>

SocketIO data.

exceptRooms
IList<String>

Except rooms

namespace
String

Target namespace

Returns

An instance of SendToNamespaceAction.

Applies to