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.
1
using
System;
2
using
System.Net;
3
4
namespace
SimpleRest.Api
;
5
6
public
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
}
SimpleRest.Api.SimpleRestBody
The body of a SimpleRest.Api.SimpleRestRequest. This class encapsulates the content of an HTTP reques...
Definition
SimpleRestRequest.cs:129
SimpleRest.Api.ISimpleRestHttpObject
Definition
ISimpleRestHttpObject.cs:7
SimpleRest.Api.ISimpleRestHttpObject.UserAgent
string? UserAgent
Definition
ISimpleRestHttpObject.cs:12
SimpleRest.Api.ISimpleRestHttpObject.ContentLength
long ContentLength
Definition
ISimpleRestHttpObject.cs:11
SimpleRest.Api.ISimpleRestHttpObject.Headers
WebHeaderCollection Headers
Definition
ISimpleRestHttpObject.cs:9
SimpleRest.Api.ISimpleRestHttpObject.Body
SimpleRestBody Body
Definition
ISimpleRestHttpObject.cs:8
SimpleRest.Api.ISimpleRestHttpObject.ContentType
string? ContentType
Definition
ISimpleRestHttpObject.cs:10
SimpleRest.Api
Definition
Enums.cs:1
Src
Interfaces
ISimpleRestHttpObject.cs
Generated by
1.12.0