Initializes a new instance of the UnsupportedDocumentException class with serialized data.

Namespace:  BargeEx
Assembly:  BargeEx (in BargeEx.dll)
Version: 3.0.400.140 (3.0.400.140)

Syntax

C#
protected UnsupportedDocumentException(
	SerializationInfo info,
	StreamingContext context
)
Visual Basic (Declaration)
Protected Sub New ( _
	info As SerializationInfo, _
	context As StreamingContext _
)
Visual C++
protected:
UnsupportedDocumentException(
	SerializationInfo^ info, 
	StreamingContext context
)

Parameters

info
Type: System.Runtime.Serialization..::.SerializationInfo
The object that holds the serialized object data.
context
Type: System.Runtime.Serialization..::.StreamingContext
The contextual information about the source or destination.

Remarks

This constructor is called during deserialization to reconstitute the exception object transmitted over a stream.

See Also