TagLib.Ogg.GroupedComment.Clear C# (CSharp) Method

Clear() public method

Clears all of the child tags.
public Clear ( ) : void
return void
        public override void Clear()
        {
            foreach (XiphComment tag in tags)
                tag.Clear ();
        }

Usage Example

Beispiel #1
0
 public override void RemoveTags(TagLib.TagTypes types)
 {
     if ((types & TagLib.TagTypes.Xiph) != TagLib.TagTypes.None)
     {
         tag.Clear();
     }
 }