9 references to GetDelegateType
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\DynamicDebuggerProxy.cs (1)
210Type delegateType = Expression.GetDelegateType(delegateSignatureTypes);
Microsoft.VisualBasic.Core (2)
Microsoft\VisualBasic\CompilerServices\IDOBinder.vb (2)
1379Dim CallSiteDelegate As Type = Expression.GetDelegateType(CallSiteSignature) 1455Dim c As CallSite = CallSite.Create(Expression.GetDelegateType(delegateArgTypes), action)
PresentationFramework (3)
MS\Internal\WindowsRuntime\Generated\WinRT\Projections\IEnumerable.cs (1)
429private static readonly Type get_Current_0_Type = Expression.GetDelegateType(new Type[] { typeof(void*), Marshaler<T>.AbiType.MakeByRefType(), typeof(int) });
MS\Internal\WindowsRuntime\Generated\WinRT\Projections\IReadOnlyList.cs (2)
219private static readonly Type GetAt_0_Type = Expression.GetDelegateType(new Type[] { typeof(void*), typeof(uint), Marshaler<T>.AbiType.MakeByRefType(), typeof(int) }); 220private static readonly Type IndexOf_2_Type = Expression.GetDelegateType(new Type[] { typeof(void*), Marshaler<T>.AbiType, typeof(uint).MakeByRefType(), typeof(byte).MakeByRefType(), typeof(int) });
PresentationFramework-SystemCore (2)
DynamicAccessorImpl.cs (2)
76delegateType = Expression.GetDelegateType(typeArgs); 96delegateType = Expression.GetDelegateType(typeArgs);
System.ComponentModel.Composition (1)
System\ComponentModel\Composition\Primitives\ExportedDelegate.cs (1)
57return Expression.GetDelegateType(parameterTypes);