Reference3.SubType 속성
어셈블리의 하위 형식을 설정하거나 가져옵니다.
네임스페이스: VSLangProj80
어셈블리: VSLangProj80(VSLangProj80.dll)
구문
‘선언
Property SubType As String
string SubType { get; set; }
property String^ SubType {
String^ get ();
void set (String^ value);
}
abstract SubType : string with get, set
function get SubType () : String
function set SubType (value : String)
속성 값
형식: String
어셈블리의 하위 형식을 나타내는 문자열 값입니다.SQL Server Visual Basic 또는 Visual C# 프로젝트의 경우 참조가 대상 SQL Server에서 검색되었으면 이 속성은 SQLCLR로 설정됩니다.
설명
이 속성은 SQL Server Visual Basic 또는 Visual C# 프로젝트에서만 유용합니다.
예제
이 예제에서는 열린 Visual Basic 또는 Visual C# 프로젝트에 참조를 추가하고 참조의 하위 형식이 있으면 표시합니다. 이 예제를 추가 기능으로 실행하려면 방법: 자동화 개체 모델 코드의 예제 컴파일 및 실행을 참조하십시오.
추가되는 참조의 기본 경로는 <드라이브>:\Program Files\Microsoft SQL Server\90\COM입니다. 예제의 <file path>를 이 경로 또는 적절한 다른 파일 경로로 바꿉니다.
Imports VSLangProj
Imports VSLangProj2
Imports VSLangProj80
Public Sub OnConnection(ByVal application As Object, _
ByVal connectMode As ext_ConnectMode, ByVal addInInst As Object, _
ByRef custom As Array) Implements IDTExtensibility2.OnConnection
applicationObject = CType(application, DTE2)
addInInstance = CType(addInInst, AddIn)
DisplaySubType(applicationObject)
End Sub
Sub DisplaySubType(ByVal dte As DTE2)
Dim aProject As Project
Dim aVSProject As VSProject2
aProject = applicationObject.Solution.Projects.Item(1)
aVSProject = _
CType(applicationObject.Solution.Projects.Item(1).Object, _
VSProject2)
' Add an Assembly reference and display its subtype.
Dim newRef As Reference3
' Replace <file path> with an actual file path.
newRef = CType(aVSProject.References.Add _
("<file path>\sqldistx.dll "), Reference3)
MsgBox("Added an assembly reference, named: " & newRef.Name)
MsgBox("The SubType of " & newRef.Name & " is " _
& newRef.SubType)
End Sub
using System.Windows.Forms;
using VSLangProj;
using VSLangProj2;
using VSLangProj80;
public void OnConnection(object application,
ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
applicationObject = (DTE2)application;
addInInstance = (AddIn)addInInst;
DisplaySubType(((DTE2)applicationObject));
}
public void DisplaySubType(DTE2 dte)
{
// The first project is a Visual Basic or C# project.
VSProject2 vsProject =
((VSProject2)(applicationObject.Solution.Projects.Item(1).Object));
Reference3 aRef = null;
// Add an Assembly reference and display its subtype.
// Replace <file path> with an actual file path.
aRef = (Reference3)vsProject.References.Add
((@"<file path>\sqldistx.dll"));
MessageBox.Show("Added reference, named: "
+ aRef.Name);
MessageBox.Show("The SubType of " + aRef.Name + " is "
+ aRef.SubType);
}
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용를 참조하세요.