Table of Contents

Class FilterOperator.String

Namespace
MudBlazor
Assembly
MudBlazor.dll

Represents filters which are available for string values.

public static class FilterOperator.String
Inheritance
FilterOperator.String
Inherited Members

Remarks

You can control case sensitivity of filters by setting the FilterCaseSensitivity property.

Fields

Contains

Find text containing the filter value.

public const string Contains = "contains"

Field Value

string

Empty

Find text which is null, empty, or whitespace.

public const string Empty = "is empty"

Field Value

string

EndsWith

Find text which ends with the filter value.

public const string EndsWith = "ends with"

Field Value

string

Equal

Find text which is the same as the filter value.

public const string Equal = "equals"

Field Value

string

NotContains

Find text which does not contain the filter value.

public const string NotContains = "not contains"

Field Value

string

NotEmpty

Find text which is not null, empty, or whitespace.

public const string NotEmpty = "is not empty"

Field Value

string

NotEqual

Find text which is different from the filter value.

public const string NotEqual = "not equals"

Field Value

string

StartsWith

Find text which starts with the filter value.

public const string StartsWith = "starts with"

Field Value

string