Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
MessageObjectEventArgs.cs
2
4{
9 {
10 private readonly string contentType;
11 private readonly byte[] data;
12
20 : base(e)
21 {
22 this.contentType = ContentType;
23 this.data = Data;
24 }
25
29 public string ContentType => this.contentType;
30
34 public byte[] Data => this.data;
35
36 }
37}
Event arguments for responses to IQ queries.
byte[] Data
Binary representation of message object.
string ContentType
Content-Type of message object.
MessageObjectEventArgs(IqResultEventArgs e, string ContentType, byte[] Data)
Message object event arguments.