BMXNET 4.0 Developer API

The implementor must deserialize an object of type T from the given location based on the keys

Namespace:  IndianHealthService.BMXNet.WinForm.Configuration
Assembly:  BMXWIN40 (in BMXWIN40.dll)

Syntax

         
 C#  Visual Basic  Visual C++ 
T Read<T>(
	params string[] keys
)
Function Read(Of T) ( _
	ParamArray keys As String() _
) As T
generic<typename T>
T Read(
	... array<String^>^ keys
)

Parameters

keys
array< String >[]()[]
The keys used to locate the object

Type Parameters

T
The type of the object to be deserialized from the store

Return Value

An deserialized object, or null if no valid objects exists at the keys

See Also