你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
QueueTriggerAttribute 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
用于将参数绑定到 Azure 队列消息的属性,导致函数在消息排队时运行。
[Microsoft.Azure.WebJobs.ConnectionProvider(typeof(Microsoft.Azure.WebJobs.StorageAccountAttribute))]
[Microsoft.Azure.WebJobs.Description.Binding]
[System.AttributeUsage(System.AttributeTargets.Parameter)]
public sealed class QueueTriggerAttribute : Attribute, Microsoft.Azure.WebJobs.IConnectionProvider
[<Microsoft.Azure.WebJobs.ConnectionProvider(typeof(Microsoft.Azure.WebJobs.StorageAccountAttribute))>]
[<Microsoft.Azure.WebJobs.Description.Binding>]
[<System.AttributeUsage(System.AttributeTargets.Parameter)>]
type QueueTriggerAttribute = class
inherit Attribute
interface IConnectionProvider
Public NotInheritable Class QueueTriggerAttribute
Inherits Attribute
Implements IConnectionProvider
- 继承
-
QueueTriggerAttribute
- 属性
-
Microsoft.Azure.WebJobs.ConnectionProviderAttribute Microsoft.Azure.WebJobs.Description.BindingAttribute AttributeUsageAttribute
- 实现
-
Microsoft.Azure.WebJobs.IConnectionProvider
注解
方法参数类型可以是以下类型之一:
- QueueMessage
- String
- byte[]
- BinaryData
- 用户定义类型 (序列化为 JSON)
默认情况下,从队列接收的消息应采用 Base64 编码,并在调用函数之前解码。 可以通过设置 MessageEncoding来更改此行为。 例如,若要将 Azure Functions 配置为不执行 base64 编码/解码,请在 host.json 中指定以下内容。
"extensions": {
"queues": {
"messageEncoding": "none"
}
}
构造函数
QueueTriggerAttribute(String) |
初始化 QueueTriggerAttribute 类的新实例。 |
属性
Connection |
获取或设置包含 Azure 存储连接字符串的应用设置名称。 |
QueueName |
获取要绑定到的队列的名称。 |