File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ internal static class StaticObject
1414 internal static char OsDirectorySplitter = OperatingSystem . IsWindows ( ) ? '\\ ' : '/' ;
1515 internal static string ErrorPagePathBeforeValue { get ; private set ; }
1616 internal static string ErrorPagePathAfterValue { get ; private set ; }
17-
17+ internal static int MaxWebSocketConnectionsPerClient { get ; private set ; }
18+ internal static int WebSocketBufferSize { get ; private set ; }
1819
1920 internal static void SetValue ( )
2021 {
@@ -48,6 +49,9 @@ internal static void SetValue()
4849 ErrorPagePathBeforeValue = options . ErrorPagePath . GetTextBeforeValue ( "{value}" ) ;
4950 ErrorPagePathAfterValue = options . ErrorPagePath . GetTextAfterValue ( "{value}" ) ;
5051
52+ MaxWebSocketConnectionsPerClient = options . MaxWebSocketConnectionsPerClient ;
53+ WebSocketBufferSize = options . WebSocketBufferSize ;
54+
5155 StaticObjectHasInitialization = true ;
5256 }
5357 }
You can’t perform that action at this time.
0 commit comments