9 references to SelectionType
Microsoft.CodeAnalysis.Features (9)
ExtractMethod\SelectionInfo.cs (4)
99
public
SelectionType
GetSelectionType()
102
return
SelectionType
.Expression;
107
return
SelectionType
.SingleStatement;
109
return
SelectionType
.MultipleStatements;
ExtractMethod\SelectionResult.cs (5)
26
SelectionType
selectionType,
37
public
SelectionType
SelectionType { get; } = selectionType;
75
public bool IsExtractMethodOnExpression => this.SelectionType ==
SelectionType
.Expression;
76
public bool IsExtractMethodOnSingleStatement => this.SelectionType ==
SelectionType
.SingleStatement;
77
public bool IsExtractMethodOnMultipleStatements => this.SelectionType ==
SelectionType
.MultipleStatements;