Table of Contents

Class XPDelayedProperty

Namespace
DevExpress.Xpo
Assembly
DevExpress.Xpo.v24.1.dll

A delayed property. The delayed property will be loaded the first time it is accessed.

public class XPDelayedProperty
Inheritance
XPDelayedProperty
Inherited Members

Constructors

XPDelayedProperty()

Initializes a new instance of the XPDelayedProperty class.

public XPDelayedProperty()

Properties

IsLoaded

Gets whether the property’s value remains unassigned after the persistent object has been loaded from the data store.

public bool IsLoaded { get; }

Property Value

bool

true if the property’s value is unassigned after the persistent object has been loaded from the data store; otherwise, false.

IsModified

Gets the property value’s modified status.

public bool IsModified { get; }

Property Value

bool

true if the property value has been modified since the last load; otherwise, false.

Value

Gets the value of the property which is delayed for loading.

public object Value { get; set; }

Property Value

object

An object which represents the property’s value.