VSProject.References الخاصية
يحصل على المجموعة References للمشروع. للقراءة فقط
مساحة الاسم: VSLangProj
التجميع: VSLangProj (في VSLangProj.dll)
بناء الجملة
'إقرار
ReadOnly Property References As References
Get
References References { get; }
property References^ References {
References^ get ();
}
abstract References : References
function get References () : References
قيمة الخاصية
النوع: VSLangProj.References
المجموعة References تحتوي على الكائنات Reference ، كل منها يمثل مرجعاً.
ملاحظات
في ترتيب إلى بكتابة تعليمات برمجية من مكون خارجي، أولاً يجب أن مشروع الخاص بك يحتوي على مرجع إلى هذا مكوّن. يمكن إجراء مرجع لثلاثة أنواع من المكونات: تجميعات .NET, خوادم التنفيذ التلقائي لـ COM و عناصر تحكم, والمشاريع الأخرى ضمن نفس الحل الذي يكشف المكونات.
أمثلة
[Visual Basic]
' Macro Editor
' Assuming that the first project in the solution is a Visual Basic or C#
' application, this routine lists the references in the project.
Imports VSLangProj
Sub ListReferences()
' Retrieve the VSProject object.
Dim theVSProject As VSProject = _
CType(DTE.Solution.Projects.Item(1).Object, VSProject)
' Retrieve the references collection.
Dim refs As References = theVSProject.References
' Create a string list of the reference names.
Dim refList As String = ""
Dim aRef As Reference
For Each aRef In refs
refList &= aRef.Identity & ControlChars.CrLf
Next
MsgBox(refList)
End Sub
أمن NET Framework.
- الثقة الكاملة للمتصل الفوري. يتعذر استخدام هذا العضو بواسطة التعليمات البرمجية الموثوق بها جزئيًا. لمزيد من المعلومات، راجع باستخدام مكتبات من تعليمات برمجية موثوق بها جزئي.