MFConfigurationAttributeLoadT Method

Loads the configuration from the configuration storage.

Definition

Namespace: MFiles.VAF.Common
Assembly: MFiles.VAF (in MFiles.VAF.dll) Version: 24.1.706.1
C#
public virtual T Load<T>(
	Vault vault,
	T original,
	IConfigurationStorage storage
)
where T : class, new()

Parameters

vault  Vault
The vault object.
original  T
The (possibly prefilled) existing object that will be populated. Can be null in which case a new instance will be created.
storage  IConfigurationStorage
The configuration storage object.

Type Parameters

T
The configuration object's type.

Return Value

T
The populated original or new object depending whether the original was given in the first place.

See Also