Returns a new BCRepository instance that represents connection to the vault.
Namespace: BlueCieloECM.InnoCielo.Meridian.ClientAssembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)
Syntax
C# |
---|
[ObsoleteAttribute("This method might be removed from future versions. Use the constructor of the "BCRepository" class.")] public BCRepository CreateRepository( string address, string workAreaID, Nullable<DateTime> moment ) |
Visual Basic |
---|
<ObsoleteAttribute("This method might be removed from future versions. Use the constructor of the "BCRepository" class.")> _ Public Function CreateRepository ( _ address As String, _ workAreaID As String, _ moment As Nullable(Of DateTime) _ ) As BCRepository |
Visual C++ |
---|
[ObsoleteAttribute(L"This method might be removed from future versions. Use the constructor of the "BCRepository" class.")] public: BCRepository^ CreateRepository( String^ address, String^ workAreaID, Nullable<DateTime> moment ) |
Parameters
- address
- Type: System..::..String
The address of the repository to create in format: "\\{MachineName}\{DataStoreName}\{VaultName}".
- workAreaID
- Type: System..::..String
The ID property value of the work area. If nullNothingnullptra null reference (Nothing in Visual Basic) or an empty string then the vault will be opened in the context of the main area.
- moment
- Type: System..::..Nullable<(Of <(<'DateTime>)>)>
Specifies the date at which to open the vault in History mode. If nullNothingnullptra null reference (Nothing in Visual Basic), then the vault will be opened in the present time.
Return Value
The new BCRepository instance that represents the connection to the vault.Remarks
This method might be removed from future versions. Use the constructor of the BCRepository class.