Skip to content

Commit 6287a9c

Browse files
committed
minor formatting changes
1 parent a2b2022 commit 6287a9c

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

src/Unosquare.Labs.EmbedIO/Extensions.cs

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -80,25 +80,25 @@ public static SessionInfo GetSession(this WebSocketContext context, WebServer se
8080
}
8181
#endif
8282

83-
/// <summary>
84-
/// Gets the session object associated to the current context.
85-
/// Returns null if the LocalSessionWebModule has not been loaded.
86-
/// </summary>
87-
/// <param name="server">The server.</param>
88-
/// <param name="context">The context.</param>
89-
/// <returns></returns>
90-
public static SessionInfo GetSession(this WebServer server, HttpListenerContext context)
83+
/// <summary>
84+
/// Gets the session object associated to the current context.
85+
/// Returns null if the LocalSessionWebModule has not been loaded.
86+
/// </summary>
87+
/// <param name="server">The server.</param>
88+
/// <param name="context">The context.</param>
89+
/// <returns></returns>
90+
public static SessionInfo GetSession(this WebServer server, HttpListenerContext context)
9191
{
9292
return server.SessionModule?.GetSession(context);
9393
}
9494

9595
#if NET452
96-
/// <summary>
97-
/// Gets the session.
98-
/// </summary>
99-
/// <param name="server">The server.</param>
100-
/// <param name="context">The context.</param>
101-
/// <returns></returns>
96+
/// <summary>
97+
/// Gets the session.
98+
/// </summary>
99+
/// <param name="server">The server.</param>
100+
/// <param name="context">The context.</param>
101+
/// <returns></returns>
102102
public static SessionInfo GetSession(this WebServer server, WebSocketContext context)
103103
{
104104
return server.SessionModule?.GetSession(context);

0 commit comments

Comments
 (0)