CachingChatClient.CoalesceStreamingUpdates 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 indicating whether to coalesce streaming updates.
public:
property bool CoalesceStreamingUpdates { bool get(); void set(bool value); };
public bool CoalesceStreamingUpdates { get; set; }
member this.CoalesceStreamingUpdates : bool with get, set
Public Property CoalesceStreamingUpdates As Boolean
Property Value
Remarks
When true
, the client will attempt to coalesce contiguous streaming updates into a single update, in order to reduce the number of individual items that are yielded on subsequent enumerations of the cached data. When false
, the updates are kept unaltered.
The default is true
.