Exemple #1
0
 /// <summary>
 ///   Returns the <see cref="IFDEntry"/> belonging to the given tag.
 /// </summary>
 /// <param name="directory">
 ///    A <see cref="System.Int32"/> with the directory that contains
 ///    the wanted tag.
 /// </param>
 /// <param name="entry_tag">
 ///    A <see cref="IFDEntryTag"/> with the tag to get.
 /// </param>
 /// <returns>
 ///    A <see cref="IFDEntry"/> belonging to the given tag, or
 ///    null, if no such tag is contained in the IFD.
 /// </returns>
 public IFDEntry GetEntry(int directory, IFDEntryTag entry_tag)
 {
     return(GetEntry(directory, (ushort)entry_tag));
 }
 /// <summary>
 ///    Removes a given tag from the IFD.
 /// </summary>
 /// <param name="directory">
 ///    A <see cref="System.Int32"/> value with the directory index that
 ///    contains the tag to remove.
 /// </param>
 /// <param name="entry_tag">
 ///    A <see cref="IFDEntryTag"/> value with the tag to remove.
 /// </param>
 public void RemoveTag(int directory, IFDEntryTag entry_tag)
 {
     RemoveTag (directory, (ushort) entry_tag);
 }
Exemple #3
0
 /// <summary>
 ///    Removes a given tag from the IFD.
 /// </summary>
 /// <param name="directory">
 ///    A <see cref="System.Int32"/> value with the directory index that
 ///    contains the tag to remove.
 /// </param>
 /// <param name="entry_tag">
 ///    A <see cref="IFDEntryTag"/> value with the tag to remove.
 /// </param>
 public void RemoveTag(int directory, IFDEntryTag entry_tag)
 {
     RemoveTag(directory, (ushort)entry_tag);
 }
 /// <summary>
 ///   Returns the <see cref="IFDEntry"/> belonging to the given tag.
 /// </summary>
 /// <param name="directory">
 ///    A <see cref="System.Int32"/> with the directory that contains
 ///    the wanted tag.
 /// </param>
 /// <param name="entry_tag">
 ///    A <see cref="IFDEntryTag"/> with the tag to get.
 /// </param>
 /// <returns>
 ///    A <see cref="IFDEntry"/> belonging to the given tag, or
 ///    null, if no such tag is contained in the IFD.
 /// </returns>
 public IFDEntry GetEntry(int directory, IFDEntryTag entry_tag)
 {
     return GetEntry (directory, (ushort) entry_tag);
 }