[Modify] Edit it

This commit is contained in:
sta 2018-03-06 19:49:20 +09:00
parent ce93753311
commit a5b074e199

View File

@ -855,21 +855,19 @@ namespace WebSocketSharp.Net
} }
/// <summary> /// <summary>
/// Ends an asynchronous operation to get the client's X.509 v.3 certificate. /// Ends an asynchronous operation to get the certificate provided by the
/// client.
/// </summary> /// </summary>
/// <remarks>
/// This method completes an asynchronous operation started by calling
/// the <see cref="BeginGetClientCertificate"/> method.
/// </remarks>
/// <returns> /// <returns>
/// A <see cref="X509Certificate2"/> that contains the client's X.509 v.3 certificate. /// A <see cref="X509Certificate2"/> that represents an X.509 certificate
/// provided by the client.
/// </returns> /// </returns>
/// <param name="asyncResult"> /// <param name="asyncResult">
/// An <see cref="IAsyncResult"/> obtained by calling /// An <see cref="IAsyncResult"/> instance returned when the operation
/// the <see cref="BeginGetClientCertificate"/> method. /// started.
/// </param> /// </param>
/// <exception cref="NotImplementedException"> /// <exception cref="NotSupportedException">
/// This method isn't implemented. /// This method is not supported.
/// </exception> /// </exception>
public X509Certificate2 EndGetClientCertificate (IAsyncResult asyncResult) public X509Certificate2 EndGetClientCertificate (IAsyncResult asyncResult)
{ {