Formatter.Binder Property
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.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.