ISerializable.GetObjectData Method
Assembly: mscorlib (in mscorlib.dll)
void GetObjectData ( SerializationInfo info, StreamingContext context )
function GetObjectData (
info : SerializationInfo,
context : StreamingContext
)
Not applicable.
Parameters
- info
The SerializationInfo to populate with data.
- context
The destination (see StreamingContext) for this serialization.
Any objects that are included in the SerializationInfo are automatically tracked and serialized by the formatter.
Code that calls GetObjectData requires the SecurityPermission for providing serialization services. Associated enumeration: SecurityPermissionFlag.SerializationFormatter.
Note: |
|---|
| It is not guaranteed that this method will be called only once per object instance during serialization. Therefore, the method should be implemented in such a way that its behavior will be the same regardless of the number of times it is called. |
The following example uses the GetObjectData method to set alternate values for a serialized object. The code uses the AddValue method of the SerializationInfo class to store the alternate values when the object is serialized. Conversely, when the constructor of the Person class is called during deserialization, the alternatve values are retrieved using the GetValue method and reassigned to the object's fields.
Windows 98, Windows Server 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 Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.
Note: