2using System.Collections.Generic;
4using System.Text.RegularExpressions;
14 private readonly Uri[] orders =
null;
15 private readonly Uri next =
null;
20 this.next =
AcmeClient.GetLink(Response,
"next");
22 foreach (KeyValuePair<string, object> P
in Obj)
27 if (P.Value is Array A)
29 List<Uri>
Orders =
new List<Uri>();
31 foreach (
object Obj2
in A)
37 this.orders =
Orders.ToArray();
52 public Uri
Next => this.next;
Implements an ACME client for the generation of certificates using ACME-compliant certificate servers...
Abstract base class for all ACME objects.
AcmeClient Client
ACME client.
Represents a set of ACME orders.
Uri Next
If provided, indicates where further entries can be acquired.
Uri[] Orders
An array of URLs, each identifying an order belonging to the account.