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