The number of pages in a region of the database. If this value is never set, the default region size for the database's page size is used. You can set the database page size using PageSize. If the database already exists, this value is ignored. If the specified region size is larger than the maximum region size for the database's page size, an error is returned when Open(String, DatabaseConfig) is called. The maximum allowable region size is included in the error message.

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

Syntax

C#
public uint RegionSize { get; set; }
Visual Basic (Declaration)
Public Property RegionSize As UInteger
Visual C++
public:
property unsigned int RegionSize {
	unsigned int get ();
	void set (unsigned int value);
}

See Also