Example #1
0
    /// <summary>
    /// Updates the data of the profile.
    /// </summary>
    protected override void UpdateData()
    {
      if (_Values == null || _Values.Count == 0)
        Data = null;

      ExifWriter writer = new ExifWriter(_Values, Parts, BestPrecision);
      Data = writer.GetData();
    }
Example #2
0
    /// <summary>
    /// Updates the data of the profile.
    /// </summary>
    protected override void UpdateData()
    {
      if (_Values == null || _Values.Count == 0)
      {
        Data = null;
        return;
      }

      ExifWriter writer = new ExifWriter(_Values, Parts);
      Data = writer.GetData();
    }
Example #3
0
        /// <summary>
        /// Updates the data of the profile.
        /// </summary>
        protected override void UpdateData()
        {
            if (_Values == null || _Values.Count == 0)
            {
                Data = null;
            }

            ExifWriter writer = new ExifWriter(_Values, Parts, BestPrecision);

            Data = writer.GetData();
        }
Example #4
0
        /// <summary>
        /// Updates the data of the profile.
        /// </summary>
        protected override void UpdateData()
        {
            if (_Values == null || _Values.Count == 0)
            {
                Data = null;
                return;
            }

            ExifWriter writer = new ExifWriter(_Values, Parts);

            Data = writer.GetData();
        }
Example #5
0
        /// <summary>
        /// Updates the data of the profile.
        /// </summary>
        protected override void UpdateData()
        {
            if (_values == null)
            {
                return;
            }

            if (_values.Count == 0)
            {
                Data = null;
                return;
            }

            var writer = new ExifWriter(Parts);

            Data = writer.Write(_values);
        }
Example #6
0
        /// <summary>
        /// Updates the data of the profile.
        /// </summary>
        protected override void UpdateData()
        {
            if (_data == null)
            {
                return;
            }

            if (_data.Values.Count == 0)
            {
                SetData(null);
                return;
            }

            var writer = new ExifWriter(Parts);

            SetData(writer.Write(_data.Values));
        }