// Copyright © 2014 The CefSharp Authors. All rights reserved. // // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. using System; using System.Security.Cryptography.X509Certificates; namespace CefSharp { /// /// Callback interface used to select a client certificate for authentication. /// public interface ISelectClientCertificateCallback : IDisposable { /// /// Callback interface used to select a client certificate for authentication. /// value means that no client certificate should be used. /// /// selected certificate void Select(X509Certificate2 selectedCert); /// /// Gets a value indicating whether the callback has been disposed of. /// bool IsDisposed { get; } } }