[API] Added missing .Net 4.5 interface and dependent class
[mono.git] / mcs / class / System / System.ComponentModel / DataErrorsChangedEventArgs.cs
index 3977fec957099b27658da1b6bc7908fca079efe1..01116afbce9a9e37a2b656a96773caa29e3d3f4b 100644 (file)
@@ -26,6 +26,8 @@
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
+#if NET_4_5
+
 namespace System.ComponentModel {
         public sealed class DataErrorsChangedEventArgs : EventArgs {
                 public DataErrorsChangedEventArgs (string propertyName)
@@ -36,3 +38,5 @@ namespace System.ComponentModel {
                 public string PropertyName { get; private set; }
         }
 }
+
+#endif