@@ -80,25 +80,25 @@ public static SessionInfo GetSession(this WebSocketContext context, WebServer se
80
80
}
81
81
#endif
82
82
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 )
91
91
{
92
92
return server . SessionModule ? . GetSession ( context ) ;
93
93
}
94
94
95
95
#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>
102
102
public static SessionInfo GetSession ( this WebServer server , WebSocketContext context )
103
103
{
104
104
return server . SessionModule ? . GetSession ( context ) ;
0 commit comments