-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathMessageReceived.cs
40 lines (35 loc) · 1.2 KB
/
MessageReceived.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
// 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>
/// Message received from the Swarm network.
/// </summary>
public class MessageReceived : MessageBase
{
/// <summary>
/// Gets message identifier assigned by the device.
/// </summary>
/// <remarks>
/// This property is empty for messages that have been created by code.
/// </remarks>
public string ID { get; internal set; }
/// <summary>
/// Gets time-stamp of the moment the message was received by the Tile.
/// </summary>
/// <remarks>
/// This property is empty for messages that have been created by code.
/// </remarks>
public DateTime TimeStamp { get; internal set; }
/// <inheritdoc/>
public MessageReceived(string data, uint applicationId = 0) : base(data, applicationId)
{
}
/// <inheritdoc/>
public MessageReceived(byte[] data, uint applicationId = 0) : base(data, applicationId)
{
}
}
}