ISparqlCustomExpressionFactoryTryCreateExpression Method  | 
 
            Tries to Create a SPARQL Expression for a function with the given URI and set of arguments.
            
 
    Namespace: 
   VDS.RDF.Query.Expressions
    Assembly:
   dotNetRDF (in dotNetRDF.dll) Version: 
Syntaxbool TryCreateExpression(
	Uri u,
	List<ISparqlExpression> args,
	Dictionary<string, ISparqlExpression> scalarArguments,
	out ISparqlExpression expr
)
Function TryCreateExpression ( 
	u As Uri,
	args As List(Of ISparqlExpression),
	scalarArguments As Dictionary(Of String, ISparqlExpression),
	<OutAttribute> ByRef expr As ISparqlExpression
) As Boolean
Parameters
- u
 - Type: SystemUri
URI of the function. - args
 - Type: System.Collections.GenericListISparqlExpression
List of Arguments. - scalarArguments
 - Type: System.Collections.GenericDictionaryString, ISparqlExpression
Dictionary of Scalar Arguments which are supportable by aggregates when Syntax is set to SPARQL 1.1 Extended. - expr
 - Type: VDS.RDF.Query.ExpressionsISparqlExpression
Resulting Expression if able to generate. 
Return Value
Type: 
BooleanTrue if an expression is generated, false if not.
See Also