Base:
property
MethodKind
Microsoft.CodeAnalysis.CSharp.Symbols.MethodSymbol.MethodKind
7 references to MethodKind
Microsoft.CodeAnalysis.CSharp (7)
Symbols\Metadata\PE\PEMethodSymbol.cs (7)
652private bool IsDestructor => this.MethodKind == MethodKind.Destructor; 1006if (this.MethodKind == MethodKind.Ordinary && IsValidExtensionMethodSignature() 1070bool isClosedConstructor = MethodKind == MethodKind.Constructor && ContainingType.IsClosed; 1507this.MethodKind == MethodKind.PropertySet && 1583if (MethodKind == MethodKind.Constructor) 1681Debug.Assert(MethodKind == MethodKind.Constructor); 1703var result = ObsoleteAttributeHelpers.GetObsoleteDataFromMetadata(_handle, (PEModuleSymbol)ContainingModule, ignoreByRefLikeMarker: false, ignoreRequiredMemberMarker: MethodKind == MethodKind.Constructor);