Fix XMM scanning on Mac x86.
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / SourceLocationUpdatedEventArgs.cs
1 // <copyright>
2 //   Copyright (c) Microsoft Corporation.  All rights reserved.
3 // </copyright>
4
5 namespace System.Activities.Presentation
6 {
7     using System.Activities.Debugger;
8
9     /// <summary>
10     /// Provides data for the SourceLocationUpdated event.
11     /// </summary>
12     public class SourceLocationUpdatedEventArgs : EventArgs
13     {
14         /// <summary>
15         /// Initializes a new instance of the SourceLocationUpdatedEventArgs class.
16         /// </summary>
17         /// <param name="objectReference">The Guid of the ObjectReference that changed.</param>
18         /// <param name="updatedSourceLocation">The updated SourceLocation.</param>
19         public SourceLocationUpdatedEventArgs(Guid objectReference, SourceLocation updatedSourceLocation)
20         {
21             this.ObjectReference = objectReference;
22             this.UpdatedSourceLocation = updatedSourceLocation;
23         }
24
25         /// <summary>
26         /// Gets the Guid of the ObjectReference that changed.
27         /// </summary>
28         public Guid ObjectReference
29         {
30             get; 
31             private set; 
32         }
33
34         /// <summary>
35         /// Gets the updated source location.
36         /// </summary>
37         public SourceLocation UpdatedSourceLocation
38         {
39             get;
40             private set;
41         }
42     }
43 }