ArcObjects Library Reference (Server)  

IServerObjectAdmin.AddConfiguration Method

Adds a server object configuration (created with CreateConfiguration) to the GIS server.

[Visual Basic .NET]
Public Sub AddConfiguration ( _
    ByVal config As IServerObjectConfiguration _
)
[C#]
public void AddConfiguration (
    IServerObjectConfiguration config
);
[C++]
HRESULT AddConfiguration(
  IServerObjectConfiguration* config
);
[C++]

Parameters

config [in]

  config is a parameter of type IServerObjectConfiguration

Product Availability

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

Remarks

The AddConfiguration method will add a ServerObjectConfiguration to your ArcGIS Server. A new ServerObjectConfiguration can be created using the CreateConfiguration method. Use the IServerObjectConfiguration interface to set the various properties of the configuration, then use the AddConfiguration method on IServerObjectAdmin to add the new configuration to the ArcGIS Server.

Once a configuration is added to the server, you can use StartConfiguration to make it available for applications to use.

See Also

IServerObjectAdmin Interface