Timestamp(Date, CertPath) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Constructs a Timestamp.
[Android.Runtime.Register(".ctor", "(Ljava/util/Date;Ljava/security/cert/CertPath;)V", "")]
public Timestamp (Java.Util.Date? timestamp, Java.Security.Cert.CertPath? signerCertPath);
[<Android.Runtime.Register(".ctor", "(Ljava/util/Date;Ljava/security/cert/CertPath;)V", "")>]
new Java.Security.Timestamp : Java.Util.Date * Java.Security.Cert.CertPath -> Java.Security.Timestamp
Parameters
- timestamp
- Date
is the timestamp's date and time. It must not be null.
- signerCertPath
- CertPath
is the TSA's certificate path. It must not be null.
- Attributes
Exceptions
if timestamp
is null
or if signerCertPath
is null
.
Remarks
Constructs a Timestamp.
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.