Class LiteralExpression
Represents a literal expression.
Inheritance
LiteralExpression
Assembly: dotNetRdf.dll
Syntax
public class LiteralExpression : RdfTermExpression
Constructors
|
Edit this page
View Source
LiteralExpression(ISparqlExpression)
Wraps the expression
as a literal expression.
Declaration
public LiteralExpression(ISparqlExpression expression)
Parameters
Methods
|
Edit this page
View Source
ToSimpleLiteral()
Returns the constant value of this expression formatted as a simple literal expression.
Declaration
public LiteralExpression ToSimpleLiteral()
Returns
Type |
Description |
LiteralExpression |
A new LiteralExpression whose value is the constant value of this expression.
|
Operators
|
Edit this page
View Source
operator ==(string, LiteralExpression)
Declaration
public static BooleanExpression operator ==(string left, LiteralExpression right)
Parameters
Returns
|
Edit this page
View Source
operator ==(LiteralExpression, string)
Declaration
public static BooleanExpression operator ==(LiteralExpression left, string right)
Parameters
Returns
|
Edit this page
View Source
operator !=(string, LiteralExpression)
Declaration
public static BooleanExpression operator !=(string left, LiteralExpression right)
Parameters
Returns
|
Edit this page
View Source
operator !=(LiteralExpression, string)
Declaration
public static BooleanExpression operator !=(LiteralExpression left, string right)
Parameters
Returns
Extension Methods