Share via


IDomainHandler.HandleJoinDomainAsync(IJoinDomainChallenge) Method

Definition

Service implemented method handling domain join requests.

public System.Threading.Tasks.Task<Microsoft.Media.Drm.JoinDomainResponse> HandleJoinDomainAsync (Microsoft.Media.Drm.IJoinDomainChallenge data);
abstract member HandleJoinDomainAsync : Microsoft.Media.Drm.IJoinDomainChallenge -> System.Threading.Tasks.Task<Microsoft.Media.Drm.JoinDomainResponse>
Public Function HandleJoinDomainAsync (data As IJoinDomainChallenge) As Task(Of JoinDomainResponse)

Parameters

data
IJoinDomainChallenge

Parsed IJoinDomainChallenge received from the client.

Returns

The JoinDomainResponse to be returned to the client.

Remarks

The service should authenticate the client then examine the incomding IJoinDomainChallenge to make decisions about domain certificate issuance. If a domain certificate is to be issued, service code creates and returns a JoinDomainResponse containing the domain certificate, key pair, client identifier, etc.

Applies to

See also