Creates a local data object with the specified URI as it's identity. No state is loaded from the database until the object set or get methods are called.

Namespace: BrightstarDB.Client
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
IDataObject MakeDataObject(
	string identity
)
Visual Basic
Function MakeDataObject ( 
	identity As String
) As IDataObject
Visual C++
IDataObject^ MakeDataObject(
	String^ identity
)
F#
abstract MakeDataObject : 
        identity : string -> IDataObject 

Parameters

identity
Type: System..::..String
The URI identity for the node.

Return Value

Type: IDataObject
An IDataObject instance

See Also