Saml2SubjectConfirmation 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 Saml2SubjectConfirmation class.
Overloads
Saml2SubjectConfirmation(Uri) |
Initializes a new instance of the Saml2SubjectConfirmation class with the specified confirmation method. |
Saml2SubjectConfirmation(Uri, Saml2SubjectConfirmationData) |
Initializes a new instance of the Saml2SubjectConfirmation class with the specified confirmation method and additional confirmation information. |
Saml2SubjectConfirmation(Uri)
Initializes a new instance of the Saml2SubjectConfirmation class with the specified confirmation method.
public:
Saml2SubjectConfirmation(Uri ^ method);
public Saml2SubjectConfirmation (Uri method);
new System.IdentityModel.Tokens.Saml2SubjectConfirmation : Uri -> System.IdentityModel.Tokens.Saml2SubjectConfirmation
Public Sub New (method As Uri)
Parameters
Exceptions
method
is null
.
method
is not an absolute URI.
Remarks
The SubjectConfirmationData property is initialized to null
.
Applies to
Saml2SubjectConfirmation(Uri, Saml2SubjectConfirmationData)
Initializes a new instance of the Saml2SubjectConfirmation class with the specified confirmation method and additional confirmation information.
public:
Saml2SubjectConfirmation(Uri ^ method, System::IdentityModel::Tokens::Saml2SubjectConfirmationData ^ data);
public Saml2SubjectConfirmation (Uri method, System.IdentityModel.Tokens.Saml2SubjectConfirmationData data);
new System.IdentityModel.Tokens.Saml2SubjectConfirmation : Uri * System.IdentityModel.Tokens.Saml2SubjectConfirmationData -> System.IdentityModel.Tokens.Saml2SubjectConfirmation
Public Sub New (method As Uri, data As Saml2SubjectConfirmationData)
Parameters
The Saml2SubjectConfirmationData that contains the additional confirmation information.
Exceptions
method
is null
.
method
is not an absolute URI.