Compartir a través de


ClientNotADomainMemberException Constructors

Definition

Overloads

ClientNotADomainMemberException()

Initializes a new instance of the ClientNotADomainMemberException class.

ClientNotADomainMemberException(String)

Initializes a new instance of the ClientNotADomainMemberException class.

ClientNotADomainMemberException(Guid, Guid)

Initializes a new instance of the ClientNotADomainMemberException class.

ClientNotADomainMemberException(String, Exception)

Initializes a new instance of the ClientNotADomainMemberException class.

ClientNotADomainMemberException(Guid, Guid, Uri)

Initializes a new instance of the ClientNotADomainMemberException class.

ClientNotADomainMemberException(Guid, Guid, Uri, String)

Initializes a new instance of the ClientNotADomainMemberException class.

ClientNotADomainMemberException()

Initializes a new instance of the ClientNotADomainMemberException class.

public ClientNotADomainMemberException ();
Public Sub New ()

Applies to

ClientNotADomainMemberException(String)

Initializes a new instance of the ClientNotADomainMemberException class.

public ClientNotADomainMemberException (string message);
new Microsoft.Media.Drm.ClientNotADomainMemberException : string -> Microsoft.Media.Drm.ClientNotADomainMemberException
Public Sub New (message As String)

Parameters

message
String

Text message associated with this exception. Note that the message is not sent back to the client.

Applies to

ClientNotADomainMemberException(Guid, Guid)

Initializes a new instance of the ClientNotADomainMemberException class.

public ClientNotADomainMemberException (Guid serviceId, Guid accountId);
new Microsoft.Media.Drm.ClientNotADomainMemberException : Guid * Guid -> Microsoft.Media.Drm.ClientNotADomainMemberException
Public Sub New (serviceId As Guid, accountId As Guid)

Parameters

serviceId
Guid

ServiceId of the domain that the client is no longer a member of.

accountId
Guid

AccountId of the domain that the client is no longer a member of.

Applies to

ClientNotADomainMemberException(String, Exception)

Initializes a new instance of the ClientNotADomainMemberException class.

public ClientNotADomainMemberException (string message, Exception inner);
new Microsoft.Media.Drm.ClientNotADomainMemberException : string * Exception -> Microsoft.Media.Drm.ClientNotADomainMemberException
Public Sub New (message As String, inner As Exception)

Parameters

message
String

Text message associated with this exception. Note that the message is not sent back to the client.

inner
Exception

The exception that is the cause of the current exception. If this parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.

Applies to

ClientNotADomainMemberException(Guid, Guid, Uri)

Initializes a new instance of the ClientNotADomainMemberException class.

public ClientNotADomainMemberException (Guid serviceId, Guid accountId, Uri url);
new Microsoft.Media.Drm.ClientNotADomainMemberException : Guid * Guid * Uri -> Microsoft.Media.Drm.ClientNotADomainMemberException
Public Sub New (serviceId As Guid, accountId As Guid, url As Uri)

Parameters

serviceId
Guid

ServiceId of the domain that the client is no longer a member of.

accountId
Guid

AccountId of the domain that the client is no longer a member of.

url
Uri

The Uri of the domain controller if different from the current server.

Applies to

ClientNotADomainMemberException(Guid, Guid, Uri, String)

Initializes a new instance of the ClientNotADomainMemberException class.

public ClientNotADomainMemberException (Guid serviceId, Guid accountId, Uri url, string customData);
new Microsoft.Media.Drm.ClientNotADomainMemberException : Guid * Guid * Uri * string -> Microsoft.Media.Drm.ClientNotADomainMemberException
Public Sub New (serviceId As Guid, accountId As Guid, url As Uri, customData As String)

Parameters

serviceId
Guid

ServiceId of the domain that the client is no longer a member of.

accountId
Guid

AccountId of the domain that the client is no longer a member of.

url
Uri

The Uri of the domain controller if different from the current server.

customData
String

Service specific data that should be returned to the client along with the exception.

Applies to