Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
AcmeResource.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4
6{
10 public abstract class AcmeResource : AcmeObject
11 {
12 private readonly Uri accountLocation;
13 private Uri location = null;
14
22 : base(Client)
23 {
24 this.accountLocation = AccountLocation;
25 this.location = Location;
26 }
27
31 public Uri AccountLocation => this.accountLocation;
32
36 public Uri Location
37 {
38 get => this.location;
39 protected set => this.location = value;
40 }
41 }
42}
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
Abstract base class for all ACME resources.
Definition: AcmeResource.cs:11
Uri Location
Location of resource.
Definition: AcmeResource.cs:37
Uri AccountLocation
Account location.
Definition: AcmeResource.cs:31
AcmeResource(AcmeClient Client, Uri AccountLocation, Uri Location)
Abstract base class for all ACME objects.
Definition: AcmeResource.cs:21