Create a replication view and specify the function to determine whether a database file is replicated to the local site.

Namespace:  BerkeleyDB
Assembly:  libdb_dotnet181 (in libdb_dotnet181.dll) Version: 18.1.32.0

Syntax

C#
public ReplicationViewDelegate ReplicationView { get; set; }
Visual Basic (Declaration)
Public Property ReplicationView As ReplicationViewDelegate
Visual C++
public:
property ReplicationViewDelegate^ ReplicationView {
	ReplicationViewDelegate^ get ();
	void set (ReplicationViewDelegate^ value);
}

Remarks

If it is null, the replication view is a full view and all database files are replicated to the local site. Otherwise it is a partial view and only some database files are replicated to the local site.

See Also