ArcObjects Library Reference (System)  

IJITExtensionManager.InsertExtension Method

Adds an extension to the manager without initialization.

[Visual Basic .NET]
Public Sub InsertExtension ( _
    ByVal pExtCLSID As UID, _
    ByVal pExtension As IExtension _
)
[C#]
public void InsertExtension (
    UID pExtCLSID,
    IExtension pExtension
);
[C++]
HRESULT InsertExtension(
  IUID* pExtCLSID,
  IExtension* pExtension
);
[C++]

Parameters

pExtCLSID [in]

  pExtCLSID is a parameter of type IUID

pExtension [in]

  pExtension is a parameter of type IExtension

Product Availability

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

Description

Adds the specified JIT extension to the ExtensionManager. Note that a JIT extension will be loaded the first time that IApplication::FindExtensionByCLSID is called for that extension.

See Also

IJITExtensionManager Interface