ImageMagick.ExifProfile.UpdateData C# (CSharp) Метод

UpdateData() защищенный Метод

Updates the data of the profile.
protected UpdateData ( ) : void
Результат void
    protected override void UpdateData()
    {
      if (_Values == null || _Values.Count == 0)
      {
        Data = null;
        return;
      }

      ExifWriter writer = new ExifWriter(_Values, Parts);
      Data = writer.GetData();
    }