FilterCondition.TryParse(String, FilterCondition) Method
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.
Returns a value that indicates whether the provided query element string can be parsed into a FilterCondition.
public:
static bool TryParse(System::String ^ queryElement, [Runtime::InteropServices::Out] Microsoft::VisualStudio::TestTools::UITest::Extension::FilterCondition ^ % condition);
public static bool TryParse (string queryElement, out Microsoft.VisualStudio.TestTools.UITest.Extension.FilterCondition condition);
static member TryParse : string * FilterCondition -> bool
Public Shared Function TryParse (queryElement As String, ByRef condition As FilterCondition) As Boolean
Parameters
- queryElement
- String
A query element string.
- condition
- FilterCondition
(Output) A FilterCondition if the provided string can be parsed; otherwise, null.
Returns
true if the provided query element string can be parsed; otherwise, false.