DevForce Help Reference
Restore(String,Boolean) Method


File containing a serialized EntityCacheState
True to restore a file in binary format, false if the file is in text format.
Static (Shared in Visual Basic) method which creates and loads an EntityCacheState from the file specified.
Syntax
'Declaration
 
Public Overloads Shared Function Restore( _
   ByVal fileName As String, _
   Optional ByVal useBinaryFormat As Boolean _
) As EntityCacheState
'Usage
 
Dim fileName As String
Dim useBinaryFormat As Boolean
Dim value As EntityCacheState
 
value = EntityCacheState.Restore(fileName, useBinaryFormat)

Parameters

fileName
File containing a serialized EntityCacheState
useBinaryFormat
True to restore a file in binary format, false if the file is in text format.

Return Value

An EntityCacheState
Remarks
Use Restore to deserialize an EntityCacheState which was previously saved to a file.

Note that this method does not merge the EntityCacheState into an EntityManager. Call Merge or CacheStateManager.RestoreCacheState(EntityCacheState) for this. Instead of performing the Restore and merge/restore as separate steps, you can instead use CacheStateManager.RestoreCacheState(string) to accomplish the same thing.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

EntityCacheState Class
EntityCacheState Members
Overload List

Send Feedback