SerializationInfo.SetType(Type) Method

Definition

Sets the Type of the object to serialize.

public:
 void SetType(Type ^ type);
public void SetType (Type type);
member this.SetType : Type -> unit
Public Sub SetType (type As Type)

Parameters

type
Type

The Type of the object to serialize.

Exceptions

The type parameter is null.

Remarks

The Formatter is responsible for setting the Type of the SerializationInfo instance before passing it to GetObjectData. However, users who want to send proxies for their objects will need to change the type represented by this SerializationInfo instance. Using the SetType method is equivalent to setting both the FullTypeName and the AssemblyName.

Applies to