WeakAssemblySerializationBinderIgnoreAssemblyNameOnResolve Property

Gets or sets whether an existing assembly name is allowed to be completely ignored on deserialization.
Default value: .

Definition

Namespace: KGySoft.Serialization.Binary
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
C#
public bool IgnoreAssemblyNameOnResolve { get; set; }

Property Value

Boolean

Remarks

If the value of this property is and the type cannot be resolved from an assembly on deserialization, then the type is tried to be resolved from any loaded assemblies. The effect is similar as if the OmitAssemblyNameOnSerialize property was used on serialization, except that the type is tried to be resolved from the provided assembly in the first place.

See Also