This property specifies whether files are replicated in fast mode or in frame mode. If True, files are replicated in fast mode; if False, files are replicated in frame mode.
Syntax
ReplicationClient.FastMode
Remarks
You should set FastMode to True if you have a high-throughput connection to the destination servers (typically an intranet replication).
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 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