GenericMeasure ApplyPatchesAsync Method Qlik Sense .NET SDK - API Reference

Applies a patch to the properties of an object. Allows an update to some of the properties.

It is possible to apply a patch to the properties of a generic object, that is not persistent. Such a patch is called a soft patch. In that case, the result of the operation on the properties (add, remove or delete) is not shown when doing GetProperties and only a GetLayout call shows the result of the operation. Properties that are not persistent are called soft properties. Once the session is over, soft properties are cleared.

Soft properties apply only to generic objects.Applying a patch takes less time than resetting all the properties.

Namespace: Qlik.Engine
Assembly: Qlik.Engine (in Qlik.Engine.dll) Version: 1.0.1.0 (1.0.1.0)
Syntax

public Task ApplyPatchesAsync(
	IEnumerable<NxPatch> patches,
	string userHandle = null
)

Parameters

patches
Type: OnlineSystem.Collections.Generic IEnumerable NxPatch 
Array of patches.
userHandle (Optional)
Type: OnlineSystem String
Handle identifier

Return Value

Type: OnlineTask

Implements

IGenericMeasure ApplyPatchesAsync(IEnumerable NxPatch , String)
See Also