[runtime] Fix corlib out of date error with disabled COM
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / View / ExtensionWindowClosingRoutedEventArgs.cs
1 //----------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation.  All rights reserved.
3 //---------------------------------------------------------------
4
5 namespace System.Activities.Presentation.View
6 {
7     using System.Windows;
8     using System.Runtime;
9
10     [Fx.Tag.XamlVisible(false)]
11     sealed class ExtensionWindowClosingRoutedEventArgs : RoutedEventArgs
12     {
13         internal ExtensionWindowClosingRoutedEventArgs(RoutedEvent routedEvent, object source)
14             : base(routedEvent, source)
15         {
16         }
17
18         public bool Cancel
19         {
20             get;
21             set;
22         }
23     }
24 }