Base:
property
IsStatic
Microsoft.CodeAnalysis.CSharp.Symbol.IsStatic
10 references to IsStatic
Microsoft.CodeAnalysis.CSharp (10)
Compiler\MethodBodySynthesizer.cs (1)
376BoundThisReference fieldReceiver = eventSymbol.IsStatic ?
Symbols\Source\SourceEventSymbol.cs (4)
526Debug.Assert(!IsStatic || !IsOverride); // Otherwise should have been reported and cleared earlier. 527Debug.Assert(!IsStatic || ContainingType.IsInterface || (!IsAbstract && !IsVirtual)); // Otherwise should have been reported and cleared earlier. 537else if (IsReadOnly && IsStatic) 583else if (ContainingType.IsStatic && !IsStatic)
Symbols\Source\SourceFieldLikeEventSymbol.cs (4)
68if (inInterfaceType && !this.IsStatic) 90if (!IsStatic && ContainingType.IsReadOnly) 97if ((IsAbstract || IsVirtual) && IsStatic) 104else if (this.IsExtern || this.IsStatic)
Symbols\Source\SourceMemberContainerSymbol.cs (1)
5085DeclarationModifiers.Private | (@event.IsStatic ? DeclarationModifiers.Static : 0),