Table of Contents

Class CommandLogSearchFilter

Namespace
Dynamicweb.CoreUI.Data.CommandLog
Assembly
Dynamicweb.CoreUI.dll

Represents an object used to filter results when getting command logs

public sealed class CommandLogSearchFilter
Inheritance
CommandLogSearchFilter
Inherited Members

Properties

OrderBy

Gets or sets order by ds column name

public string? OrderBy { get; init; }

Property Value

string

OrderByDirection

Gets or sets order by direction

public string? OrderByDirection { get; init; }

Property Value

string

Remarks

Supports "ASC" and "DESC"

PageNumber

Gets or sets page number for results

public int PageNumber { get; init; }

Property Value

int

PageSize

Get or sets amount of records retrived

public int PageSize { get; init; }

Property Value

int

SearchValue

Gets or sets value to be searched for command log id or model type

public string? SearchValue { get; init; }

Property Value

string

TimestampFrom

Gets or sets Timestamp from filter

public DateTime? TimestampFrom { get; init; }

Property Value

DateTime?

TimestampTo

Gets or sets Timestamp to filter

public DateTime? TimestampTo { get; init; }

Property Value

DateTime?

UserIds

Gets or sets user ids collection

public IEnumerable<int>? UserIds { get; init; }

Property Value

IEnumerable<int>
To top