Class IgbLiteralFilterExpression
Represents a literal value filter expression.
Inheritance
System.Object
IgbLiteralFilterExpression
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbLiteralFilterExpression : IgbFilterExpression, JsonSerializable
Constructors
IgbLiteralFilterExpression()
Declaration
public IgbLiteralFilterExpression()
Properties
IsLiteral
Gets if the expression is a literal value.
Declaration
public override bool IsLiteral { get; protected set; }
Property Value
Type |
Description |
System.Boolean |
|
Overrides
IsNull
Gets if the expression is a null value.
Declaration
public override bool IsNull { get; protected set; }
Property Value
Type |
Description |
System.Boolean |
|
Overrides
LeaveUnquoted
Gets or sets whether the value should be emitted unquoted.
Declaration
public bool LeaveUnquoted { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
LiteralValue
Gets or sets the literal value to use.
Declaration
public object LiteralValue { get; set; }
Property Value
Type |
Description |
System.Object |
|
Precedence
Declaration
public override int Precedence { get; protected set; }
Property Value
Type |
Description |
System.Int32 |
|
Overrides
Type
Declaration
public override string Type { get; }
Property Value
Type |
Description |
System.String |
|
Overrides
Methods
FindByName(String)
Declaration
public override object FindByName(string name)
Parameters
Type |
Name |
Description |
System.String |
name |
|
Returns
Type |
Description |
System.Object |
|
Overrides
FromEventJson(BaseRendererControl, Dictionary<String, Object>)
Declaration
protected override void FromEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
Type |
Name |
Description |
BaseRendererControl |
control |
|
System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
ToEventJson(BaseRendererControl, Dictionary<String, Object>)
Declaration
protected override void ToEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
Type |
Name |
Description |
BaseRendererControl |
control |
|
System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
Implements