382Microsoft Visual Studio 2010: A Beginner’s Guide
///Array of parameters that are host application specific.
///</param>
///<seealso class='IDTExtensibility2' />
public void OnStartupComplete(ref Array custom)
{
}
///<summary>
///Implements the OnBeginShutdown method of the
///IDTExtensibility2 interface. Receives notification
///that the host application is being unloaded.
///</summary>
///<param term='custom'>
///Array of parameters that are host application specific.
///</param>
///<seealso class='IDTExtensibility2' />
public void OnBeginShutdown(ref Array custom)
{
}
///<summary>
///Implements the QueryStatus method of the
///IDTCommandTarget interface. This is called
///when the command's availability is updated
///</summary>
///<param term='commandName'>
///The name of the command to determine state for.
///</param>
///<param term='neededText'>
///Text that is needed for the command.
///</param>
///<param term='status'>
///The state of the command in the user interface.
///</param>
///<param term='commandText'>
///Text requested by the neededText parameter.
///</param>
///<seealso class='Exec' />
public void QueryStatus( string commandName, vsCommandStatusTextWanted neededText, ref vsCommandStatus status,
ref object commandText)
{
}