public static TagsManager CreateFormBass(Channel bassChannel) { var handle = TagsLibCoreModule.CreateFunction.Delegate(); var result = new TagsManager(handle); TagsLibCoreModule.LoadTagsFormBassFunction.Delegate(handle, bassChannel.Handle); return result; }
public static TagsManager CreateFormFile(String file, TagType type = TagType.Automatic, bool parseTags = true) { var handle = TagsLibCoreModule.CreateFunction.Delegate(); var result = new TagsManager(handle); TagsLibCoreModule.LoadTagsFunction.Delegate(handle, file, type, parseTags); return result; }
public static TagsManager CreateFormMemory(IntPtr memory, ulong size, TagType type = TagType.Automatic, bool parseTags = true) { var handle = TagsLibCoreModule.CreateFunction.Delegate(); var result = new TagsManager(handle); TagsLibCoreModule.LoadTagsFormMemoryFunction.Delegate(handle, memory, size, type, parseTags); return result; }
public static TagsManager CreateFormMemory(IntPtr memory, ulong size, TagType type = TagType.Automatic, bool parseTags = true) { var handle = TagsLibCoreModule.CreateFunction.Delegate(); var result = new TagsManager(handle); TagsLibCoreModule.LoadTagsFormMemoryFunction.Delegate(handle, memory, size, type, parseTags); return(result); }
public static TagsManager CreateFormBass(Channel bassChannel) { var handle = TagsLibCoreModule.CreateFunction.Delegate(); var result = new TagsManager(handle); TagsLibCoreModule.LoadTagsFormBassFunction.Delegate(handle, bassChannel.Handle); return(result); }
public static TagsManager CreateFormFile(String file, TagType type = TagType.Automatic, bool parseTags = true) { var handle = TagsLibCoreModule.CreateFunction.Delegate(); var result = new TagsManager(handle); TagsLibCoreModule.LoadTagsFunction.Delegate(handle, file, type, parseTags); return(result); }
internal TagDictionary(TagsManager tag) { _target = tag; }
internal ID3v2TagList(TagsManager tag) { _target = tag; }
internal SimpleTagList(TagsManager tag, TagType type) { _target = tag; _type = type; }
internal ExTagList(TagsManager tag) { _target = tag; }