LiveWatchFilterRequest Class

Used to pass a search string to MatchesFilter(LiveWatchFilterRequest).

Definition

Namespace: VisualGDBExtensibility.LiveWatch
Assembly: VisualGDBExtensibility (in VisualGDBExtensibility.dll) Version: 5.6.109.1 (5.6.109.4849)
C#
public class LiveWatchFilterRequest
Inheritance
Object    LiveWatchFilterRequest

Remarks

Objects of this class are normally created by VisualGDB when the user enters a string in the filter field, and are passed to the MatchesFilter(LiveWatchFilterRequest) method in order to determine the visibility of each node without expanding it.

Constructors

LiveWatchFilterRequestInitializes a new instance of the LiveWatchFilterRequest class

Methods

MatchesString Checks whether the given string matches the filter. In the most basic form, checks whether the name contains the user-specified search string. Where supported, will also automatically handle the '$', '^' and '|' syntax.

Fields

Filter Specifies the text filter entered by the user. Do not use directly; call MatchesString(String) instead.
ProviderLevelCache Used by VisualGDB-implemented live watch nodes to cache large ELF types. Do not use.

See Also