T
Chili.Opf3 Send comments on this topic.
Generic Parse Method
See Also 
Chili.Opf3.Query Namespace > OPath Class : Generic Parse Method




query
ObjectQuery that is parsed.
Parses the ObjectQuery.

Syntax

Visual Basic (Declaration) 
Public Shared Function Parse(Of T)( _
   ByVal query As ObjectQuery(Of T) _
) As ObjectExpression
Visual Basic (Usage)Copy Code
Dim query As ObjectQuery(Of T)
Dim value As ObjectExpression
 
value = OPath.Parse(Of T)(query)
C# 
public static ObjectExpression Parse<T>( 
   ObjectQuery<T> query
)
Managed Extensions for C++ 
public: static ObjectExpression* Parse<T>( 
   ObjectQuery<T>* query
) 
C++/CLI 
public:
static ObjectExpression^ Parsegeneric<typename T>
( 
   ObjectQuery<T>^ query
) 

Parameters

query
ObjectQuery that is parsed.

Type Parameters

T

Exceptions

ExceptionDescription
ArgumentNullExceptionQuery is null.

Requirements

Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family

See Also