Version

Gets the version number of the data schema.

Syntax

int Version {get;}

Property value

The version number associated with the schema found.

Example

The following code sample illustrates using Version in a script:

...  
'Specify the zone you want to work with  
set zone = GetZoneByPath("LDAP://cn=test_lab/cn=Zones, cn=UNIX,dc=ajax,dc=org")

'Display the schema version number for the zone  
wScript.Echo zone.Version  
...