VSProject.CreateWebReferencesFolder – metoda
Vytvoří složku webové odkazy pro projekt.
Obor názvů: VSLangProj
Sestavení: VSLangProj (v VSLangProj.dll)
Syntaxe
'Deklarace
Function CreateWebReferencesFolder As ProjectItem
ProjectItem CreateWebReferencesFolder()
ProjectItem^ CreateWebReferencesFolder()
abstract CreateWebReferencesFolder : unit -> ProjectItem
function CreateWebReferencesFolder() : ProjectItem
Vrácená hodnota
Typ: EnvDTE.ProjectItem
Vrátí ProjectItem objektu.
Poznámky
Pokud již existuje složka webové odkazy, pak vrátí tuto vlastnost ProjectItem pro existující složku.
Příklady
Visual Basic
' Macro Editor
Imports VSLangProj
' This example creates a Web references folder, if it does not
' already exist, and displays some of the folder properties.
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 doesn't already exist.
If (aVSProject.WebReferencesFolder Is Nothing) Then
Dim webFolder As ProjectItem
webFolder = 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 & ".")
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
Zabezpečení rozhraní .NET Framework
- Plná důvěra přímému volajícímu. Částečně zabezpečený kód nemůže tento člen použít. Další informace naleznete v tématu Používání knihoven z částečně důvěryhodného kódu.