Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

NetDataContractSerializer::Binder Property

 

Gets or sets an object that controls class loading.

Namespace:   System.Runtime.Serialization
Assembly:  System.Runtime.Serialization (in System.Runtime.Serialization.dll)

public:
property SerializationBinder^ Binder {
	virtual SerializationBinder^ get() sealed;
	virtual void set(SerializationBinder^ value) sealed;
}

Property Value

Type: System.Runtime.Serialization::SerializationBinder^

The SerializationBinder used with the current formatter.

During serialization, a formatter transmits the information required to create an instance of an object of the correct type and version. This information generally includes the full type name and assembly name of the object. The assembly name includes the name, version, and strong name hash of the assembly. By default, deserialization uses this information to create an instance of an identical object (with the exception of any assembly loading restricted by the security policy). Some users need to control which class to load, either because the class has moved between assemblies or a different version of the class is required on the server and client.

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft