ServiceUser Constructors

Definition

Overloads

ServiceUser()

Initializes a new instance of the ServiceUser class.

ServiceUser(IEnumerable<ClaimsIdentity>)

Initializes a new instance of the ServiceUser class from the specified identities.

ServiceUser(IIdentity)

Initializes a new instance of the ServiceUser class from the specified identity.

ServiceUser()

Initializes a new instance of the ServiceUser class.

public ServiceUser ();
Public Sub New ()

Applies to

ServiceUser(IEnumerable<ClaimsIdentity>)

Initializes a new instance of the ServiceUser class from the specified identities.

public ServiceUser (System.Collections.Generic.IEnumerable<System.Security.Claims.ClaimsIdentity> identities);
new Microsoft.WindowsAzure.Mobile.Service.Security.ServiceUser : seq<System.Security.Claims.ClaimsIdentity> -> Microsoft.WindowsAzure.Mobile.Service.Security.ServiceUser
Public Sub New (identities As IEnumerable(Of ClaimsIdentity))

Parameters

identities
IEnumerable<ClaimsIdentity>

The identities from which to initialize the new claims principal.

Applies to

ServiceUser(IIdentity)

Initializes a new instance of the ServiceUser class from the specified identity.

public ServiceUser (System.Security.Principal.IIdentity identity);
new Microsoft.WindowsAzure.Mobile.Service.Security.ServiceUser : System.Security.Principal.IIdentity -> Microsoft.WindowsAzure.Mobile.Service.Security.ServiceUser
Public Sub New (identity As IIdentity)

Parameters

identity
IIdentity

The identity from which to initialize the new claims principal.

Applies to