Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
AcmeException.cs
1
using
System;
2
using
System.Collections.Generic;
3
using
System.Text;
4
using
Waher.Content
;
5
using
Waher.Content.Xml
;
6
7
namespace
Waher.Security.ACME
8
{
12
public
class
AcmeException
: Exception
13
{
14
private
readonly
string
type;
15
private
readonly
int
? status;
16
private
readonly
AcmeException
[] subproblems;
17
18
internal
AcmeException
(
string
Type
,
string
Detail,
int
?
Status
,
AcmeException
[]
Subproblems
)
19
: base(Detail)
20
{
21
this.type =
Type
;
22
this.status =
Status
;
23
this.subproblems =
Subproblems
;
24
}
25
29
public
string
Type
=> this.type;
30
34
public
int
?
Status
=> this.status;
35
39
public
AcmeException
[]
Subproblems
=> this.subproblems;
40
}
41
}
Waher.Security.ACME.AcmeException
Represents an ACME problem report.
Definition:
AcmeException.cs:13
Waher.Security.ACME.AcmeException.Type
string Type
ACME exception type.
Definition:
AcmeException.cs:29
Waher.Security.ACME.AcmeException.Subproblems
AcmeException[] Subproblems
Sub-problems, if any.
Definition:
AcmeException.cs:39
Waher.Security.ACME.AcmeException.Status
int? Status
Status code, if reported.
Definition:
AcmeException.cs:34
Waher.Content.Xml
Definition:
XmlCodec.cs:11
Waher.Content
Definition:
Array.cs:6
Waher.Security.ACME
Definition:
AcmeAccount.cs:8
IoTGateway
Security
Waher.Security.ACME
AcmeException.cs
Generated by
1.9.5