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)
441
thisParameter =
IsStatic
|| this.GetIsNewExtensionMember() ? null :
582
(this._containingType.IsInterface ? (this.
IsStatic
|| this.IsMetadataNewSlot()) : !this.IsOverride);
1120
if (!this.
IsStatic
)
1207
_name.Equals(this.
IsStatic
? WellKnownMemberNames.StaticConstructorName : WellKnownMemberNames.InstanceConstructorName) &&
1210
if (this.
IsStatic
)
1228
if (this.
IsStatic
)
1312
if (!this.
IsStatic
)
1465
bool isInitOnly = !this.
IsStatic
&&
Symbols\Metadata\PE\PEPropertySymbol.cs (4)
605
((object)_getMethod == null || _getMethod.
IsStatic
) &&
606
((object)_setMethod == null || _setMethod.
IsStatic
);
879
(getMethod.
IsStatic
!= setMethod.
IsStatic
))