1 instantiation of BoundMarshallingGenerator
Microsoft.Interop.SourceGeneration (1)
Marshalling\MarshallingGenerator.cs (1)
189public static IBoundMarshallingGenerator Bind(this IUnboundMarshallingGenerator unbound, TypePositionInfo info, StubCodeContext context) => new BoundMarshallingGenerator(info, context, unbound);
2 references to BoundMarshallingGenerator
Microsoft.Interop.SourceGeneration (2)
Marshalling\MarshallingGeneratorExtensions.cs (2)
172public static bool IsForwarder(this IBoundMarshallingGenerator generator) => generator is BoundMarshallingGenerator { IsForwarder: true }; 174public static bool IsBlittable(this IBoundMarshallingGenerator generator) => generator is BoundMarshallingGenerator { IsBlittable: true };