Click or drag to resize

JsonExportAddAsync Method (IObjectSummary, Int32)

Adds the specified object to the export database if it not already included. Will also include any related objects to this object like groups. Calling this will also automatically cause a reload of this object if, object not already in export database and it doesn't already contain all the data for export.

Namespace:  Koopman.CheckPoint.Common
Assembly:  CheckPoint.NET (in CheckPoint.NET.dll) Version: 0.5.1
Syntax
C#
public Task AddAsync(
	IObjectSummary objectSummary,
	int maxDepth = 2147483647
)
Request Example View Source

Parameters

objectSummary
Type: Koopman.CheckPointIObjectSummary
The object to export.
maxDepth (Optional)
Type: SystemInt32
The maximum depth of finding related objects. A value of 0 or less will just add this object and no related objects.

Return Value

Type: Task
A task that represents the asynchronous operation.
See Also