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
/// This transport provides one-way communication from server to client using the SSE protocol over HTTP,
13
-
/// while receiving client messages through a separate mechanism. It writes messages as
13
+
/// while receiving client messages through a separate mechanism. It writes messages as
14
14
/// SSE events to a response stream, typically associated with an HTTP response.
15
15
/// </para>
16
16
/// <para>
@@ -36,6 +36,9 @@ public sealed class StreamableHttpServerTransport : ITransport
36
36
37
37
privateint_getRequestStarted;
38
38
39
+
/// <inheritdoc/>
40
+
publicstring?SessionId{get;set;}
41
+
39
42
/// <summary>
40
43
/// Configures whether the transport should be in stateless mode that does not require all requests for a given session
41
44
/// to arrive to the same ASP.NET Core application process. Unsolicited server-to-client messages are not supported in this mode,
@@ -45,6 +48,15 @@ public sealed class StreamableHttpServerTransport : ITransport
45
48
/// </summary>
46
49
publicboolStateless{get;init;}
47
50
51
+
/// <summary>
52
+
/// Gets a value indicating whether the execution context should flow from the calls to <see cref="HandlePostRequest(IDuplexPipe, CancellationToken)"/>
53
+
/// to the corresponding <see cref="JsonRpcMessage.ExecutionContext"/> emitted by the <see cref="MessageReader"/>.
0 commit comments