VCProject.CanAddAssemblyReference 메서드
지정된 어셈블리(.NET) 참조를 추가할 수 있는지 여부를 반환합니다.
네임스페이스: Microsoft.VisualStudio.VCProjectEngine
어셈블리: Microsoft.VisualStudio.VCProjectEngine(Microsoft.VisualStudio.VCProjectEngine.dll)
구문
‘선언
Function CanAddAssemblyReference ( _
bstrRef As String _
) As Boolean
bool CanAddAssemblyReference(
string bstrRef
)
bool CanAddAssemblyReference(
[InAttribute] String^ bstrRef
)
abstract CanAddAssemblyReference :
bstrRef:string -> bool
function CanAddAssemblyReference(
bstrRef : String
) : boolean
매개 변수
- bstrRef
형식: System.String
어셈블리 참조입니다.
반환 값
형식: System.Boolean
지정된 어셈블리 참조를 추가할 수 있으면 true이고, 그렇지 않으면 false입니다.
설명
잘못 된 guid가 있으면 예를 들어, 어셈블리 참조를 추가할 수 없게 됩니다.
이 메서드는 일반적으로 함께에서 사용은 AddAssemblyReference 메서드.이 메서드를 호출 하 여 다음에 어셈블리 참조를 추가할 수 있는지 여부입니다 있는지 확인 하 고 사용 AddAssemblyReference.
예제
참조 하십시오 방법: Visual C++ 코드 모델 확장성에 대한 예제 코드 컴파일 컴파일하고이 예제를 실행 하는 방법에 대 한 정보를 합니다.
CanAddAssemblyReference추가 된.가능한 경우 해당 어셈블리의 경로를 기반으로 프로젝트에 대 한 NET 어셈블리 참조입니다.
' Add a reference to Microsoft.VisualStudio.VCProjectEngine and have a
' Visual C++ project loaded before running this example.
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
Sub Test()
Dim prj As VCProject
Dim vcar As VCAssemblyReference
Dim refcfg As VCReferenceConfiguration
prj = DTE.Solution.Projects.Item(1).Object
If prj.CanAddAssemblyReference("C:\Program Files\ _
Microsoft Visual Studio 8\Common7\IDE\ _
PublicAssemblies\envdte.dll") Then
vcar = prj.AddAssemblyReference("C:\Program Files\ _
Microsoft Visual Studio 8\Common7\IDE\ _
PublicAssemblies\envdte.dll")
End If
refcfg = vcar.ReferenceConfigurations.Item(1)
MsgBox("Consumable? " & refcfg.ConsumableByDesigner)
End Sub
End Module
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.