Remove FirstChanceExceptionEventArgs from BCL folder. The file has been moved into...
authorRahul Kumar <rahku@microsoft.com>
Mon, 3 Oct 2016 21:45:29 +0000 (14:45 -0700)
committerRahul Kumar <rahku@microsoft.com>
Mon, 3 Oct 2016 21:45:29 +0000 (14:45 -0700)
[tfs-changeset: 1630635]

src/mscorlib/src/System/Runtime/ExceptionServices/ExceptionNotification.cs

index d0bda1c9143d690333ed9c2c1f4a404cc3e6ae54..b0848917682eca528fc498e3e809deec04d4f919 100644 (file)
@@ -16,6 +16,7 @@
 #if FEATURE_EXCEPTION_NOTIFICATIONS
 namespace System.Runtime.ExceptionServices {
     using System;
+    using System.Runtime.ConstrainedExecution;
     
     // Definition of the argument-type passed to the FirstChanceException event handler
     public class FirstChanceExceptionEventArgs : EventArgs
@@ -29,6 +30,7 @@ namespace System.Runtime.ExceptionServices {
         // Returns the exception object pertaining to the first chance exception
         public Exception Exception
         {
+            [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)]
             get { return m_Exception; }
         }