Show / Hide Table of Contents

Class HtmlBuilderResult

An ActionResult which renders an HtmlBuilder

Inheritance
Object
ActionResult
HtmlBuilderResult
Inherited Members
Object.ToString()
Object.Equals(Object)
Object.Equals(Object, Object)
Object.ReferenceEquals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Namespace: Eighty.AspNet.Mvc.ActionResults
Assembly: Eighty.AspNet.Mvc.dll
Syntax
public class HtmlBuilderResult : ActionResult

Constructors

| Improve this Doc View Source

HtmlBuilderResult(HtmlBuilder, Nullable<HttpStatusCode>)

Creates an HtmlBuilderResult

Declaration
public HtmlBuilderResult(HtmlBuilder htmlBuilder, HttpStatusCode? statusCode = default(HttpStatusCode? ))
Parameters
Type Name Description
HtmlBuilder htmlBuilder

The HtmlBuilder

Nullable<HttpStatusCode> statusCode

A custom status code

Properties

| Improve this Doc View Source

HtmlBuilder

The HtmlBuilder

Declaration
public HtmlBuilder HtmlBuilder { get; }
Property Value
Type Description
HtmlBuilder

The HtmlBuilder

| Improve this Doc View Source

StatusCode

A custom status code

Declaration
public HttpStatusCode? StatusCode { get; }
Property Value
Type Description
Nullable<HttpStatusCode>

A custom status code

Methods

| Improve this Doc View Source

ExecuteResult(ControllerContext)

Declaration
public override void ExecuteResult(ControllerContext context)
Parameters
Type Name Description
ControllerContext context
Overrides
ActionResult.ExecuteResult(ControllerContext)
  • Improve this Doc
  • View Source
Back to top Generated by DocFX