diff --git a/websocket-sharp/Ext.cs b/websocket-sharp/Ext.cs
index 5f598e19..e29ab664 100644
--- a/websocket-sharp/Ext.cs
+++ b/websocket-sharp/Ext.cs
@@ -2197,56 +2197,6 @@ namespace WebSocketSharp
return ret;
}
- ///
- /// Sends the specified content data with the HTTP response.
- ///
- ///
- /// A that represents the HTTP response
- /// used to send the content data.
- ///
- ///
- /// An array of that specifies the content data to send.
- ///
- ///
- ///
- /// is .
- ///
- ///
- /// -or-
- ///
- ///
- /// is .
- ///
- ///
- [Obsolete ("This method will be removed.")]
- public static void WriteContent (
- this HttpListenerResponse response, byte[] content
- )
- {
- if (response == null)
- throw new ArgumentNullException ("response");
-
- if (content == null)
- throw new ArgumentNullException ("content");
-
- var len = content.LongLength;
- if (len == 0) {
- response.Close ();
- return;
- }
-
- response.ContentLength64 = len;
-
- var output = response.OutputStream;
-
- if (len <= Int32.MaxValue)
- output.Write (content, 0, (int) len);
- else
- output.WriteBytes (content, 1024);
-
- output.Close ();
- }
-
#endregion
}
}