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