Get the Section of a binary. Each section represent a unique set of metadata within the binary file.

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

Syntax

C#
IAssetBinarySection[] Sections { get; }
Visual Basic
ReadOnly Property Sections As IAssetBinarySection()
	Get
Visual C++
property array<IAssetBinarySection^>^ Sections {
	array<IAssetBinarySection^>^ get ();
}

Remarks

Section is an arbitrary concept. It does not necessarily map to all metadata collections in the actual binary file.

Examples

The video file contain 2 sections: Video and Audio. Each has its own set of metadata.

See Also