Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
AcmeObject.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4
6{
10 public abstract class AcmeObject
11 {
12 private readonly AcmeClient client;
13
19 {
20 this.client = Client;
21 }
22
26 public AcmeClient Client => this.client;
27 }
28}
Implements an ACME client for the generation of certificates using ACME-compliant certificate servers...
Definition: AcmeClient.cs:24
Abstract base class for all ACME objects.
Definition: AcmeObject.cs:11
AcmeClient Client
ACME client.
Definition: AcmeObject.cs:26
AcmeObject(AcmeClient Client)
Abstract base class for all ACME objects.
Definition: AcmeObject.cs:18