SerializationWriterWrite Method (Type, Boolean) | 
 
            Stores a Type object into the stream.
            Stored Size: Depends on the length of the Type's name and whether the fullyQualified parameter is set.
            A null Type takes 1 byte.
            
 
    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(
	Type value,
	bool fullyQualified
)
Public Sub Write ( 
	value As Type,
	fullyQualified As Boolean
)
Parameters
- value
 - Type: SystemType
The Type to store. - fullyQualified
 - Type: SystemBoolean
true to store the AssemblyQualifiedName or false to store the FullName.  
See Also