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
형식: System.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 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.