Search Results for

    Show / Hide Table of Contents

    Class ProxyEndPoint

    An abstract endpoint where the proxy listens

    Inheritance
    object
    ProxyEndPoint
    ExplicitProxyEndPoint
    TransparentBaseProxyEndPoint
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Titanium.Web.Proxy.Models
    Assembly: Titanium.Web.Proxy.dll
    Syntax
    public abstract class ProxyEndPoint

    Constructors

    | Edit this page View Source

    ProxyEndPoint(IPAddress, int, bool)

    Constructor.

    Declaration
    protected ProxyEndPoint(IPAddress ipAddress, int port, bool decryptSsl)
    Parameters
    Type Name Description
    IPAddress ipAddress
    int port
    bool decryptSsl

    Properties

    | Edit this page View Source

    AdmittedClientCount

    Number of client connections currently admitted on this endpoint (accepted and past the admission gate, not yet finished being handled).

    Declaration
    public int AdmittedClientCount { get; }
    Property Value
    Type Description
    int
    | Edit this page View Source

    DecryptSsl

    Enable SSL?

    Declaration
    public bool DecryptSsl { get; }
    Property Value
    Type Description
    bool
    | Edit this page View Source

    EnableHttpInterception

    Endpoint-level override for EnableHttpInterception. null inherits the server-level value.

    Declaration
    public bool? EnableHttpInterception { get; set; }
    Property Value
    Type Description
    bool?
    | Edit this page View Source

    GenericCertificate

    Generic certificate to use for SSL decryption.

    Declaration
    public X509Certificate2? GenericCertificate { get; set; }
    Property Value
    Type Description
    X509Certificate2
    | Edit this page View Source

    IpAddress

    Ip Address we are listening.

    Declaration
    public IPAddress IpAddress { get; }
    Property Value
    Type Description
    IPAddress
    | Edit this page View Source

    MaxCachedConnections

    Optional override of MaxCachedConnections for upstream TCP pooling when this endpoint handles the session. null uses the server default. Useful for reverse-proxy endpoints that want a deeper pool toward a hot origin without raising the process-wide default for every explicit MITM host.

    Declaration
    public int? MaxCachedConnections { get; set; }
    Property Value
    Type Description
    int?
    | Edit this page View Source

    MaxConcurrentClients

    Maximum number of client connections admitted on this endpoint at once, layered on top of MaxConcurrentClientConnections. null (the default) disables the per-endpoint admission gate, preserving today's unbounded behavior.

    Declaration
    public int? MaxConcurrentClients { get; set; }
    Property Value
    Type Description
    int?
    | Edit this page View Source

    Port

    Port we are listening.

    Declaration
    public int Port { get; }
    Property Value
    Type Description
    int
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX