2 overrides of CreateDelegate
mscorlib (2)
system\reflection\emit\dynamicmethod.cs (1)
548
public sealed override Delegate
CreateDelegate
(Type delegateType, Object target) {
system\reflection\methodinfo.cs (1)
873
public override Delegate
CreateDelegate
(Type delegateType, Object target)
6 references to CreateDelegate
mscorlib (1)
system\diagnostics\stacktrace.cs (1)
186
GetSourceLineInfoDelegate getSourceLineInfo = (GetSourceLineInfoDelegate)symbolsMethodInfo.
CreateDelegate
(typeof(GetSourceLineInfoDelegate), target);
System (4)
net\System\Net\WebRequest.cs (4)
1200
s_EtwFireBeginGetResponse = (DelEtwFireBeginWRGet) mi1.
CreateDelegate
(typeof(DelEtwFireBeginWRGet), FrameworkEventSource.Log);
1201
s_EtwFireEndGetResponse = (DelEtwFireEndWRespGet)mi2.
CreateDelegate
(typeof(DelEtwFireEndWRespGet), FrameworkEventSource.Log);
1202
s_EtwFireBeginGetRequestStream = (DelEtwFireBeginWRGet) mi3.
CreateDelegate
(typeof(DelEtwFireBeginWRGet), FrameworkEventSource.Log);
1203
s_EtwFireEndGetRequestStream = (DelEtwFireEndWRGet) mi4.
CreateDelegate
(typeof(DelEtwFireEndWRGet), FrameworkEventSource.Log);
System.Core (1)
Microsoft\Scripting\Compiler\LambdaCompiler.cs (1)
300
return _method.
CreateDelegate
(_lambda.Type, new Closure(_boundConstants.ToArray(), null));