TimeStamp

Gets the date and time that the pending group profiles were imported from the data source.

Syntax

DateTime TimeStamp {get;}

Property value

The date and time that the pending group data was imported.

Example

The following code sample illustrates using this property in a script:

...
'Specify the zone you want to work with  
Set objZone = cims.GetZone("w2k3.net/Acme/Zones/default")  
‘Display the time groups where imported  
Set objPendingGrps = objZone.GetImportPendingGroups  
If not objPendingGrps is nothing then  
wScript.Echo "Imported from source: ", objPendingGrps.TimeStamp  
End if 
...