Implemented interface member:
property
GetMethod
Microsoft.CodeAnalysis.IPropertySymbol.GetMethod
3 references to GetMethod
Microsoft.CodeAnalysis.CodeStyle.Fixes (3)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\CodeGeneration\Symbols\CodeGenerationPropertySymbol.cs (3)
42
this.
GetMethod
, this.SetMethod);
62
public bool IsReadOnly => this.
GetMethod
!= null && this.SetMethod == null;
64
public bool IsWriteOnly => this.
GetMethod
== null && this.SetMethod != null;