public ReflectorPropertyAttribute(string name, Type factoryType) : this(name)
		{
			this.name = name;
            HasCustomFactory = true;
			this.factory = (ISerialiserFactory) Activator.CreateInstance(factoryType);
		}
 public ReflectorPropertyAttribute(string name, Type factoryType) : this(name)
 {
     this.name        = name;
     HasCustomFactory = true;
     this.factory     = (ISerialiserFactory)Activator.CreateInstance(factoryType);
 }