示例#1
0
        /// <inheritdoc />
        public bool Deserialize(object instance, IPropertyReader reader)
        {
            if (_serializer.TryRead(reader, this, out var value))
            {
                SetValue(instance, value);
                return(true);
            }

            return(false);
        }