IDTExtensibility2.OnStartupComplete 메서드
Visual Studio를 시작할 때 로드하도록 설정된 추가 기능이 로드될 때마다 발생합니다.
네임스페이스: Extensibility
어셈블리: Extensibility(Extensibility.dll)
구문
‘선언
Sub OnStartupComplete ( _
ByRef custom As Array _
)
void OnStartupComplete(
ref Array custom
)
void OnStartupComplete(
[InAttribute] Array^% custom
)
abstract OnStartupComplete :
custom:Array byref -> unit
function OnStartupComplete(
custom : Array
)
매개 변수
custom
형식: Array%추가 기능이 로드될 때 사용할 호스트 관련 데이터를 전달하는 데 사용할 수 있는 빈 배열입니다.
설명
경우에 따라 OnConnection이 올바로 발생하지 않을 수도 있습니다. 예를 들면 추가 기능이 로드될 때 이 추가 기능에 필요한 구성 요소가 아직 로드되지 않은 경우입니다. Visual Studio가 제대로 시작되지 않았기 때문에 이런 문제가 나타날 수 있습니다. OnStartupComplete를 사용하면 Visual Studio IDE(통합 개발 환경)에서 시작 프로세스를 완료할 수 있습니다.
예제
Public Sub OnStartupComplete(ByRef custom As Array) Implements _
IDTExtensibility2.OnStartupComplete
MsgBox("Notifies you when an add-in that is set to start when _
Visual Studio starts has completed loading.")
End Sub
public void OnStartupComplete(ref Array custom)
{
// Notifies you when an add-in that is set to start when
// Visual Studio starts has completed loading.
System.Windows.Forms.MessageBox.Show("Add-in has loaded and is
ready.");
}
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용를 참조하세요.