2using System.Collections.Generic;
14 private readonly
string type =
null;
15 private readonly
string value =
null;
33 foreach (KeyValuePair<string, object> P
in Obj)
38 this.type = P.Value as string;
42 this.value = P.Value as string;
51 public string Type => this.type;
56 public string Value => this.value;
61 return this.type +
":" + this.value;
Implements an ACME client for the generation of certificates using ACME-compliant certificate servers...
Represents an ACME identifier.
string Type
Type of identifier.
override string ToString()
AcmeIdentifier(AcmeClient Client, string Type, string Value)
Represents an ACME identifier.
string Value
Identifier value.
Abstract base class for all ACME objects.
AcmeClient Client
ACME client.