Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
RevokedCertificate.cs
1using System;
3
5{
9 public class RevokedCertificate
10 {
18 public RevokedCertificate(System.Numerics.BigInteger SerialNumber, DateTimeOffset Timestamp,
20 {
21 this.SerialNumber = SerialNumber;
22 this.Timestamp = Timestamp;
23 this.Extensions = Extensions;
24 this.Reason = Reason;
25 }
26
30 public System.Numerics.BigInteger SerialNumber { get; }
31
35 public DateTimeOffset Timestamp { get; }
36
40 public Vector? Extensions { get; }
41
45 public RevokedReason? Reason { get; }
46 }
47}
RevokedCertificate(System.Numerics.BigInteger SerialNumber, DateTimeOffset Timestamp, Vector? Extensions, RevokedReason? Reason)
Reference to a revoked certificate.
RevokedReason? Reason
Reason for revoking the certificate
RevokedReason
Reason for revoking a certificate
Definition: RevokedReason.cs:7