A ReplicationMode constant that specifies the replication mode of the object store or external repository participant. The replication mode determines how objects are replicated in a replication group.

This constant can have one of the following values:

  • MASTER: Master mode. In this mode, replicated objects in the repository can be modified and any modifications are then propagated to other participants in the replication group.
  • SLAVE: Slave mode. In this mode, replicated objects in the repository are read-only, and can change only as a result of the propagation of modifications from another repository operating in master mode in the replication group.

Namespace:  FileNet.Api.Replication
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Property ReplicationMode As ReplicationMode
C#
ReplicationMode ReplicationMode { get; set; }
Visual C++
property ReplicationMode ReplicationMode {
	ReplicationMode get ();
	void set (ReplicationMode value);
}
JavaScript
function get_replicationMode();
function set_replicationMode(value);

ToggleRemarks

ToggleSee Also