Base:
property
IsStatic
Microsoft.CodeAnalysis.CSharp.Symbol.IsStatic
10 references to IsStatic
Microsoft.CodeAnalysis.CSharp (10)
Compiler\MethodBodySynthesizer.cs (1)
373BoundThisReference fieldReceiver = eventSymbol.IsStatic ?
Symbols\Source\SourceEventSymbol.cs (4)
518Debug.Assert(!IsStatic || !IsOverride); // Otherwise should have been reported and cleared earlier. 519Debug.Assert(!IsStatic || ContainingType.IsInterface || (!IsAbstract && !IsVirtual)); // Otherwise should have been reported and cleared earlier. 529else if (IsReadOnly && IsStatic) 575else if (ContainingType.IsStatic && !IsStatic)
Symbols\Source\SourceFieldLikeEventSymbol.cs (4)
67if (inInterfaceType && !this.IsStatic) 89if (!IsStatic && ContainingType.IsReadOnly) 96if ((IsAbstract || IsVirtual) && IsStatic) 103else if (this.IsExtern || this.IsStatic)
Symbols\Source\SourceMemberContainerSymbol.cs (1)
4816DeclarationModifiers.Private | (@event.IsStatic ? DeclarationModifiers.Static : 0),