1 implementation of TryBindToType
Microsoft.Private.Windows.Core (1)
System\Private\Windows\Nrbf\CoreNrbfSerializer.cs (1)
167bool INrbfSerializer.TryBindToType(TypeName typeName, [NotNullWhen(true)] out Type? type) => TryBindToType(typeName, out type);
3 references to TryBindToType
Microsoft.Private.Windows.Core (3)
System\Private\Windows\Nrbf\INrbfSerializer.cs (1)
47/// <see cref="TryBindToType(TypeName, out Type?)"/> and <see cref="TryGetObject(SerializationRecord, out object?)"/>
System\Private\Windows\Ole\BinaryFormatUtilities.cs (1)
135if (s_nrbfSerializer.TryBindToType(record.TypeName, out Type? type))
System\Private\Windows\Ole\TypeBinder.cs (1)
148&& s_nrbfSerializer.TryBindToType(typeName, out type)