Share via


SamlConditions Constructors

Definition

Overloads

SamlConditions(DateTime, DateTime)

Initializes a new instance of SamlConditions.

SamlConditions(DateTime, DateTime, IEnumerable<SamlCondition>)

Initializes a new instance of SamlConditions.

SamlConditions(DateTime, DateTime)

Initializes a new instance of SamlConditions.

public SamlConditions (DateTime notBefore, DateTime notOnOrAfter);
new Microsoft.IdentityModel.Tokens.Saml.SamlConditions : DateTime * DateTime -> Microsoft.IdentityModel.Tokens.Saml.SamlConditions
Public Sub New (notBefore As DateTime, notOnOrAfter As DateTime)

Parameters

notBefore
DateTime

The earliest time instant at which the assertion is valid

notOnOrAfter
DateTime

The time instant at which the assertion has expired.

Applies to

SamlConditions(DateTime, DateTime, IEnumerable<SamlCondition>)

Initializes a new instance of SamlConditions.

public SamlConditions (DateTime notBefore, DateTime notOnOrAfter, System.Collections.Generic.IEnumerable<Microsoft.IdentityModel.Tokens.Saml.SamlCondition> conditions);
new Microsoft.IdentityModel.Tokens.Saml.SamlConditions : DateTime * DateTime * seq<Microsoft.IdentityModel.Tokens.Saml.SamlCondition> -> Microsoft.IdentityModel.Tokens.Saml.SamlConditions
Public Sub New (notBefore As DateTime, notOnOrAfter As DateTime, conditions As IEnumerable(Of SamlCondition))

Parameters

notBefore
DateTime

The earliest time instant at which the assertion is valid

notOnOrAfter
DateTime

The time instant at which the assertion has expired.

Applies to