Click or drag to resize

HttpSessionPostAsync Method

Async posts the specified command with the JSON data supplied. This can be used to send any commands this .NET package doesn't implement yet.

Namespace:  Koopman.CheckPoint.Common
Assembly:  CheckPoint.NET (in CheckPoint.NET.dll) Version: 0.5.1
Syntax
C#
public Task<string> PostAsync(
	string command,
	string json,
	CancellationToken cancellationToken = null
)
Request Example View Source

Parameters

command
Type: SystemString
The command.
json
Type: SystemString
The json.
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation token.

Return Value

Type: TaskString
A task that represents the asynchronous operation. The task result contains the JSON Response Data
See Also