VCProject.ReferencesConsumableByDesigners - свойство
Gets the collection of references that are consumable by designers in the active solution configuration.
Пространство имен: Microsoft.VisualStudio.VCProjectEngine
Сборка: Microsoft.VisualStudio.VCProjectEngine (в Microsoft.VisualStudio.VCProjectEngine.dll)
Синтаксис
'Декларация
ReadOnly Property ReferencesConsumableByDesigners As Object
'Применение
Dim instance As VCProject
Dim value As Object
value = instance.ReferencesConsumableByDesigners
Object ReferencesConsumableByDesigners { get; }
property Object^ ReferencesConsumableByDesigners {
Object^ get ();
}
function get ReferencesConsumableByDesigners () : Object
Значение свойства
Тип: System.Object
An object representing a collection of references.
Примеры
See How to: Compile Example Code for Project Model Extensibility for information about how to compile and run this example.
' 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 sln As Solution
Dim prj As VCProject
prj = DTE.Solution.Item(1).Object
MsgBox("Consumable refs: " & _
prj.ReferencesConsumableByDesigners.ToString)
End Sub
End Module
Разрешения
- Полное доверие для непосредственно вызывающего метода. Этот член не может быть использован частично доверенным кодом. Дополнительные сведения см. в разделе Using Libraries from Partially Trusted Code.