Udostępnij za pośrednictwem


SocketIOTriggerAttribute Constructors

Definition

Overloads

SocketIOTriggerAttribute(String, String)

Attribute used to bind a parameter to an Web PubSub for Socket.IO, when an request is from the service.

SocketIOTriggerAttribute(String, String, String)

Attribute used to bind a parameter to an Web PubSub for Socket.IO, when an request is from the service.

SocketIOTriggerAttribute(String, String, String[])

Attribute used to bind a parameter to an Web PubSub for Socket.IO, when an request is from the service.

SocketIOTriggerAttribute(String, String, String, String[])

Attribute used to bind a parameter to an Web PubSub for Socket.IO, when an request is from the service.

SocketIOTriggerAttribute(String, String)

Source:
SocketIOTriggerAttribute.cs

Attribute used to bind a parameter to an Web PubSub for Socket.IO, when an request is from the service.

public SocketIOTriggerAttribute (string hub, string eventName);
new Microsoft.Azure.WebJobs.Extensions.WebPubSubForSocketIO.SocketIOTriggerAttribute : string * string -> Microsoft.Azure.WebJobs.Extensions.WebPubSubForSocketIO.SocketIOTriggerAttribute
Public Sub New (hub As String, eventName As String)

Parameters

hub
String

Target hub name of the request.

eventName
String

Target event type of the request.

Applies to

SocketIOTriggerAttribute(String, String, String)

Source:
SocketIOTriggerAttribute.cs

Attribute used to bind a parameter to an Web PubSub for Socket.IO, when an request is from the service.

public SocketIOTriggerAttribute (string hub, string eventName, string namespace);
new Microsoft.Azure.WebJobs.Extensions.WebPubSubForSocketIO.SocketIOTriggerAttribute : string * string * string -> Microsoft.Azure.WebJobs.Extensions.WebPubSubForSocketIO.SocketIOTriggerAttribute
Public Sub New (hub As String, eventName As String, namespace As String)

Parameters

hub
String

Target hub name of the request.

eventName
String

Target event type of the request.

namespace
String

Target namespace.

Applies to

SocketIOTriggerAttribute(String, String, String[])

Source:
SocketIOTriggerAttribute.cs

Attribute used to bind a parameter to an Web PubSub for Socket.IO, when an request is from the service.

public SocketIOTriggerAttribute (string hub, string eventName, string[] parameterNames);
new Microsoft.Azure.WebJobs.Extensions.WebPubSubForSocketIO.SocketIOTriggerAttribute : string * string * string[] -> Microsoft.Azure.WebJobs.Extensions.WebPubSubForSocketIO.SocketIOTriggerAttribute
Public Sub New (hub As String, eventName As String, parameterNames As String())

Parameters

hub
String

Target hub name of the request.

eventName
String

Target event type of the request.

parameterNames
String[]

The parameter names.

Applies to

SocketIOTriggerAttribute(String, String, String, String[])

Source:
SocketIOTriggerAttribute.cs

Attribute used to bind a parameter to an Web PubSub for Socket.IO, when an request is from the service.

public SocketIOTriggerAttribute (string hub, string eventName, string namespace, string[] parameterNames);
new Microsoft.Azure.WebJobs.Extensions.WebPubSubForSocketIO.SocketIOTriggerAttribute : string * string * string * string[] -> Microsoft.Azure.WebJobs.Extensions.WebPubSubForSocketIO.SocketIOTriggerAttribute
Public Sub New (hub As String, eventName As String, namespace As String, parameterNames As String())

Parameters

hub
String

Target hub name of the request.

eventName
String

Target event type of the request.

namespace
String

Target namespace.

parameterNames
String[]

The parameter names.

Applies to