Formatter Class
.NET Framework 2.0
Provides base functionality for the common language runtime serialization formatters.
This class is not CLS-compliant. Namespace: System.Runtime.Serialization
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
'Declaration <SerializableAttribute> _ <ComVisibleAttribute(True)> _ <CLSCompliantAttribute(False)> _ Public MustInherit Class Formatter Implements IFormatter 'Usage Dim instance As Formatter
/** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ /** @attribute CLSCompliantAttribute(false) */ public abstract class Formatter implements IFormatter
SerializableAttribute ComVisibleAttribute(true) CLSCompliantAttribute(false) public abstract class Formatter implements IFormatter
Formatter is the abstract base class for all runtime serialization formatters, and provides some helper methods for implementing the IFormatter interface. The Formatter also manages queuing objects for serialization and generating IDs on a per-object basis.
Notes to Inheritors-
When you inherit from Formatter, you must override the following members: Serialize
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: