10 references to MulticastDelegate
ILCompiler.Compiler (7)
Compiler\Dataflow\ReflectionMethodBodyScanner.cs (4)
359
return parameterType.IsWellKnownType(Internal.TypeSystem.WellKnownType.
MulticastDelegate
)
360
|| parameterType == context.GetWellKnownType(Internal.TypeSystem.WellKnownType.
MulticastDelegate
).BaseType;
416
else if (parameterType.IsDelegate || parameterType.IsWellKnownType(Internal.TypeSystem.WellKnownType.
MulticastDelegate
)
417
|| parameterType == context.GetWellKnownType(Internal.TypeSystem.WellKnownType.
MulticastDelegate
).BaseType)
Compiler\DelegateCreationInfo.cs (1)
189
DefType systemDelegate = context.GetWellKnownType(WellKnownType.
MulticastDelegate
).BaseType;
parent\parent\Common\TypeSystem\IL\Stubs\DelegateMethodILEmitter.cs (1)
50
TypeDesc delegateType = context.GetWellKnownType(WellKnownType.
MulticastDelegate
).BaseType;
parent\parent\Common\TypeSystem\IL\Stubs\DelegateThunks.cs (1)
66
return Context.GetWellKnownType(WellKnownType.
MulticastDelegate
).BaseType;
ILCompiler.TypeSystem (3)
parent\parent\Common\TypeSystem\Common\MetadataTypeSystemContext.cs (1)
66
Debug.Assert(s_wellKnownTypeNames[(int)WellKnownType.
MulticastDelegate
- 1] == "MulticastDelegate");
parent\parent\Common\TypeSystem\Common\TypeDesc.cs (2)
113
case WellKnownType.
MulticastDelegate
:
253
return (baseType != null) ? baseType.IsWellKnownType(WellKnownType.
MulticastDelegate
) : false;