Get the AssetBinary in the collection by its ID.

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

Syntax

C#
IAssetBinary this[
	string binaryID
] { get; }
Visual Basic
ReadOnly Default Property Item ( _
	binaryID As String _
) As IAssetBinary
	Get
Visual C++
property IAssetBinary^ default[String^ binaryID] {
	IAssetBinary^ get (String^ binaryID);
}

Parameters

binaryID
Type: System..::..String
ID of AssetBinary to retrieve, cannot be null or emtpy

Return Value

AssetBinary with matching ID; Null if ID doesn't exist in collection

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionThrown when null or empty binary ID passed in
System..::..ArgumentExceptionThrown if current AssetBinary object doesn't have AssetManager reference
System..::..MemberAccessExceptionThrown if database procedure not present

See Also