MFConfigurationAttributeLoadT Method |
Loads the configuration from the configuration storage.
Namespace:
MFiles.VAF.Common
Assembly:
MFiles.VAF (in MFiles.VAF.dll) Version: 2.3.623.2
Syntaxpublic virtual T Load<T>(
Vault vault,
T original,
IConfigurationStorage storage
)
where T : class, new()
Public Overridable Function Load(Of T As {Class, New}) (
vault As Vault,
original As T,
storage As IConfigurationStorage
) As T
public:
generic<typename T>
where T : ref class, gcnew()
virtual T Load(
Vault^ vault,
T original,
IConfigurationStorage^ storage
)
Parameters
- vault
- Type: Vault
The vault object. - original
- Type: T
The (possibly prefilled) existing object that will be populated. Can be null in which case a new instance will be created. - storage
- Type: MFiles.VAF.ConfigurationIConfigurationStorage
The configuration storage object.
Type Parameters
- T
- The configuration object's type.
Return Value
Type:
TThe populated original or new object depending whether the original was given in the first place.
See Also