We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c0ee6b4 + 0a55f21 commit ef07cb3Copy full SHA for ef07cb3
crypto/src/asn1/cmp/PollRepContent.cs
@@ -33,6 +33,25 @@ public static PollRepContent GetInstance(object obj)
33
throw new ArgumentException("Invalid object: " + Platform.GetTypeName(obj), "obj");
34
}
35
36
+ public PollRepContent(
37
+ DerInteger certReqId,
38
+ DerInteger checkAfter)
39
+ {
40
+ this.certReqId = certReqId;
41
+ this.checkAfter = checkAfter;
42
+ this.reason = null;
43
+ }
44
+
45
46
47
+ DerInteger checkAfter,
48
+ PkiFreeText reason)
49
50
51
52
+ this.reason = reason;
53
54
55
public virtual DerInteger CertReqID
56
{
57
get { return certReqId; }
0 commit comments