Click or drag to resize

SessionSetLoginMessage Method

Sets the login message. All null values will not be changed.

Namespace:  Koopman.CheckPoint
Assembly:  CheckPoint.NET (in CheckPoint.NET.dll) Version: 0.5.1
Syntax
C#
public Task<LoginMessageDetails> SetLoginMessage(
	string header = null,
	string message = null,
	Nullable<bool> showMessage = null,
	Nullable<bool> warning = null,
	CancellationToken cancellationToken = null
)
Request Example View Source

Parameters

header (Optional)
Type: SystemString
The header.
message (Optional)
Type: SystemString
The message.
showMessage (Optional)
Type: SystemNullableBoolean
Whether to show login message.
warning (Optional)
Type: SystemNullableBoolean
Add warning sign.
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation token.

Return Value

Type: TaskLoginMessageDetails
A task that represents the asynchronous operation. The task result contains the LoginMessageDetails
See Also