Dispose Method (ActiveData)

Class

ActiveData.

Action

Cleans up the resources used by the object.

Syntax

Dispose ()

Notes

The only time that you should use this method is when you are reading and writing to a file from multiple scripts.

CAUTION:
In all cases except previously mentioned, do not use this method. Silk Test Workbench automatically calls this method when it is needed.

Example

Dim a As ActiveData
a = Workbench.LoadActiveData("ActiveDataAsset")
' Do your work here
a.Dispose()