summaryrefslogtreecommitdiff
path: root/src/mscorlib/ref
diff options
context:
space:
mode:
authorWes Haggard <Wes.Haggard@microsoft.com>2016-05-21 22:25:52 -0700
committerWes Haggard <Wes.Haggard@microsoft.com>2016-05-21 22:25:52 -0700
commitdf10d7a58894cb052cd72bbb177c2eadd3530c36 (patch)
tree12d14206890cc1dce56f3cfc5aabb3186c95e0a7 /src/mscorlib/ref
parent3376767284fa7c86ca04a9498838ae6cbd21d9ae (diff)
downloadcoreclr-df10d7a58894cb052cd72bbb177c2eadd3530c36.tar.gz
coreclr-df10d7a58894cb052cd72bbb177c2eadd3530c36.tar.bz2
coreclr-df10d7a58894cb052cd72bbb177c2eadd3530c36.zip
Expose ResolveEventHandler and ResolveEventArgs in the mscorlib facade so that our test host still function.
[tfs-changeset: 1607062]
Diffstat (limited to 'src/mscorlib/ref')
-rw-r--r--src/mscorlib/ref/mscorlib.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mscorlib/ref/mscorlib.cs b/src/mscorlib/ref/mscorlib.cs
index 0187c74f67..5d62087524 100644
--- a/src/mscorlib/ref/mscorlib.cs
+++ b/src/mscorlib/ref/mscorlib.cs
@@ -2617,6 +2617,14 @@ namespace System
public RankException(string message) { }
public RankException(string message, System.Exception innerException) { }
}
+ public class ResolveEventArgs : System.EventArgs
+ {
+ public ResolveEventArgs(string name) { }
+ public ResolveEventArgs(string name, System.Reflection.Assembly requestingAssembly) { }
+ public String Name { get { throw null; } }
+ public System.Reflection.Assembly RequestingAssembly { get { throw null; } }
+ }
+ public delegate System.Reflection.Assembly ResolveEventHandler(object sender, System.ResolveEventArgs args);
[System.Runtime.InteropServices.ComVisibleAttribute(true)]
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
public partial struct RuntimeArgumentHandle