Visual Basic (Declaration) | |
---|---|
Public Event TagFound() As EventHandler(Of CodecsEnumTagsEventArgs) |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
public event EventHandler<CodecsEnumTagsEventArgs> TagFound() |
Managed Extensions for C++ | |
---|---|
public: __event EventHandler<CodecsEnumTagsEventArgs>* TagFound(); |
C++/CLI | |
---|---|
public: event EventHandler<CodecsEnumTagsEventArgs>^ TagFound(); |
For an example, refer to EnumTags.
This event will fire for each tag found in the file as a result of calling EnumTags.
Do not attempt to use DeleteTag to delete tags from inside this event. If you want to delete tags that you enumerate, use this event to add the tags to a list. Upon returning from EnumTags, you can delete all the tags from the list.
Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family