C# Class Microsoft.Isam.Esent.Interop.InstanceParameters

This class provides static properties to set and get per-instance ESENT system parameters.
Mostra file Open project: ayende/managed-esent Class Usage Examples

Public Methods

Method Description
InstanceParameters ( JET_INSTANCE instance ) : System

Initializes a new instance of the InstanceParameters class.

Private Methods

Method Description
AddTrailingDirectorySeparator ( string dir ) : string

Add a trailing directory separator character to the string.

GetBoolParameter ( JET_param param ) : bool

Get a system parameter which is a boolean.

GetIntegerParameter ( JET_param param ) : int

Get a system parameter which is an integer.

GetStringParameter ( JET_param param ) : string

Get a system parameter which is a string.

SetBoolParameter ( JET_param param, bool value ) : void

Set a system parameter which is a boolean.

SetIntegerParameter ( JET_param param, int value ) : void

Set a system parameter which is an integer.

SetStringParameter ( JET_param param, string value ) : void

Set a system parameter which is a string.

Method Details

InstanceParameters() public method

Initializes a new instance of the InstanceParameters class.
public InstanceParameters ( JET_INSTANCE instance ) : System
instance JET_INSTANCE The instance to set parameters on.
return System