5 writes to TypedRequest
Microsoft.Private.Windows.Core (5)
System\Private\Windows\Ole\Composition.NativeToManagedAdapter.cs (4)
558
TypedRequest
= request.TypedRequest
590
TypedRequest
= false
687
TypedRequest
= true
702
TypedRequest
= true,
System\Private\Windows\Ole\DataRequest.cs (1)
17
TypedRequest
= true;
10 references to TypedRequest
Microsoft.Private.Windows.Core (10)
System\Private\Windows\Ole\BinaryFormatUtilities.cs (4)
92
Debug.Assert(request.
TypedRequest
|| typeof(T) == typeof(object), "Untyped requests should always be asking for object");
138
if (request.
TypedRequest
179
if (request.
TypedRequest
&& !typeof(T).Matches(record.TypeName, TypeNameComparison.AllButAssemblyVersion))
190
if (request.
TypedRequest
&& request.Resolver is null)
System\Private\Windows\Ole\Composition.NativeToManagedAdapter.cs (3)
410
catch (Exception ex) when (!request.
TypedRequest
|| ex is not NotSupportedException)
515
if (request.
TypedRequest
&& request.Resolver is null)
558
TypedRequest = request.
TypedRequest
System\Private\Windows\Ole\TypeBinder.cs (3)
55
Debug.Assert(request.
TypedRequest
|| request.Resolver is null, "Untyped methods should not provide a resolver.");
56
Debug.Assert(request.
TypedRequest
|| rootType == typeof(object), "Untyped requests should always be asking for object");
58
_isTypedRequest = request.
TypedRequest
;