Previous in Contents Next in Contents

UseTransactions Property

This property specifies the transaction model for the service.

Syntax

ReplicationServer.UseTransactions

Remarks

You must have Site Server Publishing administrator privileges on the server to call this method.

Example

The following example specifies that the service uses transactions.

Option Explicit 
On Error Resume Next

dim ReplServer
set ReplServer = CreateObject("CrsApi.ReplicationServer")
ReplServer.Initialize("")

ReplServer.UseTransactions = True

'Release Server object
set ReplServer = Nothing

See Also

Get, ReplicationProject.ApplyTransaction


© 1997-2000 Microsoft Corporation. All rights reserved.