5 implementations of IsPlatformInvoke
Microsoft.CodeAnalysis (5)
Emit\EditAndContinue\DeletedPEMethodDefinition.cs (1)
59public bool IsPlatformInvoke
Emit\EditAndContinue\DeletedSourceMethodDefinition.cs (1)
49public bool IsPlatformInvoke => OldDefinition.IsPlatformInvoke;
Emit\NoPia\CommonEmbeddedMethod.cs (1)
194bool Cci.IMethodDefinition.IsPlatformInvoke => PlatformInvokeData != null;
Emit\NoPia\VtblGap.cs (1)
73bool Cci.IMethodDefinition.IsPlatformInvoke
PEWriter\RootModuleStaticConstructor.cs (1)
55public bool IsPlatformInvoke => false;
4 references to IsPlatformInvoke
Microsoft.CodeAnalysis (4)
Emit\EditAndContinue\DeletedSourceMethodDefinition.cs (1)
49public bool IsPlatformInvoke => OldDefinition.IsPlatformInvoke;
PEWriter\MetadataVisitor.cs (1)
314if (!signatureOnly && method.IsPlatformInvoke)
PEWriter\MetadataWriter.cs (2)
1026if (methodDef.IsPlatformInvoke) 2474if (methodDef.IsEncDeleted || !methodDef.IsPlatformInvoke)