Accord.SerializationBinderAttribute.SerializationBinderAttribute C# (CSharp) Method

SerializationBinderAttribute() public method

Initializes a new instance of the SerializationBinderAttribute class.
public SerializationBinderAttribute ( Type binderType ) : Accord.IO
binderType System.Type The binder to be used to deserialize objects of this type.
return Accord.IO
        public SerializationBinderAttribute(Type binderType)
        {
            Binder = (SerializationBinder)Activator.CreateInstance(binderType);
        }
SerializationBinderAttribute