Lifetime 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 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
指定的时间将 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
指定的时间将 expires
指定的时间之前发生。