Click or drag to resize
IRepositoryTryGetT Method
Retrieves an object with a specific business object interface.

Namespace: PDTec.IceNet.Core.Model
Assembly: PDTec.IceNet.Core (in PDTec.IceNet.Core.dll) Version: 6.0.0.0 (6.0.6225.27214)
Syntax
C#
bool TryGet<T>(
	string id,
	out T pObject
)
where T : IObject

Parameters

id
Type: SystemString
The object ID.
pObject
Type: T
The business object.

Type Parameters

T
The type of the requested interface.

Return Value

Type: Boolean
true if the repository contains an object with this ID and the objects implements the interface T; otherwise, false.
See Also