ISafeSerializationData Interface

Definition

Enables serialization of custom exception data in security-transparent code.

public interface class ISafeSerializationData
public interface ISafeSerializationData
type ISafeSerializationData = interface
Public Interface ISafeSerializationData

Remarks

In versions previous to.NET Framework 4.0, serialization of custom user data in a security transparent code was accomplished using the GetObjectData method. Starting with .NET Framework 4.0, that method is marked with the SecurityCriticalAttribute attribute, which prevents execution in security-transparent code. To work around this condition, implement the ISafeSerializationData interface and add custom data as shown in the example below.

The CompleteDeserialization method is called after serialization, and uses the SafeSerializationEventArgs to restore the custom data.

Methods

Name Description
CompleteDeserialization(Object)

This method is called when the instance is deserialized.

Applies to

See also