Repository Transaction Property

Meta Data Services Programming

Meta Data Services Programming

Repository Transaction Property

This property is the RepositoryTransaction object for the open repository instance. This is a read-only property.

Syntax

Set variable  =  object.Transaction

The Transaction property syntax has the following parts.

Part Description
variable A variable declared as an object. It receives the RepositoryTransaction object for this repository instance.
object The object that represents the open repository instance through which application code or a tool interacts with a repository.
Remarks

You can gain access to the RepositoryTransaction object by using this syntax. After you access the RepositoryTransaction object, you can access the properties and methods of the RepositoryTransaction object through standard variable.method and variable.property syntax. You can also access the properties and methods of the RepositoryTransaction object directly by using syntax like the following:

Call object.Transaction.method

-or-

variable  = object.Transaction.property

See the RepositoryTransaction object for details on the methods and properties that it provides.

See Also

Repository Object

RepositoryTransaction Object