This property is the RepositoryTransaction object for the open Repository instance. This is a read-only property.
Set variable = object.Transaction
The Transaction property syntax has the following parts.
Part | Description |
Variable | A variable declared as an object. Receives the RepositoryTransaction object for this Repository instance. |
Object | The object that represents the open Repository instance through which this program is interacting with the repository. |
You can gain access to the RepositoryTransaction object by using the syntax shown above. Then you can access the properties and methods of the RepositoryTransaction object via 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.