SerializationInfo.SetType(Type) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.