Application-specific function used by a replication view to determine
            whether a database file is replicated to the local site.
            
    Namespace: 
   BerkeleyDB
    Assembly:
   libdb_dotnet60 (in libdb_dotnet60.dll) Version: 6.0.30.0
 Syntax
Syntax
| C# | 
|---|
| public delegate int ReplicationViewDelegate(
	string name,
	ref int result,
	uint flags
) | 
| Visual Basic (Declaration) | 
|---|
| Public Delegate Function ReplicationViewDelegate ( _
	name As String, _
	ByRef result As Integer, _
	flags As UInteger _
) As Integer | 
Parameters
- name
- Type: System..::.String
 The name of the database file.
- result
- Type: 
            System..::.Int32
          %
 Indicates whether or not the database file should be replicated.
            If non-zero, the database file is replicated; otherwise the database
            file is not replicated.
- flags
- Type: System..::.UInt32
 Currently unused.
 See Also
See Also