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

SetByteValue() 공개 메소드

Adds a Entries.ByteIFDEntry to the directory with tag given by entry_tag and value given by value
public SetByteValue ( int directory, ushort entry_tag, byte value ) : void
directory int /// A with the number of the directory /// to add the entry to. ///
entry_tag ushort /// A with the tag of the entry ///
value byte /// A with the value to add. ///
리턴 void
		public void SetByteValue (int directory, ushort entry_tag, byte value)
		{
			SetEntry (directory, new ByteIFDEntry (entry_tag, value));
		}