共用方式為


WebPubSubTriggerAttribute Constructors

Definition

Overloads

WebPubSubTriggerAttribute(WebPubSubEventType, String)

Attribute used to bind a parameter to an Azure Web PubSub, when an request is from Azure Web PubSub service.

WebPubSubTriggerAttribute(WebPubSubEventType, String, String[])

Attribute used to bind a parameter to an Azure Web PubSub, when an request is from Azure Web PubSub service.

WebPubSubTriggerAttribute(String, WebPubSubEventType, String)

Attribute used to bind a parameter to an Azure Web PubSub, when an request is from Azure Web PubSub service.

WebPubSubTriggerAttribute(String, WebPubSubEventType, String, String[])

Attribute used to bind a parameter to an Azure Web PubSub, when an request is from Azure Web PubSub service.

WebPubSubTriggerAttribute(WebPubSubEventType, String)

Source:
WebPubSubTriggerAttribute.cs

Attribute used to bind a parameter to an Azure Web PubSub, when an request is from Azure Web PubSub service.

public WebPubSubTriggerAttribute (Microsoft.Azure.WebPubSub.Common.WebPubSubEventType eventType, string eventName);
new Microsoft.Azure.WebJobs.Extensions.WebPubSub.WebPubSubTriggerAttribute : Microsoft.Azure.WebPubSub.Common.WebPubSubEventType * string -> Microsoft.Azure.WebJobs.Extensions.WebPubSub.WebPubSubTriggerAttribute
Public Sub New (eventType As WebPubSubEventType, eventName As String)

Parameters

eventType
WebPubSubEventType

Target event name of the request.

eventName
String

Target event type of the request.

Applies to

WebPubSubTriggerAttribute(WebPubSubEventType, String, String[])

Source:
WebPubSubTriggerAttribute.cs

Attribute used to bind a parameter to an Azure Web PubSub, when an request is from Azure Web PubSub service.

public WebPubSubTriggerAttribute (Microsoft.Azure.WebPubSub.Common.WebPubSubEventType eventType, string eventName, params string[] connections);
new Microsoft.Azure.WebJobs.Extensions.WebPubSub.WebPubSubTriggerAttribute : Microsoft.Azure.WebPubSub.Common.WebPubSubEventType * string * string[] -> Microsoft.Azure.WebJobs.Extensions.WebPubSub.WebPubSubTriggerAttribute
Public Sub New (eventType As WebPubSubEventType, eventName As String, ParamArray connections As String())

Parameters

eventType
WebPubSubEventType

Target event name of the request.

eventName
String

Target event type of the request.

connections
String[]

Connection strings of allowed upstreams for signature checks.

Applies to

WebPubSubTriggerAttribute(String, WebPubSubEventType, String)

Source:
WebPubSubTriggerAttribute.cs

Attribute used to bind a parameter to an Azure Web PubSub, when an request is from Azure Web PubSub service.

public WebPubSubTriggerAttribute (string hub, Microsoft.Azure.WebPubSub.Common.WebPubSubEventType eventType, string eventName);
new Microsoft.Azure.WebJobs.Extensions.WebPubSub.WebPubSubTriggerAttribute : string * Microsoft.Azure.WebPubSub.Common.WebPubSubEventType * string -> Microsoft.Azure.WebJobs.Extensions.WebPubSub.WebPubSubTriggerAttribute
Public Sub New (hub As String, eventType As WebPubSubEventType, eventName As String)

Parameters

hub
String

Target hub name of the request.

eventType
WebPubSubEventType

Target event name of the request.

eventName
String

Target event type of the request.

Applies to

WebPubSubTriggerAttribute(String, WebPubSubEventType, String, String[])

Source:
WebPubSubTriggerAttribute.cs

Attribute used to bind a parameter to an Azure Web PubSub, when an request is from Azure Web PubSub service.

public WebPubSubTriggerAttribute (string hub, Microsoft.Azure.WebPubSub.Common.WebPubSubEventType eventType, string eventName, params string[] connections);
new Microsoft.Azure.WebJobs.Extensions.WebPubSub.WebPubSubTriggerAttribute : string * Microsoft.Azure.WebPubSub.Common.WebPubSubEventType * string * string[] -> Microsoft.Azure.WebJobs.Extensions.WebPubSub.WebPubSubTriggerAttribute
Public Sub New (hub As String, eventType As WebPubSubEventType, eventName As String, ParamArray connections As String())

Parameters

hub
String

Target hub name of the request.

eventType
WebPubSubEventType

Target event name of the request.

eventName
String

Target event type of the request.

connections
String[]

Connection strings of allowed upstreams for signature checks.

Applies to