Search Results for

    Show / Hide Table of Contents

    Class CertificateSelectionEventArgs

    An argument passed on to user for client certificate selection during mutual SSL authentication.

    Inheritance
    object
    EventArgs
    ProxyEventArgsBase
    CertificateSelectionEventArgs
    Inherited Members
    ProxyEventArgsBase.ClientUserData
    EventArgs.Empty
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Titanium.Web.Proxy.EventArguments
    Assembly: Titanium.Web.Proxy.dll
    Syntax
    public class CertificateSelectionEventArgs : ProxyEventArgsBase

    Constructors

    | Edit this page View Source

    CertificateSelectionEventArgs(SessionEventArgsBase, string, X509CertificateCollection, X509Certificate?, string[])

    Declaration
    public CertificateSelectionEventArgs(SessionEventArgsBase session, string targetHost, X509CertificateCollection localCertificates, X509Certificate? remoteCertificate, string[] acceptableIssuers)
    Parameters
    Type Name Description
    SessionEventArgsBase session
    string targetHost
    X509CertificateCollection localCertificates
    X509Certificate remoteCertificate
    string[] acceptableIssuers

    Properties

    | Edit this page View Source

    AcceptableIssuers

    Acceptable issuers as listed by remote server.

    Declaration
    public string[] AcceptableIssuers { get; }
    Property Value
    Type Description
    string[]
    | Edit this page View Source

    ClientCertificate

    Client Certificate we selected. Set this value to override.

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

    LocalCertificates

    Local certificates in store with matching issuers requested by TargetHost website.

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

    RemoteCertificate

    Certificate of the remote server.

    Declaration
    public X509Certificate? RemoteCertificate { get; }
    Property Value
    Type Description
    X509Certificate
    | Edit this page View Source

    Session

    Declaration
    public SessionEventArgsBase Session { get; }
    Property Value
    Type Description
    SessionEventArgsBase

    The session.

    | Edit this page View Source

    TargetHost

    The remote hostname to which we are authenticating against.

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