VCFilter.WebReference Property

Gets the URL of the Web reference for the filter.

Namespace:  Microsoft.VisualStudio.VCProjectEngine
Assembly:  Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)

Syntax

'Declaration
ReadOnly Property WebReference As String
'Usage
Dim instance As VCFilter 
Dim value As String 

value = instance.WebReference
string WebReference { get; }
property String^ WebReference {
    String^ get ();
}
function get WebReference () : String

Property Value

Type: System.String
A string representing the URL to the Web reference.

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.

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

.NET Framework Security

See Also

Reference

VCFilter Interface

VCFilter Members

Microsoft.VisualStudio.VCProjectEngine Namespace