Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
CustomEncoding.cs
2{
6 public class CustomEncoding
7 {
8 private readonly string contentType;
9 private readonly byte[] encoded;
10
16 public CustomEncoding(string ContentType, byte[] Encoded)
17 {
18 this.contentType = ContentType;
19 this.encoded = Encoded;
20 }
21
25 public string ContentType => this.contentType;
26
30 public byte[] Encoded => this.encoded;
31 }
32}
A custom encoded object.
CustomEncoding(string ContentType, byte[] Encoded)
A custom encoded object.
string ContentType
Internet Content-Type of encoded object.