[Modify] Edit it

This commit is contained in:
sta 2018-03-04 20:58:52 +09:00
parent 757dac4b8b
commit cff3c086dd

View File

@ -830,26 +830,22 @@ namespace WebSocketSharp.Net
#region Public Methods #region Public Methods
/// <summary> /// <summary>
/// Begins getting the client's X.509 v.3 certificate asynchronously. /// Begins getting the certificate provided by the client asynchronously.
/// </summary> /// </summary>
/// <remarks>
/// This asynchronous operation must be completed by calling
/// the <see cref="EndGetClientCertificate"/> method. Typically,
/// that method is invoked by the <paramref name="requestCallback"/> delegate.
/// </remarks>
/// <returns> /// <returns>
/// An <see cref="IAsyncResult"/> that contains the status of the asynchronous operation. /// An <see cref="IAsyncResult"/> that indicates the status of the
/// operation.
/// </returns> /// </returns>
/// <param name="requestCallback"> /// <param name="requestCallback">
/// An <see cref="AsyncCallback"/> delegate that references the method(s) called when /// An <see cref="AsyncCallback"/> delegate that invokes the method called
/// the asynchronous operation completes. /// when the operation is complete.
/// </param> /// </param>
/// <param name="state"> /// <param name="state">
/// An <see cref="object"/> that contains a user defined object to pass to /// An <see cref="object"/> that represents a user defined object to pass to
/// the <paramref name="requestCallback"/> delegate. /// the callback delegate.
/// </param> /// </param>
/// <exception cref="NotImplementedException"> /// <exception cref="NotSupportedException">
/// This method isn't implemented. /// This method is not supported.
/// </exception> /// </exception>
public IAsyncResult BeginGetClientCertificate ( public IAsyncResult BeginGetClientCertificate (
AsyncCallback requestCallback, object state AsyncCallback requestCallback, object state