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


IServerObjectConfiguration.StartupType Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Server > ESRI.ArcGIS.Server > Interfaces > IS > IServerObjectConfiguration Interface > IServerObjectConfiguration.StartupType Property
ArcGIS Developer Help

IServerObjectConfiguration.StartupType Property

The startup type for this server object configuration. Startup type describes whether the server object configuration is started when the server object manager service is started for the GIS server.

[Visual Basic .NET]
Public Property StartupType As esriStartupType
[C#]
public esriStartupType StartupType {get; set;}
[C++]
HRESULT get_StartupType(
  esriStartupType* Type
);
[C++]
HRESULT put_StartupType(
  esriStartupType Type
);
[C++]
Parameters
Type [out, retval]

Type is a parameter of type esriStartupType* Type [in]
Type is a parameter of type esriStartupType

Product Availability

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

Remarks

The StartupType indicates if the configuration is automatically started (esriSTAutomatic) when the server object manager windows or UNIX service is started. Server object configuraitons that are not configured to startup automatically (esriSTManual) must be started manually using ArcCatalog, or by calling the StartConfiguration method on IServerObjectAdmin.

See Also

IServerObjectConfiguration Interface