C# Class Newtonsoft.JsonV4.SerializationBinder

Allows users to control class loading and mandate what class to load.
Afficher le fichier Open project: mulesoft-labs/raml-dotnet-apicore

Méthodes publiques

Méthode Description
BindToName ( Type serializedType, string &assemblyName, string &typeName ) : void

When overridden in a derived class, controls the binding of a serialized object to a type.

BindToType ( string assemblyName, string typeName ) : Type

When overridden in a derived class, controls the binding of a serialized object to a type.

Method Details

BindToName() public méthode

When overridden in a derived class, controls the binding of a serialized object to a type.
public BindToName ( Type serializedType, string &assemblyName, string &typeName ) : void
serializedType System.Type The type of the object the formatter creates a new instance of.
assemblyName string Specifies the name of the serialized object.
typeName string Specifies the name of the serialized object.
Résultat void

BindToType() public abstract méthode

When overridden in a derived class, controls the binding of a serialized object to a type.
public abstract BindToType ( string assemblyName, string typeName ) : Type
assemblyName string Specifies the name of the serialized object.
typeName string Specifies the name of the serialized object
Résultat System.Type