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