| BCRepository Constructor (String, String, Boolean, String) | 
 
            Initializes a new instance of the 
BCRepository class. 
            Connects to the server and opens a vault for reading or writing. 
            Connection is closed when the instance is disposed.
            
 
    Namespace: 
   BlueCieloECM.InnoCielo.Meridian.Server
    Assembly:
   BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 4.0.0.0 (4.0.96.0)
 Syntax
Syntaxpublic BCRepository(
	string vaultOrDataStoreName,
	string machineName,
	bool userMode,
	string workAreaID
)
Public Sub New ( 
	vaultOrDataStoreName As String,
	machineName As String,
	userMode As Boolean,
	workAreaID As String
)
Parameters
- vaultOrDataStoreName
- Type: SystemString
 The name of the vault or data store. 
            If  or an empty string, then the default vault will be opened.
- machineName
- Type: SystemString
 The name of the server machine. 
            If  or an empty string, then a local machine is used.
- userMode
- Type: SystemBoolean
 A value indicating whether to open the vault in User mode or Submitted mode.
- 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.
 Remarks
Remarks
            Method starts a database transaction. To save changes to the vault, use the
            
Commit method. To revoke changes, use the 
Rollback method.
            
 See Also
See Also