.NET Framework Class Library
TimeZoneInfo.IDeserializationCallback.OnDeserialization Method
This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Runs when the deserialization of an object has been completed.
Assembly: mscorlib (in mscorlib.dll)
Syntax
Visual Basic
Private Sub OnDeserialization ( _ sender As Object _ ) Implements IDeserializationCallback.OnDeserialization
C#
void IDeserializationCallback.OnDeserialization(
Object sender
)
Visual C++
private: virtual void OnDeserialization( Object^ sender ) sealed = IDeserializationCallback::OnDeserialization
F#
private abstract OnDeserialization : sender:Object -> unit private override OnDeserialization : sender:Object -> unit
Parameters
- sender
- Type: System.Object
The object that initiated the callback. The functionality for this parameter is not currently implemented.
Implements
IDeserializationCallback.OnDeserialization(Object)Exceptions
| Exception | Condition |
|---|---|
| SerializationException |
The TimeZoneInfo object contains invalid or corrupted data. |
Version Information
.NET Framework
Supported in: 4, 3.5.NET Framework Client Profile
Supported in: 4, 3.5 SP1Platforms
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also