Returns an array containing the data of the specified tag.

Namespace:  FreeImageAPI.Metadata
Assembly:  FreeImageNET (in FreeImageNET.dll)

Syntax

C#
protected T[] GetTagArray<T>(
	string key
)
where T : struct, new()
Visual Basic (Declaration)
Protected Function GetTagArray(Of T As {Structure, New}) ( _
	key As String _
) As T()
Visual C++
protected:
generic<typename T>
where T : value class, gcnew()
array<T>^ GetTagArray(
	String^ key
)

Parameters

key
Type: System..::.String
The key of the tag.

Type Parameters

T
The type of the tag's data.

Return Value

An array containing the data of the specified tag.

Version Information

FreeImage.NET

Supported in: 3.12.0, 3.13.0, 3.13.1

See Also