TagLib.Image.CombinedImageTag.CombinedImageTag C# (CSharp) Method

CombinedImageTag() public method

Constructs and initializes a new instance of with a restriction on the allowed tag types contained in this combined tag.
public CombinedImageTag ( TagTypes allowed_types ) : System
allowed_types TagTypes /// A value, which restricts the /// types of metadata that can be contained in this /// combined tag. ///
return System
		public CombinedImageTag (TagTypes allowed_types)
		{
			AllowedTypes = allowed_types;
			OtherTags = new List<ImageTag> ();
		}