AttestationTokenValidationEventArgs Class

Definition

Represents the arguments used when asking the caller to validate an attestation token.

public class AttestationTokenValidationEventArgs : Azure.SyncAsyncEventArgs
type AttestationTokenValidationEventArgs = class
    inherit SyncAsyncEventArgs
Public Class AttestationTokenValidationEventArgs
Inherits SyncAsyncEventArgs
Inheritance
AttestationTokenValidationEventArgs

Properties

CancellationToken

Gets a cancellation token related to the original operation that raised the event. It's important for your handler to pass this token along to any asynchronous or long-running synchronous operations that take a token so cancellation (via something like

new CancellationTokenSource(TimeSpan.FromSeconds(10)).Token

for example) will correctly propagate.

(Inherited from SyncAsyncEventArgs)
IsRunningSynchronously

Gets a value indicating whether the event handler was invoked synchronously or asynchronously. Please see SyncAsyncEventHandler<T> for more details.

(Inherited from SyncAsyncEventArgs)
IsValid

Set by the event callback to "true" to indicate that the callback has validated the token, false otherwise.

Signer

Returns the signer of the token.

Token

Returns the token which has been validated.

Applies to