Class WebProxyConfig
Config used to construct
Inheritance
System.Object
WebProxyConfig
Implements
System.IEquatable<WebProxyConfig>
Namespace: Yarp.ReverseProxy.Configuration
Assembly: Yarp.ReverseProxy.dll
Syntax
public sealed class WebProxyConfig : IEquatable<WebProxyConfig>
Properties
| Improve this Doc View SourceAddress
The URI of the proxy server.
Declaration
public Uri? Address { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<Uri> |
BypassOnLocal
true to bypass the proxy for local addresses; otherwise, false. If null, default value will be used: false
Declaration
public bool? BypassOnLocal { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
UseDefaultCredentials
Controls whether the
Declaration
public bool? UseDefaultCredentials { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
Methods
| Improve this Doc View SourceEquals(WebProxyConfig)
Declaration
public bool Equals(WebProxyConfig other)
Parameters
Type | Name | Description |
---|---|---|
WebProxyConfig | other |
Returns
Type | Description |
---|---|
System.Boolean |
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 |
Implements
System.IEquatable<>