BCNameSpaceCreateRepository Method (String, String, NullableDateTime) |
Note: This API is now obsolete.
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: 4.0.0.0 (4.0.19.0)
Syntax[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
)
<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
public:
[ObsoleteAttribute(L"This method might be removed from future versions. Use the constructor of the "BCRepository" class.")]
BCRepository^ CreateRepository(
String^ address,
String^ workAreaID,
Nullable<DateTime> moment
)
[<ObsoleteAttribute("This method might be removed from future versions. Use the constructor of the "BCRepository" class.")>]
member CreateRepository :
address : string *
workAreaID : string *
moment : Nullable<DateTime> -> BCRepository
Parameters
- address
- Type: SystemString
The address of the repository to create in format: "\\{MachineName}\{DataStoreName}\{VaultName}".
- workAreaID
- Type: SystemString
The ID property value of the work area.
If or an empty string then the vault will be opened in the context of the main area.
- moment
- Type: SystemNullableDateTime
Specifies the date at which to open the vault in History mode.
If , then the vault will be opened in the present time.
Return Value
Type:
BCRepository
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.
See Also