Accord.SerializationBinderAttribute.SerializationBinderAttribute C# (CSharp) 메소드

SerializationBinderAttribute() 공개 메소드

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.
리턴 Accord.IO
        public SerializationBinderAttribute(Type binderType)
        {
            Binder = (SerializationBinder)Activator.CreateInstance(binderType);
        }
SerializationBinderAttribute