你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

WebPubSubTriggerAttribute 构造函数

定义

重载

WebPubSubTriggerAttribute(WebPubSubEventType, String)

当请求来自 Azure Web PubSub 服务时,用于将参数绑定到 Azure Web PubSub 的属性。

WebPubSubTriggerAttribute(WebPubSubEventType, String, String[])

当请求来自 Azure Web PubSub 服务时,用于将参数绑定到 Azure Web PubSub 的属性。

WebPubSubTriggerAttribute(String, WebPubSubEventType, String)

当请求来自 Azure Web PubSub 服务时,用于将参数绑定到 Azure Web PubSub 的属性。

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

当请求来自 Azure Web PubSub 服务时,用于将参数绑定到 Azure Web PubSub 的属性。

WebPubSubTriggerAttribute(WebPubSubEventType, String)

Source:
WebPubSubTriggerAttribute.cs

当请求来自 Azure Web PubSub 服务时,用于将参数绑定到 Azure Web PubSub 的属性。

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)

参数

eventType
WebPubSubEventType

请求的目标事件名称。

eventName
String

请求的目标事件类型。

适用于

WebPubSubTriggerAttribute(WebPubSubEventType, String, String[])

Source:
WebPubSubTriggerAttribute.cs

当请求来自 Azure Web PubSub 服务时,用于将参数绑定到 Azure Web PubSub 的属性。

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())

参数

eventType
WebPubSubEventType

请求的目标事件名称。

eventName
String

请求的目标事件类型。

connections
String[]

允许用于签名检查的上游的连接字符串。

适用于

WebPubSubTriggerAttribute(String, WebPubSubEventType, String)

Source:
WebPubSubTriggerAttribute.cs

当请求来自 Azure Web PubSub 服务时,用于将参数绑定到 Azure Web PubSub 的属性。

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)

参数

hub
String

请求的目标中心名称。

eventType
WebPubSubEventType

请求的目标事件名称。

eventName
String

请求的目标事件类型。

适用于

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

Source:
WebPubSubTriggerAttribute.cs

当请求来自 Azure Web PubSub 服务时,用于将参数绑定到 Azure Web PubSub 的属性。

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())

参数

hub
String

请求的目标中心名称。

eventType
WebPubSubEventType

请求的目标事件名称。

eventName
String

请求的目标事件类型。

connections
String[]

允许用于签名检查的上游的连接字符串。

适用于