CustomSerializationBinderBindToName Method
Namespace: KGySoft.Serialization.BinaryAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
public override void BindToName(
Type serializedType,
out string?? assemblyName,
out string?? typeName
)
Public Overrides Sub BindToName (
serializedType As Type,
<OutAttribute> ByRef assemblyName As String,
<OutAttribute> ByRef typeName As String
)
public:
virtual void BindToName(
Type^ serializedType,
[OutAttribute] String^% assemblyName,
[OutAttribute] String^% typeName
) override
abstract BindToName :
serializedType : Type *
assemblyName : string byref *
typeName : string byref -> unit
override BindToName :
serializedType : Type *
assemblyName : string byref *
typeName : string byref -> unit
- serializedType Type
- The type of the object the formatter creates a new instance of.
- assemblyName String
- The string, which will represent the Assembly name in the serialized data.
Can return to provide a default name.
- typeName String
- The string, which will represent the Type name in the serialized data.
Can return to provide a default name.
ISerializationBinderBindToName(Type, String, String)