5 implementations of IsExternal
Microsoft.CodeAnalysis (5)
Emit\EditAndContinue\DeletedPEMethodDefinition.cs (1)
50
public bool
IsExternal
Emit\EditAndContinue\DeletedSourceMethodDefinition.cs (1)
43
public bool
IsExternal
=> OldDefinition.IsExternal;
Emit\NoPia\CommonEmbeddedMethod.cs (1)
188
bool Cci.IMethodDefinition.
IsExternal
=> IsExternal;
Emit\NoPia\VtblGap.cs (1)
58
bool Cci.IMethodDefinition.
IsExternal
PEWriter\RootModuleStaticConstructor.cs (1)
49
public bool
IsExternal
=> false;
2 references to IsExternal
Microsoft.CodeAnalysis (2)
Emit\EditAndContinue\DeletedSourceMethodDefinition.cs (1)
43
public bool IsExternal => OldDefinition.
IsExternal
;
PEWriter\Members.cs (1)
999
return !methodDef.IsAbstract && !methodDef.
IsExternal
&& !methodDef.ContainingTypeDefinition.IsComObject;