[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

deep update interface to store or update objects.

Namespace: Db4objects.Db4o.Ext
Assembly:   Db4objects.Db4o (in Db4objects.Db4o.dll)

Syntax

Visual Basic (Declaration)
Sub Set ( _
	obj As Object, _
	depth As Integer _
)
C#
void Set (
	Object obj,
	int depth
)
Visual C++
void Set (
	Object^ obj, 
	int depth
)

Parameters

obj
System.Object
the object to be stored or updated.
depth
System.Int32
the depth to which the object is to be updated

Remarks

deep update interface to store or update objects.

In addition to the normal storage interface, ObjectContainer#set(Object) , this method allows a manual specification of the depth, the passed object is to be updated.

See Also