Share via


Proxy Property

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

When overridden in a descendant class, gets or sets the network proxy to use to access this Internet resource.

Namespace:  System.Net
Assembly:  System.Http (in System.Http.dll)

Syntax

'Declaration
Public Overridable Property Proxy As IWebProxy
public virtual IWebProxy Proxy { get; set; }
public:
virtual property IWebProxy^ Proxy {
    IWebProxy^ get ();
    void set (IWebProxy^ value);
}
abstract Proxy : IWebProxy with get, set
override Proxy : IWebProxy with get, set
function get Proxy () : IWebProxy
function set Proxy (value : IWebProxy)

Property Value

Type: System.Net. . :: . .IWebProxy
The IWebProxy to use to access the Internet resource.

Remarks

The Proxy property identifies the network proxy that the request uses to access the Internet resource. The request is made through the proxy server rather than directly to the Internet resource.

Note

The WebRequest class is an abstract class. The actual behavior of WebRequest instances at run time is determined by the descendant class returned by the WebRequest..::..Create method. For more information about default values and exceptions, see the documentation for the descendant classes, such as HttpWebRequest and FileWebRequest.

.NET Framework Security

See Also

Reference

WebRequest Class

System.Net Namespace