Share via


X509CRLSelector.DateAndTime Property

Definition

Returns the dateAndTime criterion. -or- Sets the dateAndTime criterion.

public virtual Java.Util.Date? DateAndTime { [Android.Runtime.Register("getDateAndTime", "()Ljava/util/Date;", "GetGetDateAndTimeHandler")] get; [Android.Runtime.Register("setDateAndTime", "(Ljava/util/Date;)V", "GetSetDateAndTime_Ljava_util_Date_Handler")] set; }
[<get: Android.Runtime.Register("getDateAndTime", "()Ljava/util/Date;", "GetGetDateAndTimeHandler")>]
[<set: Android.Runtime.Register("setDateAndTime", "(Ljava/util/Date;)V", "GetSetDateAndTime_Ljava_util_Date_Handler")>]
member this.DateAndTime : Java.Util.Date with get, set

Property Value

the Date to match against (or null)

Attributes

Remarks

Property getter documentation:

Returns the dateAndTime criterion. The specified date must be equal to or later than the value of the thisUpdate component of the X509CRL and earlier than the value of the nextUpdate component. There is no match if the X509CRL does not contain a nextUpdate component. If null, no dateAndTime check will be done.

Note that the Date returned is cloned to protect against subsequent modifications.

Java documentation for java.security.cert.X509CRLSelector.getDateAndTime().

Property setter documentation:

Sets the dateAndTime criterion. The specified date must be equal to or later than the value of the thisUpdate component of the X509CRL and earlier than the value of the nextUpdate component. There is no match if the X509CRL does not contain a nextUpdate component. If null, no dateAndTime check will be done.

Note that the Date supplied here is cloned to protect against subsequent modifications.

Java documentation for java.security.cert.X509CRLSelector.setDateAndTime(java.util.Date).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to