ServerClientSessionBeginReadWithEvents Method |
Start a read only transaction and gets a list of created/updated objects as subscribed to by this session
Namespace:
VelocityDb.Session
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public List<Oid> BeginReadWithEvents(
bool doRecoveryCheck = true
)
Public Function BeginReadWithEvents (
Optional doRecoveryCheck As Boolean = true
) As List(Of Oid)
public:
List<Oid>^ BeginReadWithEvents(
bool doRecoveryCheck = true
)
member BeginReadWithEvents :
?doRecoveryCheck : bool
(* Defaults:
let _doRecoveryCheck = defaultArg doRecoveryCheck true
*)
-> List<Oid>
Parameters
- doRecoveryCheck (Optional)
- Type: SystemBoolean
If true a recovery check is done, otherwise recovery check is bypassed.
Return Value
Type:
ListOidlist of object Oid of objects updated by other sessions
See Also