Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

DelayedAttribute Constructors

Indicates that the property’s value should not be loaded when a persistent object is being loaded. The property will be loaded the first time it is accessed.
Name Parameters Description
DelayedAttribute() none Initializes a new instance of the DelayedAttribute class.
DelayedAttribute(Boolean) updateModifiedOnly Initializes a new instance of the DelayedAttribute class with a setting indicating whether all or only modified property values are sent for update to a data store.
DelayedAttribute(String, Boolean) fieldName, updateModifiedOnly Initializes a new instance of the DelayedAttribute class with the specified settings.
DelayedAttribute(String, String, Boolean) fieldName, groupName, updateModifiedOnly Initializes a new instance of the DelayedAttribute class with the specified settings.
DelayedAttribute(String, String) fieldName, groupName Initializes a new instance of the DelayedAttribute class with the specified settings.
DelayedAttribute(String) fieldName Initializes a new instance of the DelayedAttribute class with the name of the field which stores the delayed property’s value.
See Also