Table of Contents

Class FilterInfo

Namespace
Dynamicweb.CoreUI.Data.Filtering
Assembly
Dynamicweb.CoreUI.dll
public sealed class FilterInfo
Inheritance
FilterInfo
Inherited Members

Fields

FilterSeparator

public static readonly char FilterSeparator

Field Value

char

PartsSeparator

public static readonly char PartsSeparator

Field Value

char

Properties

Name

public string Name { get; set; }

Property Value

string

Operator

public string Operator { get; set; }

Property Value

string

Value

public string Value { get; set; }

Property Value

string

Methods

Deconstruct(out string, out string, out string)

public void Deconstruct(out string name, out string @operator, out string value)

Parameters

name string
operator string
value string

From(string)

public static FilterInfo From(string input)

Parameters

input string

Returns

FilterInfo

ParseFilterOperator(string)

public static FilterOperator ParseFilterOperator(string @operator)

Parameters

operator string

Returns

FilterOperator

SerializeFilterOperator(FilterOperator)

public static string SerializeFilterOperator(FilterOperator @operator)

Parameters

operator FilterOperator

Returns

string

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.

To top