Load(Stream) Method
See Also 
SourceCode.Framework Namespace > SerializationInfoProvider Class > Load Method : Load(Stream) Method



stream
The stream.

Glossary Item Box

Creates a new PersistableObject using the specified stream.

Syntax

Visual Basic (Declaration) 
Public Overloads Function Load( _
   ByVal stream As Stream _
) As PersistableObject
Visual Basic (Usage)Copy Code
Dim instance As SerializationInfoProvider
Dim stream As Stream
Dim value As PersistableObject
 
value = instance.Load(stream)
C# 
public PersistableObject Load( 
   Stream stream
)
C++/CLI 
public:
PersistableObject^ Load( 
   Stream^ stream
) 

Parameters

stream
The stream.

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