ArcObjects Library Reference (Server)  

IServerObjectConfiguration2.ExtensionProperties Property

The extension-dependent properties for the server object configuration.

[Visual Basic .NET]
Public Function get_ExtensionProperties ( _
    ByVal Name As String _
) As IPropertySet
[Visual Basic .NET]
Public Sub set_ExtensionProperties ( _
    ByVal Name As String, _
    ByVal ppExtProperties As IPropertySet _
)
[C#]
public IPropertySet get_ExtensionProperties (
    string Name
);
[C#]
public void set_ExtensionProperties (
    string Name,
    IPropertySet ppExtProperties
);
[C++]
HRESULT get_ExtensionProperties(
  BSTR Name,
  IPropertySet** ppExtProperties
);
[C++]
HRESULT putref_ExtensionProperties(
  BSTR Name,
  IPropertySet* ppExtProperties
);
[C++]

Parameters

Name [in]   Name is a parameter of type BSTR ppExtProperties [out, retval]

  ppExtProperties is a parameter of type IPropertySet

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

  ppExtProperties is a parameter of type IPropertySet

Product Availability

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

Remarks

Server object extensions may include properties that define parameters for their functionality. The set of properties is specific to the server object extension type.

You can get and set these properties using the ExtensionProperties property.

See Also

IServerObjectConfiguration2 Interface