Merge pull request dotnet/corertdotnet/coreclr#3969 from dotnet/nmirror
authorJan Kotas <jkotas@microsoft.com>
Fri, 23 Jun 2017 01:43:00 +0000 (18:43 -0700)
committerJan Kotas <jkotas@microsoft.com>
Mon, 26 Jun 2017 13:53:54 +0000 (06:53 -0700)
Merge nmirror to master

Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
Commit migrated from https://github.com/dotnet/coreclr/commit/2c7a7011d940f906dceabb80fe82a81f80cdc656

src/coreclr/src/mscorlib/shared/System/Reflection/Assembly.cs

index d35ffc7..7280869 100644 (file)
@@ -60,6 +60,7 @@ namespace System.Reflection
 
         public virtual IEnumerable<Type> ExportedTypes => GetExportedTypes();
         public virtual Type[] GetExportedTypes() { throw NotImplemented.ByDesign; }
+        public virtual Type[] GetForwardedTypes() { throw NotImplemented.ByDesign; }
 
         public virtual string CodeBase { get { throw NotImplemented.ByDesign; } }
         public virtual MethodInfo EntryPoint { get { throw NotImplemented.ByDesign; } }