LibraryManager.TryGetItem Method (String, LibraryItemType, LibraryItem,LibraryItemRetrievalOption[]) TIBCO Spotfire 6.0 API Reference
Tries to get the item associated with the specified path. 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(
	string path,
	LibraryItemType itemType,
	out LibraryItem item,
	params LibraryItemRetrievalOption[] retrievalOptions
)

Parameters

path
Type: System.String
The path of the item to get.
itemType
Type: Spotfire.Dxp.Framework.Library.LibraryItemType
The type of the item. There can be several items with the same path but with different types.
item
Type: Spotfire.Dxp.Framework.Library.LibraryItem
Will be assigned with the library item or null if no item with the specified path and type 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 path or itemType is null.
System.ArgumentExceptionIf path is an empty string.
See Also