We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d74ee1 commit be6a481Copy full SHA for be6a481
2 files changed
src/ServiceStack.Interfaces/Redis/IRedisSubscription.cs
@@ -20,6 +20,11 @@ public interface IRedisSubscription
20
/// </summary>
21
Action<string, string> OnMessage { get; set; }
22
23
+ /// <summary>
24
+ /// Registered handler called when each message is received
25
+ /// </summary>
26
+ Action<string, byte[]> OnMessageBytes { get; set; }
27
+
28
/// <summary>
29
/// Registered handler called when each channel is unsubscribed
30
tests/CheckWebCore/Views/Throw.cshtml
@@ -0,0 +1,11 @@
1
+@model HelloResponse
2
3
+<p>View Page for <a href="/throw">/throw</a> API</p>
4
5
+<h1>@Model</h1>
6
7
+<h3>IsError: @IsError</h3>
8
9
+<h3>GetErrorStatus(): @GetErrorStatus()</h3>
10
11
+@if (RenderErrorIfAny()) { return; }
0 commit comments