HttpException.GetObjectData(SerializationInfo, StreamingContext) Method

Definition

Gets information about the exception and adds it to the SerializationInfo object.

public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);

Parameters

info
SerializationInfo

The SerializationInfo that holds the serialized object data about the exception being thrown.

context
StreamingContext

The StreamingContext that holds the contextual information about the source or destination.

Remarks

The GetObjectData method adds information about the exception to the SerializationInfo object that is targeted for serialization. During deserialization, the exception is reconstituted from the SerializationInfo that is transmitted over the stream.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also