SecureRemotingValidateAuthenticationTokenDelegate Delegate

Definition

The callback that needs to be implemented by remote app (Server) in secure listen mode to validate remote player's (Client) authentication token.

public delegate bool SecureRemotingValidateAuthenticationTokenDelegate(string authenticationTokenToCheck);
type SecureRemotingValidateAuthenticationTokenDelegate = delegate of string -> bool
Public Delegate Function SecureRemotingValidateAuthenticationTokenDelegate(authenticationTokenToCheck As String) As Boolean 

Parameters

authenticationTokenToCheck
String

shared secret between the client and server. Used to validate the remote player to establish a secure connection.

Return Value

Returns true if the token validation succeeds and false if not.

Applies to