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


IServerObjectAdmin.StartConfiguration Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Server > ESRI.ArcGIS.Server > Interfaces > IS > IServerObjectAdmin Interface > IServerObjectAdmin.StartConfiguration Method
ArcGIS Developer Help

IServerObjectAdmin.StartConfiguration Method

Starts a server object configuration and makes it available to clients for processing requests.

[Visual Basic .NET]
Public Sub StartConfiguration ( _
    ByVal Name As String, _
    ByVal TypeName As String _
)
[C#]
public void StartConfiguration (
    string Name,
    string TypeName
);
[C++]
HRESULT StartConfiguration(
  BSTR Name,
  BSTR TypeName
);
[C++]
Parameters
Name [in]

Name is a parameter of type BSTR TypeName [in]
TypeName is a parameter of type BSTR

Product Availability

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

Remarks

The start configuration method will start the server object configuration and make it available for use by clients. When a server object configuration is started, if it is a pooled configuration, the minimum number of server objects as described by the configuration will be pre-loaded. The StartConfiguration method will complete only when all the server object instances have been created to satisfy the minimum.

See Also

IServerObjectAdmin Interface