WorkerOptions.IncludeEmptyEntriesInMessagePayload Property

Definition

Gets or sets a value that determines if empty entries should be included in the function trigger message payload. For example, if a set of entries were sent to a messaging service such as Service Bus or Event Hub and your function app has a Service bus trigger or Event hub trigger, only the non-empty entries from the payload will be sent to the function code as trigger data when this setting value is false. When it is true, All entries will be sent to the function code as it is. Default value for this setting is false.

public bool IncludeEmptyEntriesInMessagePayload { get; set; }
member this.IncludeEmptyEntriesInMessagePayload : bool with get, set
Public Property IncludeEmptyEntriesInMessagePayload As Boolean

Property Value

Applies to