C-DEngine 5.105

TheStorageUtilities..::..SerializeDataToStore<(Of <(<'T>)>)> Method

Serializes a dictionary of a given type for storage in the storage service

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

Syntax


public static string SerializeDataToStore<T>(
	Dictionary<string, T> MyValue,
	string pMagicID,
	eSCMD pCMD,
	string pTableName
)
Public Shared Function SerializeDataToStore(Of T) ( _
	MyValue As Dictionary(Of String, T), _
	pMagicID As String, _
	pCMD As eSCMD, _
	pTableName As String _
) As String
public:
generic<typename T>
static String^ SerializeDataToStore(
	Dictionary<String^, T>^ MyValue, 
	String^ pMagicID, 
	eSCMD^ pCMD, 
	String^ pTableName
)

Type Parameters

T
Type of the class to be serialized

Parameters

MyValue
Type: Dictionary<(Of <(<'String, T>)>)>
Dictionary of values to be serialized
pMagicID
Type: String
cookie of the call
pCMD
Type: nsCDEngine.Engines.StorageService..::..eSCMD
Storage command to be executed with this store call
pTableName
Type: String
custom table name if required

Return Value