You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/Microsoft.AspNetCore.SystemWebAdapters.CoreServices/SessionState/RemoteSession/DoubleConnectionRemoteAppSessionManager.cs
+2
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,8 @@ public DoubleConnectionRemoteAppSessionManager(ISessionSerializer serializer, IO
[System.Diagnostics.CodeAnalysis.SuppressMessage("Reliability","CA2000:Dispose objects before losing scope",Justification="They are either passed into another object or are manually disposed")]
/// This is used to dispatch to either <see cref="DoubleConnectionRemoteAppSessionManager"/> if in read-only mode or <see cref="SingleConnectionWriteableRemoteAppSessionStateManager"/> if not.
Copy file name to clipboardexpand all lines: src/Microsoft.AspNetCore.SystemWebAdapters.CoreServices/SessionState/RemoteSession/RemoteAppSessionStateExtensions.cs
+9-9
Original file line number
Diff line number
Diff line change
@@ -16,18 +16,18 @@ public static ISystemWebAdapterRemoteClientAppBuilder AddSessionClient(this ISys
Copy file name to clipboardexpand all lines: src/Microsoft.AspNetCore.SystemWebAdapters.CoreServices/SessionState/RemoteSession/RemoteAppSessionStateManager.cs
+5-2
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,10 @@ public RemoteAppSessionStateManager(
Copy file name to clipboardexpand all lines: src/Microsoft.AspNetCore.SystemWebAdapters.CoreServices/SessionState/RemoteSession/SingleConnectionWriteableRemoteAppSessionStateManager.cs
Copy file name to clipboardexpand all lines: src/Microsoft.AspNetCore.SystemWebAdapters.FrameworkServices/SessionState/RemoteSession/ReadWriteSessionHandler.cs
+28-12
Original file line number
Diff line number
Diff line change
@@ -23,12 +23,23 @@ public override async Task ProcessRequestAsync(HttpContext context)
awaitJsonSerializer.SerializeAsync(context.Response.OutputStream,newSessionPostResult(){Success=false,Message="No session data was supplied for commit"},ResultContext.Default.SessionPostResult,token);
0 commit comments