Represents a filter expression that is a property access.
Inheritance
object
- IComponent
- IHandleEvent
- IHandleAfterRender
- JsonSerializable
Constructors
Section titled "Constructors"constructor
public IgbPropertyReferenceFilterExpression() Returns IgbPropertyReferenceFilterExpression
Properties
Section titled "Properties"IsAutoGenerated
Section titled "IsAutoGenerated"Inherited from: IgbFilterExpression
public bool IsAutoGenerated { get; protected set; } IsOperation
Section titled "IsOperation"Inherited from: IgbFilterExpression
Gets whether the expression is an operation.
public virtual bool IsOperation { get; protected set; } IsFunction
Section titled "IsFunction"Inherited from: IgbFilterExpression
Gets whether the expression is a function.
public virtual bool IsFunction { get; protected set; } IsLiteral
Section titled "IsLiteral"Inherited from: IgbFilterExpression
Gets whether the expression is a literal.
public virtual bool IsLiteral { get; protected set; } IsNull
Section titled "IsNull"Inherited from: IgbFilterExpression
Gets whether the expresssion is null.
public virtual bool IsNull { get; protected set; } IsWrapper
Section titled "IsWrapper"Inherited from: IgbFilterExpression
Gets whether the expression is a wrapper expression.
public virtual bool IsWrapper { get; protected set; } IgBlazor
Section titled "IgBlazor"Inherited from: BaseRendererElement
[Inject]
protected IIgniteUIBlazor IgBlazor { get; set; } IsComponentRooted
Section titled "IsComponentRooted"Inherited from: BaseRendererElement
public bool IsComponentRooted { get; } ParentTypeName
Section titled "ParentTypeName"Inherited from: BaseRendererElement
protected virtual string ParentTypeName { get; } UseDirectRender
Section titled "UseDirectRender"Inherited from: BaseRendererElement
protected virtual bool UseDirectRender { get; } ChildContent
Section titled "ChildContent"Inherited from: BaseRendererElement
[Parameter]
public RenderFragment ChildContent { get; set; } SupportsVisualChildren
Section titled "SupportsVisualChildren"Inherited from: BaseRendererElement
protected virtual bool SupportsVisualChildren { get; } Inherited from: BaseRendererElement
[Parameter]
public string Name { get; set; } Parent
Section titled "Parent"Inherited from: BaseRendererElement
public object Parent { get; } MethodTarget
Section titled "MethodTarget"Inherited from: BaseRendererElement
protected virtual string MethodTarget { get; } CurrParent
Section titled "CurrParent"Inherited from: BaseRendererElement
protected object CurrParent { get; } IsPropertyReference
Section titled "IsPropertyReference"Gets if the expression is a property reference.
public override bool IsPropertyReference { get; protected set; } Precedence
Section titled "Precedence"public override int Precedence { get; protected set; } PropertyReference
Section titled "PropertyReference"Gets/sets the property reference
[Parameter]
public string PropertyReference { get; set; } public override string Type { get; } Accessors
Section titled "Accessors"_name
Section titled "_name"Inherited from: BaseRendererElement
protected string _name eventCallbacksCache
Section titled "eventCallbacksCache"Inherited from: BaseRendererElement
protected Dictionary<Type, Dictionary<string, FieldInfo>> eventCallbacksCache _cachedSerializedContent
Section titled "_cachedSerializedContent"Inherited from: BaseRendererElement
protected string _cachedSerializedContent Methods
Section titled "Methods"Property(string)
Section titled "Property(string)"Inherited from: IgbFilterExpression
Builds a property access expression for the provided property.
public static IgbPropertyReferenceFilterExpression Property(string propertyName) Parameters
- propertyName:
string
Returns any
NullLiteral()
Section titled "NullLiteral()"Inherited from: IgbFilterExpression
Builds a null literal expression.
public static IgbLiteralFilterExpression NullLiteral() Returns any
Literal(object)
Section titled "Literal(object)"Inherited from: IgbFilterExpression
Builds a literal value expression for the provided value.
public static IgbLiteralFilterExpression Literal(object literal) Parameters
- literal:
object
Returns any
UnquotedLiteral(string)
Section titled "UnquotedLiteral(string)"Inherited from: IgbFilterExpression
Builds a literal value expression for the provided value which should be left unquoted.
public static IgbLiteralFilterExpression UnquotedLiteral(string literal) Parameters
- literal:
string
Returns any
Operation(string, FilterExpressionOperatorType, object)
Section titled "Operation(string, FilterExpressionOperatorType, object)"Inherited from: IgbFilterExpression
Creates an operator filter expression.
public static IgbOperationFilterExpression Operation(string propertyName, FilterExpressionOperatorType op, object value) Parameters
- propertyName:
string - op:
FilterExpressionOperatorType - value:
object
Returns any
Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)
Section titled "Operation(IgbFilterExpression, FilterExpressionOperatorType, IgbFilterExpression)"Inherited from: IgbFilterExpression
Creates an operator filter expression.
public static IgbOperationFilterExpression Operation(IgbFilterExpression left, FilterExpressionOperatorType op, IgbFilterExpression right) Parameters
- left:
IgbFilterExpression - op:
FilterExpressionOperatorType - right:
IgbFilterExpression
Returns any
Operation(string, FilterExpressionOperatorType, IgbFilterExpression)
Section titled "Operation(string, FilterExpressionOperatorType, IgbFilterExpression)"Inherited from: IgbFilterExpression
Creates an operator filter expression.
public static IgbOperationFilterExpression Operation(string propertyName, FilterExpressionOperatorType op, IgbFilterExpression right) Parameters
- propertyName:
string - op:
FilterExpressionOperatorType - right:
IgbFilterExpression
Returns any
Operation(IgbFilterExpression, FilterExpressionOperatorType, object)
Section titled "Operation(IgbFilterExpression, FilterExpressionOperatorType, object)"Inherited from: IgbFilterExpression
Creates an operator filter expression.
public static IgbOperationFilterExpression Operation(IgbFilterExpression left, FilterExpressionOperatorType op, object value) Parameters
- left:
IgbFilterExpression - op:
FilterExpressionOperatorType - value:
object
Returns any
Function(FilterExpressionFunctionType, params IgbFilterExpression[])
Section titled "Function(FilterExpressionFunctionType, params IgbFilterExpression[])"Inherited from: IgbFilterExpression
Creates an function filter expression.
public static IgbFunctionFilterExpression Function(FilterExpressionFunctionType func, params IgbFilterExpression[] args) Parameters
- func:
FilterExpressionFunctionType - args:
IgbFilterExpression[]
Returns any
Cast(DataSourceSchemaPropertyType)
Section titled "Cast(DataSourceSchemaPropertyType)"Inherited from: IgbFilterExpression
Returns an expression that is an Cast expression of the current expression and propertyType.
public IgbFilterExpression Cast(DataSourceSchemaPropertyType propertyType) Parameters
- propertyType:
DataSourceSchemaPropertyType
Returns any
Cast(string)
Section titled "Cast(string)"Inherited from: IgbFilterExpression
Returns an expression that is an Cast expression of the current expression and propertyType.
public IgbFilterExpression Cast(string objectType) Parameters
- objectType:
string
Returns any
Group()
Section titled "Group()"Inherited from: IgbFilterExpression
Returns an expression that is a group expression of the current expression.
public IgbFilterExpression Group() Returns any
And(IgbFilterExpression)
Section titled "And(IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an And expression of the current expression and right.
public IgbFilterExpression And(IgbFilterExpression right) Parameters
- right:
IgbFilterExpression
Returns any
Or(IgbFilterExpression)
Section titled "Or(IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an Or expression of the current expression and right.
public IgbFilterExpression Or(IgbFilterExpression right) Parameters
- right:
IgbFilterExpression
Returns any
Not()
Section titled "Not()"Inherited from: IgbFilterExpression
Returns an expression that is a Not expression of the current expression.
public IgbFilterExpression Not() Returns any
Add(IgbFilterExpression)
Section titled "Add(IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an Add expression of the current expression and right.
public IgbFilterExpression Add(IgbFilterExpression right) Parameters
- right:
IgbFilterExpression
Returns any
Add(object)
Section titled "Add(object)"Inherited from: IgbFilterExpression
Returns an expression that is an Add expression of the current expression and literal value.
public IgbFilterExpression Add(object literalValue) Parameters
- literalValue:
object
Returns any
Plus(IgbFilterExpression)
Section titled "Plus(IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an Add expression of the current expression and right.
public IgbFilterExpression Plus(IgbFilterExpression right) Parameters
- right:
IgbFilterExpression
Returns any
Plus(object)
Section titled "Plus(object)"Inherited from: IgbFilterExpression
Returns an expression that is an Add expression of the current expression and literalValue.
public IgbFilterExpression Plus(object literalValue) Parameters
- literalValue:
object
Returns any
Divide(IgbFilterExpression)
Section titled "Divide(IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is a Divide expression of the current expression and right.
public IgbFilterExpression Divide(IgbFilterExpression right) Parameters
- right:
IgbFilterExpression
Returns any
Divide(object)
Section titled "Divide(object)"Inherited from: IgbFilterExpression
Returns an expression that is a Divide expression of the current expression and literalValue.
public IgbFilterExpression Divide(object literalValue) Parameters
- literalValue:
object
Returns any
DividedBy(IgbFilterExpression)
Section titled "DividedBy(IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is a Divide expression of the current expression and right.
public IgbFilterExpression DividedBy(IgbFilterExpression right) Parameters
- right:
IgbFilterExpression
Returns any
DividedBy(object)
Section titled "DividedBy(object)"Inherited from: IgbFilterExpression
Returns an expression that is a Divide expression of the current expression and literalValue.
public IgbFilterExpression DividedBy(object literalValue) Parameters
- literalValue:
object
Returns any
IsEqualTo(IgbFilterExpression)
Section titled "IsEqualTo(IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an IsEqualTo expression of the current expression and right.
public IgbFilterExpression IsEqualTo(IgbFilterExpression right) Parameters
- right:
IgbFilterExpression
Returns any
IsEqualTo(object)
Section titled "IsEqualTo(object)"Inherited from: IgbFilterExpression
Returns an expression that is an IsEqualTo expression of the current expression and right.
public IgbFilterExpression IsEqualTo(object literalValue) Parameters
- literalValue:
object
Returns any
IsGreaterThan(IgbFilterExpression)
Section titled "IsGreaterThan(IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an IsGreaterThan expression of the current expression and right.
public IgbFilterExpression IsGreaterThan(IgbFilterExpression right) Parameters
- right:
IgbFilterExpression
Returns any
IsGreaterThan(object)
Section titled "IsGreaterThan(object)"Inherited from: IgbFilterExpression
Returns an expression that is an IsGreaterThan expression of the current expression and right.
public IgbFilterExpression IsGreaterThan(object literalValue) Parameters
- literalValue:
object
Returns any
IsGreaterThanOrEqualTo(IgbFilterExpression)
Section titled "IsGreaterThanOrEqualTo(IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an IsGreaterThanOrEqualTo expression of the current expression and right.
public IgbFilterExpression IsGreaterThanOrEqualTo(IgbFilterExpression right) Parameters
- right:
IgbFilterExpression
Returns any
IsGreaterThanOrEqualTo(object)
Section titled "IsGreaterThanOrEqualTo(object)"Inherited from: IgbFilterExpression
Returns an expression that is an IsGreaterThanOrEqualTo expression of the current expression and right.
public IgbFilterExpression IsGreaterThanOrEqualTo(object literalValue) Parameters
- literalValue:
object
Returns any
IsLessThan(IgbFilterExpression)
Section titled "IsLessThan(IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an IsLessThan expression of the current expression and right.
public IgbFilterExpression IsLessThan(IgbFilterExpression right) Parameters
- right:
IgbFilterExpression
Returns any
IsLessThan(object)
Section titled "IsLessThan(object)"Inherited from: IgbFilterExpression
Returns an expression that is an IsGreaterThanOrEqualTo expression of the current expression and right.
public IgbFilterExpression IsLessThan(object literalValue) Parameters
- literalValue:
object
Returns any
IsLessThanOrEqualTo(IgbFilterExpression)
Section titled "IsLessThanOrEqualTo(IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an IsLessThanOrEqualTo expression of the current expression and right.
public IgbFilterExpression IsLessThanOrEqualTo(IgbFilterExpression right) Parameters
- right:
IgbFilterExpression
Returns any
IsLessThanOrEqualTo(object)
Section titled "IsLessThanOrEqualTo(object)"Inherited from: IgbFilterExpression
Returns an expression that is an IsGreaterThanOrEqualTo expression of the current expression and right.
public IgbFilterExpression IsLessThanOrEqualTo(object literalValue) Parameters
- literalValue:
object
Returns any
Modulo(IgbFilterExpression)
Section titled "Modulo(IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an Modulus expression of the current expression and right.
public IgbFilterExpression Modulo(IgbFilterExpression right) Parameters
- right:
IgbFilterExpression
Returns any
Modulo(object)
Section titled "Modulo(object)"Inherited from: IgbFilterExpression
Returns an expression that is an Modulus expression of the current expression and right.
public IgbFilterExpression Modulo(object literalValue) Parameters
- literalValue:
object
Returns any
Multiply(IgbFilterExpression)
Section titled "Multiply(IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an Multiply expression of the current expression and right.
public IgbFilterExpression Multiply(IgbFilterExpression right) Parameters
- right:
IgbFilterExpression
Returns any
Multiply(object)
Section titled "Multiply(object)"Inherited from: IgbFilterExpression
Returns an expression that is an Multiply expression of the current expression and right.
public IgbFilterExpression Multiply(object literalValue) Parameters
- literalValue:
object
Returns any
Times(IgbFilterExpression)
Section titled "Times(IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an Multiply expression of the current expression and right.
public IgbFilterExpression Times(IgbFilterExpression right) Parameters
- right:
IgbFilterExpression
Returns any
Times(object)
Section titled "Times(object)"Inherited from: IgbFilterExpression
Returns an expression that is an Multiply expression of the current expression and right.
public IgbFilterExpression Times(object literalValue) Parameters
- literalValue:
object
Returns any
IsNotEqualTo(IgbFilterExpression)
Section titled "IsNotEqualTo(IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an IsNotEqualTo expression of the current expression and right.
public IgbFilterExpression IsNotEqualTo(IgbFilterExpression right) Parameters
- right:
IgbFilterExpression
Returns any
IsNotEqualTo(object)
Section titled "IsNotEqualTo(object)"Inherited from: IgbFilterExpression
Returns an expression that is an IsNotEqualTo expression of the current expression and right.
public IgbFilterExpression IsNotEqualTo(object literalValue) Parameters
- literalValue:
object
Returns any
Subtract(IgbFilterExpression)
Section titled "Subtract(IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an Subtract expression of the current expression and right.
public IgbFilterExpression Subtract(IgbFilterExpression right) Parameters
- right:
IgbFilterExpression
Returns any
Subtract(object)
Section titled "Subtract(object)"Inherited from: IgbFilterExpression
Returns an expression that is an Subtract expression of the current expression and right.
public IgbFilterExpression Subtract(object literalValue) Parameters
- literalValue:
object
Returns any
Minus(IgbFilterExpression)
Section titled "Minus(IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an Subtract expression of the current expression and right.
public IgbFilterExpression Minus(IgbFilterExpression right) Parameters
- right:
IgbFilterExpression
Returns any
Minus(object)
Section titled "Minus(object)"Inherited from: IgbFilterExpression
Returns an expression that is an Subtract expression of the current expression and right.
public IgbFilterExpression Minus(object literalValue) Parameters
- literalValue:
object
Returns any
Ceiling()
Section titled "Ceiling()"Inherited from: IgbFilterExpression
Returns an expression that is an Ceiling expression of the current expression.
public IgbFilterExpression Ceiling() Returns any
Concat(IgbFilterExpression)
Section titled "Concat(IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an Concat expression of the current expression and toAppend.
public IgbFilterExpression Concat(IgbFilterExpression toAppend) Parameters
- toAppend:
IgbFilterExpression
Returns any
Concat(string)
Section titled "Concat(string)"Inherited from: IgbFilterExpression
Returns an expression that is an Contains expression of the current expression and subString.
public IgbFilterExpression Concat(string toAppend) Parameters
- toAppend:
string
Returns any
Contains(IgbFilterExpression)
Section titled "Contains(IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an Contains expression of the current expression and subString.
public IgbFilterExpression Contains(IgbFilterExpression subString) Parameters
- subString:
IgbFilterExpression
Returns any
Contains(string)
Section titled "Contains(string)"Inherited from: IgbFilterExpression
Returns an expression that is an Contains expression of the current expression and subString.
public IgbFilterExpression Contains(string subString) Parameters
- subString:
string
Returns any
Day()
Section titled "Day()"Inherited from: IgbFilterExpression
Returns an expression that is an Day expression of the current expression.
public IgbFilterExpression Day() Returns any
EndsWith(IgbFilterExpression)
Section titled "EndsWith(IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an EndsWith expression of the current expression and subString.
public IgbFilterExpression EndsWith(IgbFilterExpression subString) Parameters
- subString:
IgbFilterExpression
Returns any
EndsWith(string)
Section titled "EndsWith(string)"Inherited from: IgbFilterExpression
Returns an expression that is an EndsWith expression of the current expression and subString.
public IgbFilterExpression EndsWith(string subString) Parameters
- subString:
string
Returns any
Floor()
Section titled "Floor()"Inherited from: IgbFilterExpression
Returns an expression that is a Floor expression of the current expression.
public IgbFilterExpression Floor() Returns any
Hour()
Section titled "Hour()"Inherited from: IgbFilterExpression
Returns an expression that is an Hour expression of the current expression.
public IgbFilterExpression Hour() Returns any
IndexOf(IgbFilterExpression)
Section titled "IndexOf(IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an IndexOf expression of the current expression and toFind.
public IgbFilterExpression IndexOf(IgbFilterExpression toFind) Parameters
- toFind:
IgbFilterExpression
Returns any
IndexOf(string)
Section titled "IndexOf(string)"Inherited from: IgbFilterExpression
Returns an expression that is an IndexOf expression of the current expression and toFind.
public IgbFilterExpression IndexOf(string toFind) Parameters
- toFind:
string
Returns any
Length()
Section titled "Length()"Inherited from: IgbFilterExpression
Returns an expression that is an Length expression of the current expression.
public IgbFilterExpression Length() Returns any
Minute()
Section titled "Minute()"Inherited from: IgbFilterExpression
Returns an expression that is an Minute expression of the current expression.
public IgbFilterExpression Minute() Returns any
Month()
Section titled "Month()"Inherited from: IgbFilterExpression
Returns an expression that is an Month expression of the current expression.
public IgbFilterExpression Month() Returns any
Replace(IgbFilterExpression, IgbFilterExpression)
Section titled "Replace(IgbFilterExpression, IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an Replace expression of the current expression.
public IgbFilterExpression Replace(IgbFilterExpression toFind, IgbFilterExpression replacement) Parameters
- toFind:
IgbFilterExpression - replacement:
IgbFilterExpression
Returns any
Replace(string, IgbFilterExpression)
Section titled "Replace(string, IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an Replace expression of the current expression.
public IgbFilterExpression Replace(string toFind, IgbFilterExpression replacement) Parameters
- toFind:
string - replacement:
IgbFilterExpression
Returns any
Replace(IgbFilterExpression, string)
Section titled "Replace(IgbFilterExpression, string)"Inherited from: IgbFilterExpression
Returns an expression that is an Replace expression of the current expression.
public IgbFilterExpression Replace(IgbFilterExpression toFind, string replacement) Parameters
- toFind:
IgbFilterExpression - replacement:
string
Returns any
Replace(string, string)
Section titled "Replace(string, string)"Inherited from: IgbFilterExpression
Returns an expression that is an Replace expression of the current expression.
public IgbFilterExpression Replace(string toFind, string replacement) Parameters
- toFind:
string - replacement:
string
Returns any
Round()
Section titled "Round()"Inherited from: IgbFilterExpression
Returns an expression that is an Round expression of the current expression.
public IgbFilterExpression Round() Returns any
Second()
Section titled "Second()"Inherited from: IgbFilterExpression
Returns an expression that is an Second expression of the current expression.
public IgbFilterExpression Second() Returns any
StartsWith(IgbFilterExpression)
Section titled "StartsWith(IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an StartsWith expression of the current expression.
public IgbFilterExpression StartsWith(IgbFilterExpression subString) Parameters
- subString:
IgbFilterExpression
Returns any
StartsWith(string)
Section titled "StartsWith(string)"Inherited from: IgbFilterExpression
Returns an expression that is an StartsWith expression of the current expression.
public IgbFilterExpression StartsWith(string subString) Parameters
- subString:
string
Returns any
Substring(IgbFilterExpression)
Section titled "Substring(IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an Substring expression of the current expression.
public IgbFilterExpression Substring(IgbFilterExpression startIndex) Parameters
- startIndex:
IgbFilterExpression
Returns any
Substring(int)
Section titled "Substring(int)"Inherited from: IgbFilterExpression
Returns an expression that is an Substring expression of the current expression.
public IgbFilterExpression Substring(int startIndex) Parameters
- startIndex:
int
Returns any
Substring(IgbFilterExpression, IgbFilterExpression)
Section titled "Substring(IgbFilterExpression, IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an Substring expression of the current expression.
public IgbFilterExpression Substring(IgbFilterExpression startIndex, IgbFilterExpression length) Parameters
- startIndex:
IgbFilterExpression - length:
IgbFilterExpression
Returns any
Substring(int, IgbFilterExpression)
Section titled "Substring(int, IgbFilterExpression)"Inherited from: IgbFilterExpression
Returns an expression that is an Substring expression of the current expression.
public IgbFilterExpression Substring(int startIndex, IgbFilterExpression length) Parameters
- startIndex:
int - length:
IgbFilterExpression
Returns any
Substring(IgbFilterExpression, int)
Section titled "Substring(IgbFilterExpression, int)"Inherited from: IgbFilterExpression
Returns an expression that is an Substring expression of the current expression.
public IgbFilterExpression Substring(IgbFilterExpression startIndex, int length) Parameters
- startIndex:
IgbFilterExpression - length:
int
Returns any
Substring(int, int)
Section titled "Substring(int, int)"Inherited from: IgbFilterExpression
Returns an expression that is an Substring expression of the current expression.
public IgbFilterExpression Substring(int startIndex, int length) Parameters
- startIndex:
int - length:
int
Returns any
ToLower()
Section titled "ToLower()"Inherited from: IgbFilterExpression
Returns an expression that is an ToLower expression of the current expression.
public IgbFilterExpression ToLower() Returns any
ToUpper()
Section titled "ToUpper()"Inherited from: IgbFilterExpression
Returns an expression that is an ToUpper expression of the current expression.
public IgbFilterExpression ToUpper() Returns any
Trim()
Section titled "Trim()"Inherited from: IgbFilterExpression
Returns an expression that is an Trim expression of the current expression.
public IgbFilterExpression Trim() Returns any
Year()
Section titled "Year()"Inherited from: IgbFilterExpression
Returns an expression that is an Year expression of the current expression.
public IgbFilterExpression Year() Returns any
Date()
Section titled "Date()"Inherited from: IgbFilterExpression
Returns an expression that is an Date expression of the current expression.
public IgbFilterExpression Date() Returns any
Time()
Section titled "Time()"Inherited from: IgbFilterExpression
Returns an expression that is an Time expression of the current expression.
public IgbFilterExpression Time() Returns any
Now()
Section titled "Now()"Inherited from: IgbFilterExpression
Returns an expression that is an Now expression.
public IgbFilterExpression Now() Returns any
IsOf(DataSourceSchemaPropertyType)
Section titled "IsOf(DataSourceSchemaPropertyType)"Inherited from: IgbFilterExpression
Returns an expression that is an IsOf expression of the current expression and propertyType.
public IgbFilterExpression IsOf(DataSourceSchemaPropertyType propertyType) Parameters
- propertyType:
DataSourceSchemaPropertyType
Returns any
IsOf(string)
Section titled "IsOf(string)"Inherited from: IgbFilterExpression
Returns an expression that is an IsOf expression of the current expression and propertyType.
public IgbFilterExpression IsOf(string objectType) Parameters
- objectType:
string
Returns any
MarkAutoGeneratedAsync()
Section titled "MarkAutoGeneratedAsync()"Inherited from: IgbFilterExpression
public Task MarkAutoGeneratedAsync() Returns any
MarkAutoGenerated()
Section titled "MarkAutoGenerated()"Inherited from: IgbFilterExpression
public void MarkAutoGenerated() Returns any
EnvAsync(string)
Section titled "EnvAsync(string)"Inherited from: IgbFilterExpression
Returns an environment variable, if applicable.
public Task<IgbFilterExpression> EnvAsync(string varName) Parameters
- varName:
string
Returns any
Env(string)
Section titled "Env(string)"Inherited from: IgbFilterExpression
public IgbFilterExpression Env(string varName) Parameters
- varName:
string
Returns any
EnsureModulesLoaded()
Section titled "EnsureModulesLoaded()"Inherited from: BaseRendererElement
protected virtual void EnsureModulesLoaded() Returns any
BuildRenderTree(RenderTreeBuilder)
Section titled "BuildRenderTree(RenderTreeBuilder)"Inherited from: BaseRendererElement
protected override void BuildRenderTree(RenderTreeBuilder builder) Parameters
- builder:
RenderTreeBuilder
Returns any
OnElementNameChanged(BaseRendererElement, string, string)
Section titled "OnElementNameChanged(BaseRendererElement, string, string)"Inherited from: BaseRendererElement
protected void OnElementNameChanged(BaseRendererElement element, string oldName, string newName) Parameters
- element:
BaseRendererElement - oldName:
string - newName:
string
Returns any
InvokeMethod(string, object[], string[], ElementReference[])
Section titled "InvokeMethod(string, object[], string[], ElementReference[])"Inherited from: BaseRendererElement
protected Task<object> InvokeMethod(string methodName, object[] arguments, string[] types, ElementReference[] nativeElements = null) Parameters
- methodName:
string - arguments:
object[] - types:
string[] - nativeElements:
ElementReference[]
Returns any
InvokeMethodSync(string, object[], string[], ElementReference[])
Section titled "InvokeMethodSync(string, object[], string[], ElementReference[])"Inherited from: BaseRendererElement
protected object InvokeMethodSync(string methodName, object[] arguments, string[] types, ElementReference[] nativeElements = null) Parameters
- methodName:
string - arguments:
object[] - types:
string[] - nativeElements:
ElementReference[]
Returns any
InvokeMethodHelper(string, string, object[], string[], ElementReference[])
Section titled "InvokeMethodHelper(string, string, object[], string[], ElementReference[])"Inherited from: BaseRendererElement
protected Task<object> InvokeMethodHelper(string target, string methodName, object[] arguments, string[] types, ElementReference[] nativeElements) Parameters
- target:
string - methodName:
string - arguments:
object[] - types:
string[] - nativeElements:
ElementReference[]
Returns any
InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])
Section titled "InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])"Inherited from: BaseRendererElement
protected object InvokeMethodHelperSync(string target, string methodName, object[] arguments, string[] types, ElementReference[] nativeElements) Parameters
- target:
string - methodName:
string - arguments:
object[] - types:
string[] - nativeElements:
ElementReference[]
Returns any
IsPropDirty(string)
Section titled "IsPropDirty(string)"Inherited from: BaseRendererElement
protected bool IsPropDirty(string propertyName) Parameters
- propertyName:
string
Returns any
Serialize(SerializationContext, string)
Section titled "Serialize(SerializationContext, string)"Inherited from: BaseRendererElement
public void Serialize(SerializationContext context, string propertyName = null) Parameters
- context:
SerializationContext - propertyName:
string
Returns any
Serialize()
Section titled "Serialize()"Inherited from: BaseRendererElement
public string Serialize() Returns any
EnsureValid()
Section titled "EnsureValid()"Inherited from: BaseRendererElement
protected void EnsureValid() Returns any
SetResourceStringAsync(string, string, string)
Section titled "SetResourceStringAsync(string, string, string)"Inherited from: BaseRendererElement
protected Task<object> SetResourceStringAsync(string grouping, string id, string value) Parameters
- grouping:
string - id:
string - value:
string
Returns any
SetResourceStringAsync(string, string)
Section titled "SetResourceStringAsync(string, string)"Inherited from: BaseRendererElement
protected Task<object> SetResourceStringAsync(string grouping, string json) Parameters
- grouping:
string - json:
string
Returns any
FindByName(string)
Section titled "FindByName(string)"public override object FindByName(string name) Parameters
- name:
string
Returns any
FromEventJson(BaseRendererControl, Dictionary<string, object>)
Section titled "FromEventJson(BaseRendererControl, Dictionary<string, object>)"protected override void FromEventJson(BaseRendererControl control, Dictionary<string, object> args) Parameters
- control:
BaseRendererControl - args:
Dictionary
Returns any
ToEventJson(BaseRendererControl, Dictionary<string, object>)
Section titled "ToEventJson(BaseRendererControl, Dictionary<string, object>)"protected override void ToEventJson(BaseRendererControl control, Dictionary<string, object> args) Parameters
- control:
BaseRendererControl - args:
Dictionary