ServiceUser Constructors
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.
Overloads
ServiceUser() |
Initializes a new instance of the ServiceUser class. |
ServiceUser(IEnumerable<ClaimsIdentity>) |
Initializes a new instance of the ServiceUser class from the specified |
ServiceUser(IIdentity) |
Initializes a new instance of the ServiceUser class from the specified |
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
Azure SDK for .NET