-
Notifications
You must be signed in to change notification settings - Fork 492
/
MessageSystemPropertyNames.cs
54 lines (31 loc) · 1.71 KB
/
MessageSystemPropertyNames.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
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace Microsoft.Azure.Devices.Client
{
internal static class MessageSystemPropertyNames
{
public const string MessageId = "message-id";
public const string LockToken = "iothub-messagelocktoken";
public const string SequenceNumber = "sequence-number";
public const string To = "to";
public const string EnqueuedTime = "iothub-enqueuedtime";
public const string ExpiryTimeUtc = "absolute-expiry-time";
public const string CorrelationId = "correlation-id";
public const string DeliveryCount = "iothub-deliverycount";
public const string UserId = "user-id";
public const string Operation = "iothub-operation";
public const string Ack = "iothub-ack";
public const string OutputName = "iothub-outputname";
public const string InputName = "iothub-inputname";
public const string MessageSchema = "iothub-message-schema";
public const string CreationTimeUtc = "iothub-creation-time-utc";
public const string ContentEncoding = "iothub-content-encoding";
public const string ContentType = "iothub-content-type";
public const string ConnectionDeviceId = "iothub-connection-device-id";
public const string ConnectionModuleId = "iothub-connection-module-id";
public const string DiagId = "iothub-diag-id";
public const string DiagCorrelationContext = "diag-correlation-context";
public const string InterfaceId = "iothub-interface-id";
public const string ComponentName = "dt-subject";
}
}