Base:
property
IsStatic
Microsoft.CodeAnalysis.CSharp.Symbol.IsStatic
16 references to IsStatic
Microsoft.CodeAnalysis.CSharp (16)
Symbols\Metadata\PE\PEEventSymbol.cs (4)
325
return _addMethod.
IsStatic
&& _removeMethod.
IsStatic
;
436
(addMethod.
IsStatic
== removeMethod.
IsStatic
);
Symbols\Metadata\PE\PEMethodSymbol.cs (8)
439
thisParameter =
IsStatic
? null :
578
(this._containingType.IsInterface ? (this.
IsStatic
|| this.IsMetadataNewSlot()) : !this.IsOverride);
1113
if (!this.
IsStatic
)
1185
_name.Equals(this.
IsStatic
? WellKnownMemberNames.StaticConstructorName : WellKnownMemberNames.InstanceConstructorName) &&
1188
if (this.
IsStatic
)
1204
if (!this.HasRuntimeSpecialName && this.
IsStatic
&& this.DeclaredAccessibility == Accessibility.Public)
1259
if (!this.
IsStatic
)
1412
bool isInitOnly = !this.
IsStatic
&&
Symbols\Metadata\PE\PEPropertySymbol.cs (4)
605
((object)_getMethod == null || _getMethod.
IsStatic
) &&
606
((object)_setMethod == null || _setMethod.
IsStatic
);
871
(getMethod.
IsStatic
!= setMethod.
IsStatic
))