Formatter.Binder Property

Definition

When overridden in a derived class, gets or sets the SerializationBinder used with the current formatter.

public:
 abstract property System::Runtime::Serialization::SerializationBinder ^ Binder { System::Runtime::Serialization::SerializationBinder ^ get(); void set(System::Runtime::Serialization::SerializationBinder ^ value); };
public abstract System.Runtime.Serialization.SerializationBinder? Binder { get; set; }
public abstract System.Runtime.Serialization.SerializationBinder Binder { get; set; }
member this.Binder : System.Runtime.Serialization.SerializationBinder with get, set
Public MustOverride Property Binder As SerializationBinder

Property Value

The SerializationBinder used with the current formatter.

Implements

Remarks

The SerializationBinder performs lookups for types from the type names passed during deserialization. If no SerializationBinder is set, a default is used.

Notes to Implementers

You must implement this property in a derived class.

Applies to