LibraryManager TryGetItem Method (Guid, LibraryItem ,  LibraryItemRetrievalOption ) TIBCO Spotfire 6.0 API Reference
Tries to get the item associated with the specified id. Returns true if the item is found and false otherwise. On success, the item parameter is assigned and populated according to the specified metadata options.

Namespace: Spotfire.Dxp.Framework.Library
Assembly: Spotfire.Dxp.Framework (in Spotfire.Dxp.Framework.dll) Version: 13.19.7018.3940 (13.19.7018.3940)
Syntax

public bool TryGetItem(
	Guid id,
	out LibraryItem item,
	params LibraryItemRetrievalOption[] retrievalOptions
)

Parameters

id
Type: System Guid
The id of the item to get.
item
Type: Spotfire.Dxp.Framework.Library LibraryItem 
Will be assigned with the library item or null if no item with the specified id can be found.
retrievalOptions
Type:  Spotfire.Dxp.Framework.Library LibraryItemRetrievalOption 
Specifies the kinds of metadata that the returned item shall be populated with.

Return Value

Type: Boolean
true if an item was found, false otherwise.
Exceptions

ExceptionCondition
Spotfire.Dxp.Framework.Library LibraryExceptionIf an error occurs in the communication with the library.
System ArgumentNullExceptionIf id is null.
System ArgumentExceptionIf id is an empty Guid.
See Also