 | IResourceCheckoutServiceIsCheckedoutT Method |
Attempts to perform a soft checkout - this is equivalent to attempting to take a lock
but not actually taking it
Namespace: SanteDB.Core.ServicesAssembly: SanteDB.Core.Api (in SanteDB.Core.Api.dll) Version: 3.0.2081-alpha+b4ae72647f2cc271f89142f76fff26ad69e00f5a
Syntaxbool IsCheckedout<T>(
Guid key,
out IIdentity currentOwner
)
Function IsCheckedout(Of T) (
key As Guid,
<OutAttribute> ByRef currentOwner As IIdentity
) As Boolean
generic<typename T>
bool IsCheckedout(
Guid key,
[OutAttribute] IIdentity^% currentOwner
)
abstract IsCheckedout :
key : Guid *
currentOwner : IIdentity byref -> bool Parameters
- key Guid
- The key of the object referenced by T
- currentOwner IIdentity
- The current owner of the lock if one exists
Type Parameters
- T
- The type of object to check
Return Value
BooleanTrue if the object is checked out
See Also