SamlConditions 构造函数

定义

初始化 SamlConditions 类的新实例。

重载

SamlConditions()

初始化 SamlConditions 类的新实例。

SamlConditions(DateTime, DateTime)

使用 SAML 断言有效的指定时间范围来初始化 SamlConditions 类的新实例。

SamlConditions(DateTime, DateTime, IEnumerable<SamlCondition>)

使用 SAML 断言有效的指定时间范围和条件来初始化 SamlConditions 类的新实例。

SamlConditions()

初始化 SamlConditions 类的新实例。

public:
 SamlConditions();
public SamlConditions ();
Public Sub New ()

注解

此构造函数将 IsReadOnly 属性初始化为 false

适用于

SamlConditions(DateTime, DateTime)

使用 SAML 断言有效的指定时间范围来初始化 SamlConditions 类的新实例。

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

参数

notBefore
DateTime

一个 DateTime,指定 SAML 断言有效的最初时刻。 设置 NotBefore 属性。

notOnOrAfter
DateTime

一个 DateTime,指定 SAML 断言过期的时刻。 设置 NotOnOrAfter 属性。

注解

NotBeforeNotOnOrAfter 属性以协调世界时 (UTC) 存储。

适用于

SamlConditions(DateTime, DateTime, IEnumerable<SamlCondition>)

使用 SAML 断言有效的指定时间范围和条件来初始化 SamlConditions 类的新实例。

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

参数

notBefore
DateTime

一个 DateTime,指定 SAML 断言有效的最初时刻。 设置 NotBefore 属性。

notOnOrAfter
DateTime

一个 DateTime,指定 SAML 断言过期的时刻。 设置 NotOnOrAfter 属性。

conditions
IEnumerable<SamlCondition>

一个类型为 IEnumerable<T>SamlCondition,它指定了 SAML 断言的接收方在评估断言有效性时必须考虑的条件集。 设置 Conditions 属性。

例外

conditions 包含一个为 null 的成员。

注解

NotBeforeNotOnOrAfter 属性以协调世界时 (UTC) 存储。

适用于