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