UpnEndpointIdentity 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.
Initializes a new instance of the UpnEndpointIdentity class.
Overloads
UpnEndpointIdentity(Claim) |
Initializes a new instance of the UpnEndpointIdentity class from a claim. |
UpnEndpointIdentity(String) |
Initializes a new instance of the UpnEndpointIdentity class. |
UpnEndpointIdentity(Claim)
Initializes a new instance of the UpnEndpointIdentity class from a claim.
public:
UpnEndpointIdentity(System::IdentityModel::Claims::Claim ^ identity);
public UpnEndpointIdentity (System.IdentityModel.Claims.Claim identity);
new System.ServiceModel.UpnEndpointIdentity : System.IdentityModel.Claims.Claim -> System.ServiceModel.UpnEndpointIdentity
Public Sub New (identity As Claim)
Parameters
Exceptions
identity
is null
.
The claim type of identity
is not Upn.
Remarks
This method calls Initialize using identity
as the input parameter.
Applies to
UpnEndpointIdentity(String)
- Source:
- UpnEndpointIdentity.cs
- Source:
- UpnEndpointIdentity.cs
- Source:
- UpnEndpointIdentity.cs
Initializes a new instance of the UpnEndpointIdentity class.
public:
UpnEndpointIdentity(System::String ^ upnName);
public UpnEndpointIdentity (string upnName);
new System.ServiceModel.UpnEndpointIdentity : string -> System.ServiceModel.UpnEndpointIdentity
Public Sub New (upnName As String)
Parameters
- upnName
- String
The UPN name.
Exceptions
upnName
is null
.
The claim type of upnName
is not Upn.
Remarks
This method creates a claim from upnName
and then calls Initialize using that claim as the input parameter.