SimpleREST.NET 0.1
A simple and minimal api framework for .net base on Express.js
Loading...
Searching...
No Matches
ISimpleRestHttpObject.cs
Go to the documentation of this file.
1using System;
2using System.Net;
3
4namespace SimpleRest.Api;
5
6public interface ISimpleRestHttpObject
7{
8 public SimpleRestBody Body { get; }
9 public WebHeaderCollection Headers { get; }
10 public string? ContentType { get; }
11 public long ContentLength { get; }
12 public string? UserAgent { get; }
13}
The body of a SimpleRest.Api.SimpleRestRequest. This class encapsulates the content of an HTTP reques...