====== ThinkGeo.MapSuite.Core.GeoSerializer ====== {{section>upgrade_map_suite_to_10.0}} This class serializes an object. ===== Inheritance Hierarchy ===== *System.Object ***ThinkGeo.MapSuite.Core.GeoSerializer** ===== Members Summary ===== ==== Public Constructors ==== ** {{wiki:PublicMethod.gif|}} GeoSerializer() ** * //Creates an instance of GeoSerializer.// == Remarks == * //N/A// == Parameters ==
** {{wiki:PublicMethod.gif|}} GeoSerializer(GeoSerializationFormatter) ** * //N/A// == Remarks == * //N/A// == Parameters == * //formatter// * Type:[[ThinkGeo.MapSuite.Core.GeoSerializationFormatter|GeoSerializationFormatter]] * Description:N/A
==== Protected Constructors ==== ==== Public Methods ==== ** {{wiki:PublicMethod.gif|}} Serialize(Object,String) ** * //Serialize an object and save the serialized data to a file.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //objectToSerialize// * Type:Object * Description:The object to be serialized. * //targetPathFileName// * Type:String * Description:The path to save the serialized data to.
** {{wiki:PublicMethod.gif|}} Serialize(Object,Stream) ** * //Serialize an object and save the serialized data to a stream.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //objectToSerialize// * Type:Object * Description:The object to be serialized. * //targetStream// * Type:Stream * Description:The stream to save the serialized data into.
** {{wiki:PublicMethod.gif|}} Serialize(Object) ** * //Serialize an object and save the serialized data to a string.// == Remarks == * //N/A// == Return Value == * Type:String * Description:The string that contains the serialized data. == Parameters == * //objectToSerialize// * Type:Object * Description:The object to be serialized.
** {{wiki:PublicMethod.gif|}} Deserialize(String,FileAccess) ** * //Recreates an object from a file.// == Remarks == * //N/A// == Return Value == * Type:Object * Description:The recreated object. == Parameters == * //sourcePathFileName// * Type:String * Description:The file path to deserialize from. * //fileAccess// * Type:FileAccess * Description:The FileAccess
** {{wiki:PublicMethod.gif|}} Deserialize(Stream) ** * //Recreates an object from a stream.// == Remarks == * //N/A// == Return Value == * Type:Object * Description:The recreated object. == Parameters == * //sourceStream// * Type:Stream * Description:The Stream to deserialize from.
** {{wiki:PublicMethod.gif|}} Deserialize(String) ** * //Recreates an object from a string.// == Remarks == * //N/A// == Return Value == * Type:Object * Description:The recreated object. == Parameters == * //sourceString// * Type:String * Description:The string to deserialize from.
** {{wiki:PublicMethod.gif|}} Deserialize(Uri) ** * //Recreates an object from an Url.// == Remarks == * //N/A// == Return Value == * Type:Object * Description:The recreated object. == Parameters == * //sourceUri// * Type:Uri * Description:The Url to deserialize from.
** {{wiki:PublicMethod.gif|}} ToString() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Equals(Object) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //obj// * Type:Object * Description:N/A
** {{wiki:PublicMethod.gif|}} GetHashCode() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} GetType() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Type * Description:N/A == Parameters ==
==== Protected Methods ==== ** {{wiki:ProtectedMethod.gif|}} Finalize() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} MemberwiseClone() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Object * Description:N/A == Parameters ==
==== Public Properties ==== ** {{wiki:PublicProperty.gif|}} Formatter ** Gets or sets the Formatter. The Formatter determines what kind of serialized data will be created. == Remarks == N/A == Return Value == * Type:[[ThinkGeo.MapSuite.Core.GeoSerializationFormatter|GeoSerializationFormatter]] ==== Protected Properties ==== ==== Public Events ====