11 implementations of UsesNativeIdentifier
Microsoft.Interop.SourceGeneration (11)
Marshalling\StatefulMarshallingStrategy.cs (4)
19
public bool
UsesNativeIdentifier
=> true;
251
public bool
UsesNativeIdentifier
=> innerMarshaller.UsesNativeIdentifier;
460
public bool
UsesNativeIdentifier
=> true;
521
public bool
UsesNativeIdentifier
=> innerMarshaller.UsesNativeIdentifier;
Marshalling\StatelessMarshallingStrategy.cs (5)
21
public bool
UsesNativeIdentifier
=> true;
242
public bool
UsesNativeIdentifier
=> innerMarshaller.UsesNativeIdentifier;
249
public bool
UsesNativeIdentifier
=> innerMarshaller.UsesNativeIdentifier;
473
public bool
UsesNativeIdentifier
=> true;
557
public bool
UsesNativeIdentifier
=> true;
Marshalling\UnmanagedToManagedOwnershipTrackingStrategy.cs (2)
21
public bool
UsesNativeIdentifier
=> innerMarshaller.UsesNativeIdentifier;
86
public bool
UsesNativeIdentifier
=> innerMarshaller.UsesNativeIdentifier;
7 references to UsesNativeIdentifier
Microsoft.Interop.SourceGeneration (7)
Marshalling\CustomTypeMarshallingGenerator.cs (1)
97
public bool UsesNativeIdentifier => nativeTypeMarshaller.
UsesNativeIdentifier
;
Marshalling\StatefulMarshallingStrategy.cs (2)
251
public bool UsesNativeIdentifier => innerMarshaller.
UsesNativeIdentifier
;
521
public bool UsesNativeIdentifier => innerMarshaller.
UsesNativeIdentifier
;
Marshalling\StatelessMarshallingStrategy.cs (2)
242
public bool UsesNativeIdentifier => innerMarshaller.
UsesNativeIdentifier
;
249
public bool UsesNativeIdentifier => innerMarshaller.
UsesNativeIdentifier
;
Marshalling\UnmanagedToManagedOwnershipTrackingStrategy.cs (2)
21
public bool UsesNativeIdentifier => innerMarshaller.
UsesNativeIdentifier
;
86
public bool UsesNativeIdentifier => innerMarshaller.
UsesNativeIdentifier
;