Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
MessageObject.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4
6{
10 public class MessageObject
11 {
12 private byte[] data;
13 private string contentType;
14
20 public MessageObject(byte[] Data, string ContentType)
21 {
22 this.data = Data;
23 this.contentType = ContentType;
24 }
25
29 public byte[] Data => this.data;
30
34 public string ContentType => this.contentType;
35
36 }
37}
Contains the binary representation of a message object.
MessageObject(byte[] Data, string ContentType)
Contains the binary representation of a message object.
byte[] Data
Binary representation of message object.
string ContentType
Internet Content Type.