Lifetime 构造函数

定义

初始化 Lifetime 类的新实例。

重载

Lifetime(DateTime, DateTime)

使用指定的创建和过期时间初始化 Lifetime 类的新实例。

Lifetime(Nullable<DateTime>, Nullable<DateTime>)

使用指定的创建和过期时间初始化 Lifetime 类的新实例。

Lifetime(DateTime, DateTime)

使用指定的创建和过期时间初始化 Lifetime 类的新实例。

public:
 Lifetime(DateTime created, DateTime expires);
public Lifetime (DateTime created, DateTime expires);
new System.IdentityModel.Protocols.WSTrust.Lifetime : DateTime * DateTime -> System.IdentityModel.Protocols.WSTrust.Lifetime
Public Sub New (created As DateTime, expires As DateTime)

参数

created
DateTime

DateTime 表示 UTC 中标记的创建时间。

expires
DateTime

一个 DateTime,表示 UTC 中令牌的过期时间。

例外

created 指定的时间将 expires指定的时间之前发生。

适用于

Lifetime(Nullable<DateTime>, Nullable<DateTime>)

使用指定的创建和过期时间初始化 Lifetime 类的新实例。

public:
 Lifetime(Nullable<DateTime> created, Nullable<DateTime> expires);
public Lifetime (DateTime? created, DateTime? expires);
new System.IdentityModel.Protocols.WSTrust.Lifetime : Nullable<DateTime> * Nullable<DateTime> -> System.IdentityModel.Protocols.WSTrust.Lifetime
Public Sub New (created As Nullable(Of DateTime), expires As Nullable(Of DateTime))

参数

created
Nullable<DateTime>

DateTime 指定 UTC 中标记的创建时间。 可以为 null

expires
Nullable<DateTime>

DateTime 指定 UTC 中标记过期的时间。 可以为 null

例外

created 指定的时间将 expires指定的时间之前发生。

适用于