Controller.Content Method
Creates a content result object.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
| Name | Description | |
|---|---|---|
![]() | Content(String) | Creates a content result object by using a string. |
![]() | Content(String, String) | Creates a content result object by using a string and the content type. |
![]() | Content(String, String, Encoding) | Creates a content result object by using a string, the content type, and content encoding. |
Controller.Content Method (String)
Creates a content result object by using a string.
Parameters
- content
-
Type:
System.String
The content to write to the response.
The result object that is prepared by this method is written to the response by the ASP.NET MVC framework when the object is executed.
Controller.Content Method (String, String)
Creates a content result object by using a string and the content type.
Parameters
- content
-
Type:
System.String
The content to write to the response.
- contentType
-
Type:
System.String
The content type (MIME type).
The result object that is prepared by this method is written to the response by the ASP.NET MVC framework when the object is executed.
Controller.Content Method (String, String, Encoding)
Creates a content result object by using a string, the content type, and content encoding.
abstract Content : content:string * contentType:string * contentEncoding:Encoding -> ContentResult override Content : content:string * contentType:string * contentEncoding:Encoding -> ContentResult
Parameters
- content
-
Type:
System.String
The content to write to the response.
- contentType
-
Type:
System.String
The content type (MIME type).
- contentEncoding
-
Type:
System.Text.Encoding
The content encoding.
The result object that is prepared by this method is written to the response by the ASP.NET MVC framework when the object is executed.
