C-DEngine 5.105

TheStorageUtilities..::..SerializeCreateStore Method

Serializes the CreateStore Definition

Namespace:  nsCDEngine.Engines.StorageService
Assembly:  C-DEngine (in C-DEngine.dll)

Syntax


public static string SerializeCreateStore(
	Type MyType,
	Object MyValue,
	string pDeviceName,
	string StoreDescription,
	out string pUniqueID,
	string pTableName
)
Public Shared Function SerializeCreateStore ( _
	MyType As Type, _
	MyValue As Object, _
	pDeviceName As String, _
	StoreDescription As String, _
	<OutAttribute> ByRef pUniqueID As String, _
	pTableName As String _
) As String
public:
static String^ SerializeCreateStore(
	Type^ MyType, 
	Object^ MyValue, 
	String^ pDeviceName, 
	String^ StoreDescription, 
	[OutAttribute] String^% pUniqueID, 
	String^ pTableName
)

Parameters

MyType
Type: Type
Type of the class that creates a new store
MyValue
Type: Object
Default value of the class
pDeviceName
Type: String
Name of the storage
StoreDescription
Type: String
Description of the storage
pUniqueID
Type: String%
returns a unique id for the store
pTableName
Type: String
allows to set a custom tablename for the store. if null or empty, the unique ID will be the table name

Return Value