IDTExtensibility2.OnBeginShutdown 方法
每当在运行外接程序的过程中关闭 Visual Studio 集成开发环境 (IDE) 时发生。
命名空间: Extensibility
程序集: Extensibility(在 Extensibility.dll 中)
语法
声明
Sub OnBeginShutdown ( _
ByRef custom As Array _
)
void OnBeginShutdown(
ref Array custom
)
void OnBeginShutdown(
[InAttribute] Array^% custom
)
abstract OnBeginShutdown :
custom:Array byref -> unit
function OnBeginShutdown(
custom : Array
)
参数
custom
类型:Array%一个空数组,可用来传递在外接程序中使用的特定于主机的数据。
备注
虽然可以取消关闭 Visual Studio,但是无法取消 OnBeginShutdown 方法。 因此,外接程序会假定所有关闭事件都发生,并相应地执行所有清理例程。
此方法可用于在 Visual Studio 关闭时存储外接程序的设置,以便其以后可以恢复为原始状态。
示例
Public Sub OnBeginShutdown(ByRef custom As Array) Implements _
IDTExtensibility2.OnBeginShutdown
MsgBox("Place cleanup code here.")
End Sub
public void OnBeginShutdown(ref Array custom)
{
// Place cleanup code here.
System.Windows.Forms.MessageBox.Show("Shutting down Visual
Studio");
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关详细信息,请参阅通过部分受信任的代码使用库。