VCFilter.WebReference Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the URL of the Web reference for the filter.
public:
property System::String ^ WebReference { System::String ^ get(); };
public:
property Platform::String ^ WebReference { Platform::String ^ get(); };
[System.Runtime.InteropServices.DispId(2365)]
public string WebReference { [System.Runtime.InteropServices.DispId(2365)] get; }
[<System.Runtime.InteropServices.DispId(2365)>]
[<get: System.Runtime.InteropServices.DispId(2365)>]
member this.WebReference : string
Public ReadOnly Property WebReference As String
Property Value
A string representing the URL to the Web reference.
- Attributes
Examples
The following example uses WebReference in the integrated development environment (IDE):
' Macro code.
' Add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
Sub Test()
Dim idx As Integer
Dim filter As VCFilter
Dim col As IVCCollection
Dim prj As VCProject
prj = DTE.Solution.Projects.Item(1).Object
col = prj.Filters
For idx = 1 To col.Count
filter = col.Item(idx)
MsgBox("Web reference: " & filter.WebReference)
Next
End Sub
End Module
Remarks
Returns a blank string if no Web reference exists.
See How to: Compile Example Code for Project Model Extensibility for information about how to compile and run this example.