C# Class MiniMVC.Response

Afficher le fichier Open project: mausch/MiniMVC

Méthodes publiques

Méthode Description
Empty ( this context ) : void
Html ( this response, System.Xml.Linq.XDocument doc ) : void
Html ( this response, System.Xml.Linq.XElement elem ) : void
Html ( this response, string html ) : void
NotFound ( this response ) : void
Raw ( this response, object obj, string contentType ) : void
XDocument ( this response, System.Xml.Linq.XDocument doc, string contentType ) : void
XElement ( this response, System.Xml.Linq.XElement e, string contentType ) : void

Method Details

Empty() public static méthode

public static Empty ( this context ) : void
context this
Résultat void

Html() public static méthode

public static Html ( this response, System.Xml.Linq.XDocument doc ) : void
response this
doc System.Xml.Linq.XDocument
Résultat void

Html() public static méthode

public static Html ( this response, System.Xml.Linq.XElement elem ) : void
response this
elem System.Xml.Linq.XElement
Résultat void

Html() public static méthode

public static Html ( this response, string html ) : void
response this
html string
Résultat void

NotFound() public static méthode

public static NotFound ( this response ) : void
response this
Résultat void

Raw() public static méthode

public static Raw ( this response, object obj, string contentType ) : void
response this
obj object
contentType string
Résultat void

XDocument() public static méthode

public static XDocument ( this response, System.Xml.Linq.XDocument doc, string contentType ) : void
response this
doc System.Xml.Linq.XDocument
contentType string
Résultat void

XElement() public static méthode

public static XElement ( this response, System.Xml.Linq.XElement e, string contentType ) : void
response this
e System.Xml.Linq.XElement
contentType string
Résultat void