diff --git a/websocket-sharp/Net/HttpListenerRequest.cs b/websocket-sharp/Net/HttpListenerRequest.cs
index 04ccd80d..70112812 100644
--- a/websocket-sharp/Net/HttpListenerRequest.cs
+++ b/websocket-sharp/Net/HttpListenerRequest.cs
@@ -635,27 +635,27 @@ namespace WebSocketSharp.Net
/// Begins getting the client's X.509 v.3 certificate asynchronously.
///
///
- /// This asynchronous operation must be completed by calling the
- /// method. Typically, that method is invoked by the
- /// delegate.
+ /// This asynchronous operation must be completed by calling
+ /// the method. Typically,
+ /// that method is invoked by the delegate.
///
///
/// An that contains the status of the asynchronous operation.
///
///
- /// An delegate that references the method(s) called when the
- /// asynchronous operation completes.
+ /// An delegate that references the method(s) called when
+ /// the asynchronous operation completes.
///
///
- /// An that contains a user defined object to pass to the
- /// delegate.
+ /// An that contains a user defined object to pass to
+ /// the delegate.
///
///
/// This method isn't implemented.
///
public IAsyncResult BeginGetClientCertificate (AsyncCallback requestCallback, object state)
{
- // TODO: Not Implemented.
+ // TODO: Not implemented.
throw new NotImplementedException ();
}
@@ -663,22 +663,22 @@ namespace WebSocketSharp.Net
/// Ends an asynchronous operation to get the client's X.509 v.3 certificate.
///
///
- /// This method completes an asynchronous operation started by calling the
- /// method.
+ /// This method completes an asynchronous operation started by calling
+ /// the method.
///
///
/// A that contains the client's X.509 v.3 certificate.
///
///
- /// An obtained by calling the
- /// method.
+ /// An obtained by calling
+ /// the method.
///
///
/// This method isn't implemented.
///
public X509Certificate2 EndGetClientCertificate (IAsyncResult asyncResult)
{
- // TODO: Not Implemented.
+ // TODO: Not implemented.
throw new NotImplementedException ();
}
@@ -693,24 +693,24 @@ namespace WebSocketSharp.Net
///
public X509Certificate2 GetClientCertificate ()
{
- // TODO: Not Implemented.
+ // TODO: Not implemented.
throw new NotImplementedException ();
}
///
- /// Returns a that represents the current
- /// .
+ /// Returns a that represents
+ /// the current .
///
///
/// A that represents the current .
///
public override string ToString ()
{
- var output = new StringBuilder (64);
- output.AppendFormat ("{0} {1} HTTP/{2}\r\n", _method, _uri, _version);
- output.Append (_headers.ToString ());
+ var buff = new StringBuilder (64);
+ buff.AppendFormat ("{0} {1} HTTP/{2}\r\n", _method, _uri, _version);
+ buff.Append (_headers.ToString ());
- return output.ToString ();
+ return buff.ToString ();
}
#endregion