Поделиться через


VSProject.WebReferencesFolder - свойство

Обновлен: Ноябрь 2007

Возвращает объект ProjectItem, представляющий папку веб-ссылок проекта. Если данной папки не существует, это свойство возвращает значение Nothing (ссылка nullссылка null (Nothing в Visual Basic) (Nothing в Visual Basic)). Доступно только для чтения.

Пространство имен:  VSLangProj
Сборка:  VSLangProj (в VSLangProj.dll)

Синтаксис

'Декларация
ReadOnly Property WebReferencesFolder As ProjectItem
'Применение
Dim instance As VSProject
Dim value As ProjectItem

value = instance.WebReferencesFolder
ProjectItem WebReferencesFolder { get; }
property ProjectItem^ WebReferencesFolder {
    ProjectItem^ get ();
}
function get WebReferencesFolder () : ProjectItem

Значение свойства

Тип: EnvDTE.ProjectItem
Возвращает объект ProjectItem, представляющий папку веб-ссылок проекта.

Заметки

Веб-ссылки проекта могут быть извлечены путем доступа свойства WebReferencesFolder к свойству ProjectItems.

В проекте может содержаться только одна папка веб-ссылок. Эта папка может быть создана с помощью операции CreateWebReferencesFolder. Кроме того, эта папка создается автоматически во время добавления в проект первой веб-ссылки с помощью CreateWebReferencesFolder.

В проектах Visual Basic или Visual C# свойство Kind элемента проекта WebReferencesFolder всегда имеет значениеvsProjectItemKindPhysicalFolder, поскольку проекты Visual Basic и Visual C# поддерживают только реально существующие файлы.

Примеры

' Macro Editor
' This example creates a Web references folder, if it does not 
' already exist, and displays some of the folder properties.
Imports VSLangProj
Sub WebReferencesFolderExample()
   ' This example assumes that the first project in the 
   ' solution is either a Visual Basic or C# project.
   Dim aVSProject As VSProject = _
      CType(DTE.Solution.Projects.Item(1).Object, VSProject)
        
   ' Add a new folder if it does not already exist.
   If (aVSProject.WebReferencesFolder Is Nothing) Then
      Dim newFolder As ProjectItem
      newFolder = aVSProject.CreateWebReferencesFolder()
   End If
        
   ' Display the name of the Web references folder.
   Dim theFolder As ProjectItem = aVSProject.WebReferencesFolder
   MsgBox("The name of the WebReferences folder is " _
      & theFolder.Name & ".")
        
   ' All Visual Basic and C# Web references folders are physical.
   If (theFolder.Kind = _
      EnvDTE.Constants.vsProjectItemKindPhysicalFolder) Then
      MsgBox(theFolder.Name & " is a physical folder.")
   End If

   MsgBox("There are " & theFolder.ProjectItems.Count.ToString() & _
      " Web references.")
End Sub

Разрешения

См. также

Ссылки

VSProject Интерфейс

VSProject - члены

VSLangProj - пространство имен