This method returns a Collection of metadata (name-value pair) for sections within the binary, indexed by the potential section name.

Normally, this Dictionary contains only one list of metadata for a default section. For video media binaries, however, it will return the list indexed by stream names.

Namespace: Cartella.Interfaces
Assembly: AssetManagementSystem (in AssetManagementSystem.dll) Version: 4.1.0.171 (4.1.0.171)

Syntax

C#
Dictionary<string, Dictionary<string, string>> GetAssetMetaData(
	Stream binary
)
Visual Basic
Function GetAssetMetaData ( _
	binary As Stream _
) As Dictionary(Of String, Dictionary(Of String, String))
Visual C++
Dictionary<String^, Dictionary<String^, String^>^>^ GetAssetMetaData(
	Stream^ binary
)

Parameters

binary
Type: System.IO..::..Stream
Stream of interest

Return Value

Meta data in nested-dictionary format

See Also