TriggerCallbackPayload<T> Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Envelope type for Connector Namespace trigger callback payloads. The Connector Namespace delivers callbacks in two shapes depending on the trigger configuration's splitOn setting:
- Batch (splitOn disabled):
{"body":{"value":[...items...]}} - Single-item (splitOn enabled):
{"body":{...item...}}
public class TriggerCallbackPayload<T>
type TriggerCallbackPayload<'T> = class
Public Class TriggerCallbackPayload(Of T)
Type Parameters
- T
The connector-specific trigger item type (e.g., GraphClientReceiveMessage for Office 365 email triggers).
- Inheritance
-
TriggerCallbackPayload<T>
- Derived
-
Azure.Connectors.Sdk.Servicebus.Models.ServicebusOnGetNewMessagesFromQueueWithPeekLockTriggerPayload
Constructors
| Name | Description |
|---|---|
| TriggerCallbackPayload<T>() | |
Properties
| Name | Description |
|---|---|
| Body |
The body envelope containing the trigger items. |