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
`Simplify.Web.MessageBox` is a package which provides non-interactive server side message box for [Simplify.Web](https://github.com/SimplifyNet/Simplify.Web) web-framework.
4
-
5
-
## Package status
6
-
7
-
| Latest version |[](https://www.nuget.org/packages/Simplify.Web.MessageBox/)|
8
-
| :------ | :------: |
9
-
|**Dependencies**|[](https://libraries.io/nuget/Simplify.Web.MessageBox)|
[](https://libraries.io/nuget/Simplify.Web.MessageBox)
`Simplify.Web.MessageBox` is a package which provides non-interactive server side message box for [Simplify.Web](https://github.com/SimplifyNet/Simplify.Web) web-framework.
17
11
18
12
## Examples
19
13
@@ -31,22 +25,23 @@ Inline templates intended to use as API responses but stylized with HTML.
31
25
```csharp
32
26
publicclassMyController : Controller
33
27
{
34
-
publicoverrideControllerResponseInvoke()
35
-
{
36
-
returnnewMessageBox("your string");
37
-
}
28
+
publicoverrideControllerResponseInvoke()
29
+
{
30
+
returnnewMessageBox("your string");
31
+
}
38
32
}
39
33
```
40
34
41
35
#### Inline message box
42
36
43
-
Framework execution will be stopped, message box will be returned to client without rest of the website content
37
+
Framework execution will be stopped, message box will be returned to client without rest of the website content.
0 commit comments