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 セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。