ArcObjects Library Reference (Server)  

IServerObjectManager2.GetConfigurationInfosEx Method

An enumerator over all the ArcGIS server's ServerObjectExtensionInfos in a given folder.

[Visual Basic .NET]
Public Function GetConfigurationInfosEx ( _
    ByVal folderName As String _
) As IEnumServerObjectConfigurationInfo
[C#]
public IEnumServerObjectConfigurationInfo GetConfigurationInfosEx (
    string folderName
);
[C++]
HRESULT GetConfigurationInfosEx(
  BSTR folderName,
  IEnumServerObjectConfigurationInfo** ppEnum
);
[C++]

Parameters

folderName [in]   folderName is a parameter of type BSTR ppEnum [out, retval]

  ppEnum is a parameter of type IEnumServerObjectConfigurationInfo

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

GetConfigurationInfosEx returns an enumeration (IEnumServerObjectConfigurationInfo) of IServerObjectConfigurationInfo for configurations of any esriConfigurationStatus from the folder specified.

 

Some folderNames have special significance:

         folderName == “” means “root”.

         folderName == “NULL” means “all folders and root”

See Also

IServerObjectManager2 Interface