Workspace Transaction Property

Meta Data Services Programming

Meta Data Services Programming

Workspace 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 workspace through which this program is interacting with the repository.
Remarks

You can gain access to the RepositoryTransaction object by using this syntax. Then you can access the properties and methods of the RepositoryTransaction object by using the variable.method and variable.property syntax. You can also access the properties and methods of the RepositoryTransaction object directly, using syntax similar to that shown here:

Call object.Transaction.method

-or-

variable  =  object.Transaction.property

For more information about the RepositoryTransaction object and the methods and properties that it provides, see RepositoryTransaction Object.

See Also

Repository Transaction Property

Workspace Object