NavigateToItem Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a single symbol, and holds all the information necessary to order symbols. Symbols are sorted first on the match kind (exact, prefix, or regular), then name, kind (file, class, method, etc.), and finally on a secondary string to break any ties.
public ref class NavigateToItem sealed
public ref class NavigateToItem sealed
class NavigateToItem sealed
public sealed class NavigateToItem
type NavigateToItem = class
Public NotInheritable Class NavigateToItem
- Inheritance
-
NavigateToItem
Remarks
Symbols are sorted in the following order:
matchKind
(exact, prefix, or regular).name
.kind
(file, class, method, and so on).secondarySort
, to sort any symbols that are otherwise equivalent.
Constructors
NavigateToItem(String, String, String, String, Object, MatchKind, Boolean, INavigateToItemDisplayFactory) |
Obsolete.
Creates a new NavigateToItem. |
NavigateToItem(String, String, String, String, Object, MatchKind, INavigateToItemDisplayFactory) |
Obsolete.
Creates a new case-insensitive NavigateToItem. |
NavigateToItem(String, String, String, String, Object, PatternMatch, INavigateToItemDisplayFactory) |
Creates a new NavigateToItem. |
Properties
DisplayFactory |
Used to generate display information for this symbol on an as-needed basis. |
IsCaseSensitive |
Obsolete.
If this item's match was case-sensitive. Case-sensitive matches of the same MatchKind will be presented before insensitive matches. i.e. a case-sensitive exact match will come before a case-insensitive exact match. However, a case-sensitive prefix match will still come after a case-insensitive exact match. |
Kind |
The symbol's kind. |
Language |
The language from which the symbol comes. |
MatchKind |
Obsolete.
How this symbol matches the search string. |
Name |
The symbol's name. |
PatternMatch |
How this symbol matches the search string. |
SecondarySort |
An arbitrary string to allow for tie-breaking during sorting. |
Tag |
Implementor-specific data. |