TagLib.IFD.IFDStructure.ContainsTag C# (CSharp) Method

ContainsTag() public method

Checks, if a value for the given tag is contained in the IFD.
public ContainsTag ( int directory, ushort tag ) : bool
directory int /// A value with the directory index that /// contains the tag. ///
tag ushort /// A value with the tag. ///
return bool
		public bool ContainsTag (int directory, ushort tag)
		{
			if (directory >= directories.Count)
				return false;
			return directories [directory].ContainsKey (tag);
		}