6 implementations of IsDelegate
Microsoft.CodeAnalysis (4)
CodeGen\PrivateImplementationDetails.cs (1)
1056public bool IsDelegate => false;
Emit\EditAndContinue\DeletedSourceTypeDefinition.cs (1)
46public bool IsDelegate => OldDefinition.IsDelegate;
Emit\NoPia\CommonEmbeddedType.cs (1)
367bool Cci.ITypeDefinition.IsDelegate
PEWriter\RootModuleType.cs (1)
135public bool IsDelegate
Microsoft.CodeAnalysis.CSharp (2)
Emitter\Model\NamedTypeSymbolAdapter.cs (1)
568bool Cci.ITypeDefinition.IsDelegate
Symbols\Source\ExtensionGroupingInfo.cs (1)
510bool ITypeDefinition.IsDelegate => false;
2 references to IsDelegate
Microsoft.CodeAnalysis (2)
Emit\EditAndContinue\DeletedSourceTypeDefinition.cs (1)
46public bool IsDelegate => OldDefinition.IsDelegate;
PEWriter\InheritedTypeParameter.cs (1)
63get { return _inheritingType.IsInterface || _inheritingType.IsDelegate ? _parentParameter.Variance : TypeParameterVariance.NonVariant; }