AddIn.SatelliteDllPath 속성
지역화된 리소스가 포함된 DLL의 위치를 가져옵니다.
네임스페이스: EnvDTE
어셈블리: EnvDTE(EnvDTE.dll)
구문
‘선언
ReadOnly Property SatelliteDllPath As String
string SatelliteDllPath { get; }
property String^ SatelliteDllPath {
String^ get ();
}
abstract SatelliteDllPath : string with get
function get SatelliteDllPath () : String
속성 값
형식: String
지역화된 리소스가 포함된 DLL의 경로를 나타내는 문자열입니다.
설명
위성 DLL 파일은 추가 리소스 또는 지역화된 리소스의 추가 기능에서 사용할 수 있습니다.
예제
Sub SatelliteDLLPathExample()
' Set object references.
Dim addincoll As AddIns
Dim addinobj As AddIn
addincoll = DTE.AddIns
addinobj = addincoll.Item(1)
' Connect the add-in if it is not already connected
' and list its SatelliteDLLPath and Guid.
If addinobj.Connected = False Then
addinobj.Connected = True
End If
MsgBox("Satellite DLL Path: " & addinobj.SatelliteDllPath)
MsgBox("DLL GUID: " & addinobj.Guid)
End Sub
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용를 참조하세요.