Base:
property
IsStatic
Microsoft.CodeAnalysis.CSharp.Symbol.IsStatic
12 references to IsStatic
Microsoft.CodeAnalysis.CSharp (12)
Compiler\MethodBodySynthesizer.cs (1)
376BoundThisReference fieldReceiver = eventSymbol.IsStatic ?
Symbols\Source\SourceEventSymbol.cs (6)
581Debug.Assert(!IsStatic || !IsOverride); // Otherwise should have been reported and cleared earlier. 582Debug.Assert(!IsStatic || ContainingType.IsInterface || (!IsAbstract && !IsVirtual)); // Otherwise should have been reported and cleared earlier. 592else if (IsReadOnly && IsStatic) 650else if (ContainingType.IsStatic && !IsStatic) 882if (IsStatic != implementation.IsStatic)
Symbols\Source\SourceFieldLikeEventSymbol.cs (4)
71if (inInterfaceType && !this.IsStatic) 97if (!IsStatic && ContainingType.IsReadOnly) 104if ((IsAbstract || IsVirtual) && IsStatic) 111else if (this.IsExtern || this.IsStatic)
Symbols\Source\SourceMemberContainerSymbol.cs (1)
5705DeclarationModifiers.Private | (@event.IsStatic ? DeclarationModifiers.Static : 0),