NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Formatter.Binder

Sets or returns the SerializationBinder used with this formatter. The SerializationBinder performs lookups for the type from the type names passed during serialization. If no SerializationBinder is set, a default one is used.

[Visual Basic]
MustOverride Public Property Binder As SerializationBinder
[C#]
public SerializationBinder Binder {abstract get; abstract set;}
[C++]
public: __property virtual SerializationBinder* get_Binder() = 0;public: __property virtual void set_Binder(SerializationBinder*) = 0;
[JScript]
public abstract function get Binder() : SerializationBinder;
public abstract function set Binder(SerializationBinder);

See Also

Formatter Class | Formatter Members | System.Runtime.Serialization Namespace