NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

SerializationInfo Constructor

Creates a new instance of the SerializationInfo class.

[Visual Basic]
Public Sub New( _
   ByVal type As Type, _
   ByVal converter As IFormatterConverter _
)
[C#]
public SerializationInfo(
   Type type,
   IFormatterConverter converter
);
[C++]
public: SerializationInfo(
   Type* type,
   IFormatterConverter* converter
);
[JScript]
public function SerializationInfo(
   type : Type,
   converter : IFormatterConverter
);

Parameters

type
The type of the object being serialized.
converter
[To be supplied.]

Exceptions

Exception Type Condition
ArgumentNullException The type or converter parameter is a null reference (in Visual Basic Nothing).

See Also

SerializationInfo Class | SerializationInfo Members | System.Runtime.Serialization Namespace