C# 클래스 Newtonsoft.JsonV4.SerializationBinder

Allows users to control class loading and mandate what class to load.
파일 보기 프로젝트 열기: mulesoft-labs/raml-dotnet-apicore

공개 메소드들

메소드 설명
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.

메소드 상세

BindToName() 공개 메소드

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.
리턴 void

BindToType() 공개 추상적인 메소드

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
리턴 System.Type