Skip to main content
A newer version of this page is available. .

IAppointmentDependencyStorage Members

An interface of a storage which holds a collection of appointment dependencies.

Properties

Name Description
AutoReload Gets or sets whether persistent object data is automatically fetched from the data source when it is modified. Inherited from IPersistentObjectStorage<T>.
Count Gets the number of elements contained in a collection. Inherited from IPersistentObjectStorage<T>.
CustomFieldMappings Provides access to the collection of objects specifying how the custom properties of an appointment dependency map to the corresponding data fields.
DataMember Gets or sets the data source member which supplies data to the storage object. Inherited from IPersistentObjectStorage<T>.
DataSource Gets or sets the object used as the data source to store persistent objects (appointments, resources., appointment dependencies). Inherited from IPersistentObjectStorage<T>.
Filter Gets or sets a string used to filter storage objects. Inherited from IPersistentObjectStorage<T>.
FilterCriteria Gets or sets the criteria to filter persistent objects in the storage. Inherited from IPersistentObjectStorage<T>.
IsUpdateLocked Gets whether the storage has been locked for updating. Inherited from IPersistentObjectStorage<T>.
Item[Int32] Provides indexed access to individual items contained within the storage. Inherited from IPersistentObjectStorage<T>.
Items Gets the collection of appointment dependencies within the storage.
Mappings Gets an object that specifies how persistent resource properties map to the data source fields.
Storage Provides access to the base storage component which holds persistent objects of any kind. Inherited from IPersistentObjectStorage<T>.
UnboundMode Gets a value indicating if the storage is bound to data. Inherited from IPersistentObjectStorage<T>.

Methods

Name Description
Add(AppointmentDependency) Adds the specified appointment dependency object to the storage.
AddRange(AppointmentDependency[]) Appends an array of appointment dependencies to the storage.
AppendBaseMappings(MappingCollection) Clears existing base mappings and appends the specified mappings. Inherited from IPersistentObjectStorage<T>.
Clear() Locks the IPersistentObjectStorage<T> object by disallowing visual updates until the EndUpdate or CancelUpdate method is called. Inherited from IPersistentObjectStorage<T>.
CreateAppointmentDependency(Object, Object, AppointmentDependencyType) Creates a dependency of the specified type between two appointments specified by their IDs.
CreateAppointmentDependency(Object, Object) Creates a dependency between two appointments specified by their Ids.
CreateCustomFields(T) Creates the custom fields specific to this persistent object and adds them to the object’s custom fields collection. Inherited from IPersistentObjectStorage<T>.
Dispose() Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. Inherited from IDisposable.
GetColumnNames() Gets the names of data columns associated with this IPersistentObjectStorage<T> object. Inherited from IPersistentObjectStorage<T>.
GetObjectRow(T) Returns the data row object that contains information about the specified persistent object. Inherited from IPersistentObjectStorage<T>.
GetObjectValue(T, String) Obtains the value of the specified field in the data row that contains information about the specified persistent object. Inherited from IPersistentObjectStorage<T>.
LoadFromXml(Stream) Loads appointment dependencies from the stream in XML format to the resource storage.
LoadFromXml(String) Loads appointment dependencies from the specified file in XML format to the storage.
Remove(AppointmentDependency) Removes an appointment dependency from the storage.
SaveToXml(Stream) Saves appointment dependencies from the storage to the specified stream.
SaveToXml(String) Saves appointment dependencies from the storage to a file in XML format.
SetAppointmentDependencyFactory(IAppointmentDependencyFactory) Assigns the specified factory to the appointment dependency storage.
SetObjectValue(T, String, Object) Assigns the specified value to a field in the data row that contains information about the specified persistent object. Inherited from IPersistentObjectStorage<T>.
ValidateDataSource() Checks mapped data source fields and mappings for availability and duplicates. Inherited from IPersistentObjectStorage<T>.
See Also