Table of Contents

Class XenDesktopSiteLogEntry

Namespace
CENTREL.XIA.Configuration.Types
Assembly
CENTREL.XIA.Configuration.Types.dll

Represents an individual XenDesktop site log entry.

public class XenDesktopSiteLogEntry : GlobalSerializableClassicBase, IComparable<XenDesktopSiteLogEntry>
Inheritance
XenDesktopSiteLogEntry
Implements

Constructors

XenDesktopSiteLogEntry()

Initializes a new instance of the CENTREL.XIA.Configuration.Types.XenDesktopSiteLogEntry class.

public XenDesktopSiteLogEntry()

Properties

EndTime

Gets or sets the date and time that the action ended.

public DateTime EndTime { get; set; }

Property Value

DateTime

Id

Gets or sets the unqiue identifier of the event in GUID format - for example "d19a8187-2384-4646-b7ef-4d9b6e00e629".

public string Id { get; set; }

Property Value

string

IsSuccessful

Gets or sets whether the action was successful.

public BooleanOption IsSuccessful { get; set; }

Property Value

BooleanOption

OperationType

Gets or sets the operation type.

public XenDesktopSiteLogOperationType OperationType { get; set; }

Property Value

XenDesktopSiteLogOperationType

Source

Gets or sets the source of the configuration change - for example "Studio" or "DelegatedAdmin".

public string Source { get; set; }

Property Value

string

StartTime

Gets or sets the date and time that the action started.

public DateTime StartTime { get; set; }

Property Value

DateTime

Text

Gets or sets the text displayed for the task – for example "Update Application 'ERP'".

public string Text { get; set; }

Property Value

string

User

Gets or sets the name of the user that performed the task - for example "CORP\Administrator".

public string User { get; set; }

Property Value

string

Methods

CompareTo(XenDesktopSiteLogEntry)

Compares two CENTREL.XIA.Configuration.Types.XenDesktopSiteLogEntry objects to allow sorting by end time.

public int CompareTo(XenDesktopSiteLogEntry other)

Parameters

other XenDesktopSiteLogEntry

The CENTREL.XIA.Configuration.Types.XenDesktopSiteLogEntry to compare to.

Returns

int

The sort order of the two items.

ToString()

Returns the log entry as a human readable string.

public override string ToString()

Returns

string

The log entry as a human readable string.