Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Extends ITextSearchService with methods for searching contents of a ITextSnapshot and helper methods for performing replace operations.
Namespace: Microsoft.VisualStudio.Text.Operations
Assembly: Microsoft.VisualStudio.Text.Logic (in Microsoft.VisualStudio.Text.Logic.dll)
Syntax
'Declaration
Public Interface ITextSearchService2 _
Inherits ITextSearchService
public interface ITextSearchService2 : ITextSearchService
public interface class ITextSearchService2 : ITextSearchService
type ITextSearchService2 =
interface
interface ITextSearchService
end
public interface ITextSearchService2 extends ITextSearchService
The ITextSearchService2 type exposes the following members.
Methods
Name | Description | |
---|---|---|
![]() |
Find(SnapshotPoint, String, FindOptions) | Searches for the next occurrence of the given search pattern, using the given starting position and options. |
![]() |
Find(SnapshotSpan, SnapshotPoint, String, FindOptions) | Searches for the next occurrence of the given search pattern, using the given search range, starting position and options. |
![]() |
FindAll(FindData) | Searches for all the occurrences of the search string. (Inherited from ITextSearchService.) |
![]() |
FindAll(SnapshotSpan, String, FindOptions) | Searches for all occurrences of the given search pattern, using the given starting range and options. |
![]() |
FindAll(SnapshotSpan, SnapshotPoint, String, FindOptions) | Searches for all occurrences of the given search pattern, using the given search range, starting position and options. |
![]() |
FindAllForReplace | Searches for all occurrences of the searchPattern and calculates all the corresponding replacement results for every match according to the replacePattern. |
![]() |
FindForReplace(SnapshotPoint, String, String, FindOptions, String%) | Searches for the next occurrence of the search pattern and returns the result of replacing the search pattern with the replacement pattern. |
![]() |
FindForReplace(SnapshotSpan, String, String, FindOptions, String%) | Searches for the next occurrence of the search pattern and returns the result of replacing the search pattern with the replacement pattern. |
![]() |
FindNext | Searches for the next occurrence of the search string. (Inherited from ITextSearchService.) |
Top
Remarks
This interface is provided by the editor and should be consumed via the Managed Extensibility Framework (MEF).