GetInfo

The ADSI GetInfo method re-initializes the object's properties by using values from the metabase. Because the object's properties are automatically initialized when the object is created, you need to use this method only 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