SimpleREST.NET 0.1
A simple and minimal api framework for .net base on Express.js
Loading...
Searching...
No Matches
ResourceNotFoundView.cs
Go to the documentation of this file.
2
5{
6 public byte[] GetBytes()
7 {
8 throw new NotImplementedException();
9 }
10
11 public string GetView()
12 {
13 return "<h1>404: Resource or Route not found</h1>";
14 }
15}