This document is archived and information here might be outdated.  Recommended version.


IServerObjectAdmin3.GetConfigurationsEx2 Method (ArcObjects .NET 10.4 SDK)
ArcObjects Library Reference (Server)  

IServerObjectAdmin3.GetConfigurationsEx2 Method

An enumerator over all the server object configurations in a server configuration folder.

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

Parameters folderName [in] folderName is a parameter of type BSTR stat [in]
stat is a parameter of type esriConfigurationStatus ppEnum [out, retval]
ppEnum is a parameter of type IEnumServerObjectConfiguration

Product Availability

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

Remarks

GetConfigurationsEx2 returns an enumeration (IEnumServerObjectConfiguration) of IServerObjectConfiguration for configurations of a specific esriConfigurationStatus from the folder specified.


Some folderNames have special significance:

   folderName == "" means "root".
   folderName == "NULL" means "all folders and root"

See Also

IServerObjectAdmin3 Interface