-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathMessageBase.cs
63 lines (56 loc) · 2.08 KB
/
MessageBase.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// Copyright (c) .NET Foundation and Contributors
// Portions Copyright (c) Eclo Solutions
// See LICENSE file in the project root for full license information.
using System;
namespace Iot.Device.Swarm
{
/// <summary>
/// Base class for the received and transmitted messages.
/// </summary>
public class MessageBase
{
/// <summary>
/// Gets or sets application ID tag for message.
/// </summary>
/// <remarks>
/// This is optional. If not specified the message will be sent with ID 0.
/// Swarm reserves the use of application IDs 65000 to 65535.
/// </remarks>
public uint ApplicationID { get; set; }
/// <summary>
/// Gets or sets payload of data.
/// </summary>
/// <remarks>
/// The maximum message size is 192 bytes.
/// </remarks>
public string Data { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="MessageBase"/> class. Creates a Message to be sent to the Swarm network.
/// </summary>
/// <param name="data">Data to be sent.</param>
/// <param name="applicationId">The application ID tag for the message.</param>
public MessageBase(string data, uint applicationId = 0)
{
if (data.Length > 192)
{
throw new ArgumentOutOfRangeException();
}
Data = data;
ApplicationID = applicationId;
}
/// <summary>
/// Initializes a new instance of the <see cref="MessageBase"/> class. Creates a Message to be sent to the Swarm network.
/// </summary>
/// <param name="data">Data to be sent.</param>
/// <param name="applicationId">The application ID tag for the message.</param>
public MessageBase(byte[] data, uint applicationId = 0)
{
if (data.Length > 192)
{
throw new ArgumentOutOfRangeException();
}
Data = BitConverter.ToString(data);
ApplicationID = applicationId;
}
}
}