SerializationWriterWrite Method (IOwnedDataSerializable, Object) | 
 
            Allows any object implementing IOwnedDataSerializable to serialize itself
            into this SerializationWriter.
            A context may also be used to give the object an indication of what data
            to store. As an example, using a BitVector32 gives a list of flags and
            the object can conditionally store data depending on those flags.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntaxpublic void Write(
	IOwnedDataSerializable target,
	Object context
)
Public Sub Write ( 
	target As IOwnedDataSerializable,
	context As Object
)
Parameters
- target
 - Type: SD.LLBLGen.Pro.ORMSupportClassesIOwnedDataSerializable
The IOwnedDataSerializable object to ask for owned data - context
 - Type: SystemObject
An arbtritrary object but BitVector32 recommended 
See Also