Share via


VpnDomainNameInfo.WebProxyUris Property

Definition

Gets a web proxy URI to be used when connecting to a resource in the specified namespace. This value differs from WebProxyServers in that the URI can be specify a custom port number, while the WebProxyServers value assumes port 80.

Note that even though the property name is plural, the returned list of URIs never has more than one element.

public:
 property IVector<Uri ^> ^ WebProxyUris { IVector<Uri ^> ^ get(); };
IVector<Uri> WebProxyUris();
public IList<System.Uri> WebProxyUris { get; }
var iVector = vpnDomainNameInfo.webProxyUris;
Public ReadOnly Property WebProxyUris As IList(Of Uri)

Property Value

A list of web proxy server URIs to be used when connecting to a resource in the specified namespace.

Windows requirements

Device family
Windows 10 Anniversary Edition (introduced in 10.0.14393.0)
API contract
Windows.Foundation.UniversalApiContract (introduced in v3.0)
App capabilities
networkingVpnProvider

Remarks

To specify a custom port number, use URI syntax. For example, to use port 56789 at example.com, specify http://example.com:56789 to the URI constructor.

Applies to