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


IServerObjectAdmin2.GetExtensionTypes Method (ArcObjects .NET 10.4 SDK)
ArcObjects Library Reference (Server)  

IServerObjectAdmin2.GetExtensionTypes Method

An enumerator over all the server object extension types.

[Visual Basic .NET]
Public Function GetExtensionTypes ( _
    ByVal SOTypeName As String _
) As IEnumServerObjectExtensionType
[C#]
public IEnumServerObjectExtensionType GetExtensionTypes (
    string SOTypeName
);
[C++]
HRESULT GetExtensionTypes(
  BSTR SOTypeName,
  IEnumServerObjectExtensionType** ppTypes
);
[C++]

Parameters SOTypeName [in] SOTypeName is a parameter of type BSTR ppTypes [out, retval]
ppTypes is a parameter of type IEnumServerObjectExtensionType

Product Availability

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

Remarks

Server object extensions can be designated by a type name, description and class ID. The GetExtensionTypes method of the IServerObjectAdmin2 interface provides a reference to an enumeration of IServerObjectExtensionTypes. IServerObjectExtensionType has methods that can be interrogated for type name, description and class ID.

See Also

IServerObjectAdmin2 Interface