Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
AcmeUserActionRequiredException.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4using Waher.Content;
6
8{
13 {
14 private readonly Uri link;
15 private readonly Uri termsOfService;
16
17 internal AcmeUserActionRequiredException(string Type, string Detail, int? Status,
19 : base(Type, Detail, Status, Subproblems)
20 {
21 this.link = Link;
22 this.termsOfService = TermsOfService;
23 }
24
29 public Uri Link => this.link;
30
35 public Uri TermsOfService => this.termsOfService;
36 }
37}
Represents an ACME problem report.
string Type
ACME exception type.
AcmeException[] Subproblems
Sub-problems, if any.
int? Status
Status code, if reported.
Visit the "instance" URL and take actions specified there
Uri Link
Link a client should direct a human user to visit in order for instructions on how to agree to the te...
Uri TermsOfService
Link a client should direct a human user to visit in order for instructions on how to agree to the te...