3 references to GetMethod
Microsoft.CodeAnalysis.CodeStyle.Fixes (3)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\CodeGeneration\Symbols\CodeGenerationPropertySymbol.cs (3)
47
this.
GetMethod
, this.SetMethod);
67
public bool IsReadOnly => this.
GetMethod
!= null && this.SetMethod == null;
69
public bool IsWriteOnly => this.
GetMethod
== null && this.SetMethod != null;