Show / Hide Table of Contents

Class WebProxyConfig

Config used to construct instance.

Inheritance
Object
WebProxyConfig
Implements
IEquatable<WebProxyConfig>
Namespace: Yarp.ReverseProxy.Configuration
Assembly: Yarp.ReverseProxy.dll
Syntax
public sealed class WebProxyConfig : IEquatable<WebProxyConfig>

Properties

| Improve this Doc View Source

Address

The URI of the proxy server.

Declaration
public Uri? Address { get; set; }
Property Value
Type Description
Nullable<Uri>
| Improve this Doc View Source

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
Nullable<Boolean>
| Improve this Doc View Source

UseDefaultCredentials

Controls whether the are sent with requests. If null, default value will be used: false

Declaration
public bool? UseDefaultCredentials { get; set; }
Property Value
Type Description
Nullable<Boolean>

Methods

| Improve this Doc View Source

Equals(WebProxyConfig)

Declaration
public bool Equals(WebProxyConfig other)
Parameters
Type Name Description
WebProxyConfig other
Returns
Type Description
Boolean
| Improve this Doc View Source

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
Int32

Implements

System.IEquatable<T>
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX