From dcdd283f65c9b4bb59a3e98b224b30d8ab49e5b7 Mon Sep 17 00:00:00 2001 From: sta Date: Tue, 26 Jan 2016 16:48:07 +0900 Subject: [PATCH] [Modify] Edit it --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2307a071..36775c61 100644 --- a/README.md +++ b/README.md @@ -442,13 +442,15 @@ As a WebSocket server, if you would like to ignore the extensions requested from ```csharp wssv.AddWebSocketService ( "/Chat", - () => new Chat () { - // To ignore the extensions requested from a client. - IgnoreExtensions = true - }); + () => + new Chat () { + // To ignore the extensions requested from a client. + IgnoreExtensions = true + } +); ``` -If it's set to `true`, the server doesn't return the **Sec-WebSocket-Extensions header** in the connection response. +If it's set to `true`, the server doesn't return the **Sec-WebSocket-Extensions** header in its response. I think this is useful when you get something error in connecting the server and exclude the extensions as a cause of the error.