次の方法で共有


QueueTriggerAttribute クラス

定義

パラメーターを Azure Queue メッセージにバインドするために使用される属性。この属性により、メッセージがエンキューされたときに関数が実行されます。

[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

注釈

メソッド パラメーターの型には、次のいずれかを指定できます。

既定では、キューから受信したメッセージは Base64 でエンコードされ、関数を呼び出す前にデコードされます。 この動作は、 を設定 MessageEncodingすることで変更できます。 たとえば、base64 エンコード/デコードを実行しないAzure Functionsを構成するには、host.json で次を指定します。

"extensions": {
  "queues": {
    "messageEncoding": "none"
  }
}

コンストラクター

QueueTriggerAttribute(String)

QueueTriggerAttribute クラスの新しいインスタンスを初期化します。

プロパティ

Connection

Azure Storage 接続文字列を含むアプリ設定名を取得または設定します。

QueueName

バインド先のキューの名前を取得します。

適用対象