source: other-projects/playing-in-the-street/summer-2013/trunk/Microsoft.Samples.Kinect.Webserver/Sensor/Serialization/UserTrackingIdChangedEventArgs.cs@ 28896

Last change on this file since 28896 was 28896, checked in by davidb, 10 years ago

Core Web Server that connects to the Kinect device

File size: 1.4 KB
Line 
1// -----------------------------------------------------------------------
2// <copyright file="UserTrackingIdChangedEventArgs.cs" company="Microsoft">
3// Copyright (c) Microsoft Corporation. All rights reserved.
4// </copyright>
5// -----------------------------------------------------------------------
6
7namespace Microsoft.Samples.Kinect.Webserver.Sensor.Serialization
8{
9 using System.Diagnostics.CodeAnalysis;
10
11 /// <summary>
12 /// Event message used to notify clients that a user tracking id has changed.
13 /// </summary>
14 [SuppressMessage("StyleCop.CSharp.NamingRules", "SA1300:ElementMustBeginWithUpperCaseLetter", Justification = "Lower case names allowed for JSON serialization.")]
15 internal class UserTrackingIdChangedEventMessage : EventMessage
16 {
17 /// <summary>
18 /// Old user tracking identifier.
19 /// </summary>
20 [SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", MessageId = "old", Justification = "Lower case names allowed for JSON serialization.")]
21 public int oldValue { get; set; }
22
23 /// <summary>
24 /// New user tracking identifier.
25 /// </summary>
26 [SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", MessageId = "new", Justification = "Lower case names allowed for JSON serialization.")]
27 public int newValue { get; set; }
28 }
29}
Note: See TracBrowser for help on using the repository browser.