Click or drag to resize
SQLiteDatabaseConnectionBuilderWithout Method
Creates a new SQLiteDatabaseConnectionBuilder without the specified parameter.

Namespace: SQLitePCL.pretty
Assembly: SQLitePCL.pretty (in SQLitePCL.pretty.dll) Version: 1.0.0.0 (1.0.0)
Syntax
public SQLiteDatabaseConnectionBuilder Without(
	bool authorizer = false,
	bool commitHook = false,
	bool progressHandler = false,
	bool vfs = false
)

Parameters

authorizer (Optional)
Type: SystemBoolean
if removes the authorizer callback from the new SQLiteDatabaseConnectionBuilder instance.
commitHook (Optional)
Type: SystemBoolean
if removes the commitHook callback from the new SQLiteDatabaseConnectionBuilder instance.
progressHandler (Optional)
Type: SystemBoolean
if removes the progressHandler callback from the new SQLiteDatabaseConnectionBuilder instance.
vfs (Optional)
Type: SystemBoolean

Return Value

Type: SQLiteDatabaseConnectionBuilder
A SQLiteDatabaseConnectionBuilder instance.
See Also