Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System.Runtime.InteropServices/ComEventInterfaceAttribute.cs')
-rwxr-xr-xmcs/class/corlib/System.Runtime.InteropServices/ComEventInterfaceAttribute.cs34
1 files changed, 0 insertions, 34 deletions
diff --git a/mcs/class/corlib/System.Runtime.InteropServices/ComEventInterfaceAttribute.cs b/mcs/class/corlib/System.Runtime.InteropServices/ComEventInterfaceAttribute.cs
deleted file mode 100755
index f03e371c898..00000000000
--- a/mcs/class/corlib/System.Runtime.InteropServices/ComEventInterfaceAttribute.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-//
-// System.Runtime.InteropServices.ComEventInterfaceAttribute.cs
-//
-// Name: Duncan Mak (duncan@ximian.com)
-//
-// (C) Ximian, Inc.
-//
-
-using System;
-
-namespace System.Runtime.InteropServices {
-
- [AttributeUsage (AttributeTargets.Interface)]
- public sealed class ComEventInterfaceAttribute : Attribute
- {
- Type si, ep;
-
- public ComEventInterfaceAttribute (Type SourceInterface,
- Type EventProvider)
- {
- si = SourceInterface;
- ep = EventProvider;
- }
-
- public Type EventProvider {
- get { return ep; }
- }
-
- public Type SourceInterface {
- get { return si; }
- }
- }
-}
-