This property specifies whether the connection from the Content Deployment server to the destination servers is reliable.
Syntax
ReplicationClient.FastMode [=Mode]
Parameters
Mode
If True, fast replication mode is enabled; if False, fast replication mode is disabled.
Remarks
You should use fast replication mode unless the connection to the destination servers is unreliable.
You must have Site Server Publishing administrator privileges on the server to get or set this property.
This property is initially set from the project description during a call to ReplicationClient.Initialize.
You can set this property at any time, but the new settings do not take effect until a connect operation, including SendFile in connectionless mode, is performed.
Example
The following example initializes Project1 and enables fast replication mode.
Option Explicit
On Error Resume Next
dim Client
set Client = CreateObject("CrsApi.ReplicationClient")
Client.Initialize("Project1")
Client.FastMode = True
'Release Client object
set Client = Nothing
See Also