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 will be used. You can set the database page size using PageSize. If the database already exists, this value will be ignored. If the specified region size is larger than the maximum region size for the database's page size, an error will be returned when Open(String, DatabaseConfig) is called. The maximum allowable region size will be included in the error message.

Namespace:  BerkeleyDB
Assembly:  libdb_dotnet53 (in libdb_dotnet53.dll) Version: 5.3.28.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