Saml2AttributeStatement 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
Saml2AttributeStatement() |
Creates an instance of Saml2AttributeStatement. |
Saml2AttributeStatement(Saml2Attribute) |
Creates an instance of Saml2AttributeStatement. |
Saml2AttributeStatement(IEnumerable<Saml2Attribute>) |
Creates an instance of Saml2AttributeStatement. |
Saml2AttributeStatement()
Creates an instance of Saml2AttributeStatement.
public Saml2AttributeStatement ();
Public Sub New ()
Applies to
Saml2AttributeStatement(Saml2Attribute)
Creates an instance of Saml2AttributeStatement.
public Saml2AttributeStatement (Microsoft.IdentityModel.Tokens.Saml2.Saml2Attribute attribute);
new Microsoft.IdentityModel.Tokens.Saml2.Saml2AttributeStatement : Microsoft.IdentityModel.Tokens.Saml2.Saml2Attribute -> Microsoft.IdentityModel.Tokens.Saml2.Saml2AttributeStatement
Public Sub New (attribute As Saml2Attribute)
Parameters
- attribute
- Saml2Attribute
The Saml2Attribute contained in this statement.
Exceptions
if attribute
is null.
Applies to
Saml2AttributeStatement(IEnumerable<Saml2Attribute>)
Creates an instance of Saml2AttributeStatement.
public Saml2AttributeStatement (System.Collections.Generic.IEnumerable<Microsoft.IdentityModel.Tokens.Saml2.Saml2Attribute> attributes);
new Microsoft.IdentityModel.Tokens.Saml2.Saml2AttributeStatement : seq<Microsoft.IdentityModel.Tokens.Saml2.Saml2Attribute> -> Microsoft.IdentityModel.Tokens.Saml2.Saml2AttributeStatement
Public Sub New (attributes As IEnumerable(Of Saml2Attribute))
Parameters
- attributes
- IEnumerable<Saml2Attribute>
The collection of Saml2Attribute elements contained in this statement.
Exceptions
if attributes
is null.