Imported Upstream version 6.0.0.271

Former-commit-id: 2fde65daab17ed3bb08a7be86fb05423d63b0290
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2019-05-29 08:54:19 +00:00
parent 8f11a00d09
commit 2ba231cd0c
155 changed files with 1067 additions and 794 deletions

View File

@ -32,6 +32,8 @@ namespace System.Reflection.Emit
{
public class EventBuilder
{
private EventBuilder () {}
public void AddOtherMethod (MethodBuilder mdBuilder)
{
throw new PlatformNotSupportedException ();
@ -61,6 +63,8 @@ namespace System.Reflection.Emit
{
throw new PlatformNotSupportedException ();
}
public EventToken GetEventToken () => throw new PlatformNotSupportedException ();
}
}