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

SetLongValue() public method

Adds a Entries.LongIFDEntry to the directory with tag given by entry_tag and value given by value
public SetLongValue ( int directory, ushort entry_tag, uint 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 uint /// A with the value to add. ///
return void
		public void SetLongValue (int directory, ushort entry_tag, uint value)
		{
			SetEntry (directory, new LongIFDEntry (entry_tag, value));
		}