CSharpTest.Net
Serialize(T,INameValueStore) Method
See Also  Example Send Feedback Download Help File
CSharpTest.Net.Library Assembly > CSharpTest.Net.Reflection Namespace > PropertySerializer<T> Class > Serialize Method : Serialize(T,INameValueStore) Method

instance
rawstorage

Glossary Item Box

Writes all properties to the specified proeprty serialization

Syntax

Visual Basic (Declaration) 
Public Overloads Sub Serialize( _
   ByVal instance As T, _
   ByVal rawstorage As INameValueStore _
) 
C# 
public void Serialize( 
   T instance,
   INameValueStore rawstorage
)

Parameters

instance
rawstorage

Example

Library/Library.Test/TestPropertySerializer.cs

C#Copy Code
HaveReadOnly o = new HaveReadOnly();
o.Value = "a";

PropertySerializer<HaveReadOnly> ser = new PropertySerializer<HaveReadOnly>("Value", "WriteOnly");
ser.ContinueOnError = true;
Assert.AreEqual(true, ser.ContinueOnError);

ser.Serialize(o, Dictionary);
VB.NETCopy Code
Dim o As New HaveReadOnly()
o.Value = "a"

Dim ser As New PropertySerializer(Of HaveReadOnly)("Value", "WriteOnly")
ser.ContinueOnError = True
Assert.AreEqual(True, ser.ContinueOnError)

ser.Serialize(o, Dictionary)

Requirements

Target Platforms: Windows XP, Windows Server 2003, Windows Vista, Windows Server 2008, Windows 7

See Also

Generated with Document! X 2011 by Innovasys