WorkerOptions.IncludeEmptyEntriesInMessagePayload Property
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.
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
Azure SDK for .NET