TagLib.IFD.IFDStructure.ContainsTag C# (CSharp) 메소드

ContainsTag() 공개 메소드

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. ///
리턴 bool
		public bool ContainsTag (int directory, ushort tag)
		{
			if (directory >= directories.Count)
				return false;
			return directories [directory].ContainsKey (tag);
		}