[corlib] Serialization from reference sources
[mono.git] / mcs / class / corlib / System.Reflection / MonoAssembly.cs
index 5b982977d83ccbfa928582077f898615751a65d6..96ded2372d338f791db6fd2e2c1f4571d4ca4422 100644 (file)
@@ -136,6 +136,17 @@ namespace System.Reflection {
 
                        return (RuntimeAssembly) Assembly.Load (assemblyRef);
                }
+
+               internal static RuntimeAssembly LoadWithPartialNameInternal (String partialName, Evidence securityEvidence, ref StackCrawlMark stackMark)
+               {
+                       AssemblyName an = new AssemblyName(partialName);
+                       return LoadWithPartialNameInternal (an, securityEvidence, ref stackMark);
+               }
+
+               internal static RuntimeAssembly LoadWithPartialNameInternal (AssemblyName an, Evidence securityEvidence, ref StackCrawlMark stackMark)
+               {
+                       throw new NotImplementedException ("LoadWithPartialNameInternal");
+               }
        }
 
        [ComVisible (true)]