Click or drag to resize

SessionFindObjects Method

Finds objects that match filter.

Namespace:  Koopman.CheckPoint
Assembly:  CheckPoint.NET (in CheckPoint.NET.dll) Version: 0.5.1
Syntax
C#
public Task<NetworkObjectsPagingResults<IObjectSummary>> FindObjects(
	string filter = null,
	string type = null,
	bool ipOnly = false,
	DetailLevels detailLevel = DetailLevels.Standard,
	int limit = 50,
	int offset = 0,
	IOrder order = null,
	bool showMembership = true,
	CancellationToken cancellationToken = null
)
Request Example View Source

Parameters

filter (Optional)
Type: SystemString
The filter.
type (Optional)
Type: SystemString
The object type.
ipOnly (Optional)
Type: SystemBoolean
if set to true will search objects by their IP address only, without involving the textual search.
detailLevel (Optional)
Type: Koopman.CheckPointDetailLevels
The detail level.
limit (Optional)
Type: SystemInt32
The limit.
offset (Optional)
Type: SystemInt32
The offset.
order (Optional)
Type: Koopman.CheckPoint.CommonIOrder
The order.
showMembership (Optional)
Type: SystemBoolean
Indicates whether to calculate and populate "groups" field for every object in reply.
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation token.

Return Value

Type: TaskNetworkObjectsPagingResultsIObjectSummary
A task that represents the asynchronous operation. The task result contains the NetworkObjectsPagingResults of IObjectSummary
See Also