File tree Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -134,19 +134,19 @@ Creating a class that inherits `WebSocketService` class.
134134
135135For example, if you want to provide the echo service,
136136
137- ```cs
138- using System;
139- using WebSocketSharp;
140- using WebSocketSharp.Server;
141-
142- public class Echo : WebSocketService
143- {
144- protected override void onMessage(object sender, MessageEventArgs e)
145- {
146- Send(e.Data);
147- }
148- }
149- ```
137+ ``` cs
138+ using System ;
139+ using WebSocketSharp ;
140+ using WebSocketSharp .Server ;
141+
142+ public class Echo : WebSocketService
143+ {
144+ protected override void onMessage (object sender , MessageEventArgs e )
145+ {
146+ Send (e .Data );
147+ }
148+ }
149+ ```
150150
151151For example, if you want to provide the chat service,
152152
You can’t perform that action at this time.
0 commit comments