Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
MessageObject.cs
1
using
System;
2
using
System.Collections.Generic;
3
using
System.Text;
4
5
namespace
Waher.Networking.XMPP.Mail
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
}
Waher.Networking.XMPP.Mail.MessageObject
Contains the binary representation of a message object.
Definition:
MessageObject.cs:11
Waher.Networking.XMPP.Mail.MessageObject.MessageObject
MessageObject(byte[] Data, string ContentType)
Contains the binary representation of a message object.
Definition:
MessageObject.cs:20
Waher.Networking.XMPP.Mail.MessageObject.Data
byte[] Data
Binary representation of message object.
Definition:
MessageObject.cs:29
Waher.Networking.XMPP.Mail.MessageObject.ContentType
string ContentType
Internet Content Type.
Definition:
MessageObject.cs:34
Waher.Networking.XMPP.Mail
Definition:
EmbeddedObjectReference.cs:6
IoTGateway
Networking
Waher.Networking.XMPP.Mail
MessageObject.cs
Generated by
1.9.5