[corlib] Serialization from reference sources
[mono.git] / mcs / class / corlib / System / Delegate.cs
index 26fff1d5c463c1d5886bb39fac040f1cd5e2b119..bd2835cae43bc124ccb96b0da0e6b15d05529a8b 100644 (file)
@@ -609,5 +609,10 @@ namespace System
                        return RemotingServices.IsTransparentProxy (m_target);
 #endif
                }
+
+               internal static Delegate CreateDelegateNoSecurityCheck (RuntimeType type, Object firstArgument, MethodInfo method)
+               {
+                       return CreateDelegate_internal (type, firstArgument, method, true);
+               }
        }
 }