GetInfo

The ADSI GetInfo method re-initializes the object's properties from the metabase. Because the object's properties are automatically initialized when the object is created, you only need to use this method if you want to refresh properties in the object with current values from the metabase.

Syntax

object.GetInfo 
 

Parts

object
Contains an IIS Admin Object, usually as a result of a previous GetObject operation.

Code Example

<% 
Dim IIsObj 
Set IIsObj = GetObject("IIS://LocalHost/W3SVC/1/Root") 
' Make some changes to properties 
' . . . 
' Discard changes and refresh property values in the object 
IIsObj.GetInfo 
%> 

See Also

SetInfo, Get, Put, GetEx, PutEx, GetInfoEx