SecureRemotingValidateAuthenticationTokenDelegate Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.