TriggerCallbackBody<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.
Inner body of the Connector Namespace trigger callback, containing the array of trigger items.
Deserialization is handled by Azure.Connectors.Sdk.TriggerCallbackBodyConverterFactory which accepts
both batch ({"value":[...]}) and single-item ({...item...}) JSON shapes.
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Connectors.Sdk.TriggerCallbackBodyConverterFactory))]
public class TriggerCallbackBody<T>
[<System.Text.Json.Serialization.JsonConverter(typeof(Azure.Connectors.Sdk.TriggerCallbackBodyConverterFactory))>]
type TriggerCallbackBody<'T> = class
Public Class TriggerCallbackBody(Of T)
Type Parameters
- T
The connector-specific trigger item type.
- Inheritance
-
TriggerCallbackBody<T>
- Attributes
Constructors
| Name | Description |
|---|---|
| TriggerCallbackBody<T>() | |
Properties
| Name | Description |
|---|---|
| Value |
The list of trigger items delivered by the connector trigger.
Contains all items regardless of whether the callback arrived in batch or single-item
shape. May be |