Skip to main content

RazorHandler

Assembly: ServiceStack.Mvc.dll​
View Source​
Declaration
public class RazorHandler : ServiceStackHandlerBase, IHttpAsyncHandler, IHttpHandler, IServiceStackHandler

Properties​

Filter​

View Source​
Declaration
public Action<IRequest> Filter { get; set; }

Model​

View Source​
Declaration
protected object Model { get; set; }

PathInfo​

View Source​
Declaration
protected string PathInfo { get; set; }

Args​

View Source​
Declaration
public Dictionary<string, object> Args { get; set; }

Inherited Properties​

HandlerAttributes​

View Source​
Declaration
public RequestAttributes HandlerAttributes { get; set; }

IsReusable​

View Source​
Declaration
public override bool IsReusable { get; }

Methods​

ProcessRequestAsync(IRequest, IResponse, String)​

View Source​
Declaration
public override async Task ProcessRequestAsync(IRequest req, IResponse res, string operationName)
Returns​

Task

Parameters​
TypeName
ServiceStack.Web.IRequestreq
ServiceStack.Web.IResponseres
System.StringoperationName

Inherited Methods​

AssertAccess(IHttpRequest, IHttpResponse, Feature, String)​

View Source​
Declaration
protected bool AssertAccess(IHttpRequest httpReq, IHttpResponse httpRes, Feature feature, string operationName)
Returns​

System.Boolean

Parameters​
TypeName
ServiceStack.Web.IHttpRequesthttpReq
ServiceStack.Web.IHttpResponsehttpRes
ServiceStack.Featurefeature
System.StringoperationName

AssertOperationExists(String, Type)​

View Source​
Declaration
protected static void AssertOperationExists(string operationName, Type type)
Parameters​
TypeName
System.StringoperationName
System.Typetype

CreateContentTypeRequestAsync(IRequest, Type, String)​

View Source​
Declaration
protected static async Task<object> CreateContentTypeRequestAsync(IRequest httpReq, Type requestType, string contentType)
Returns​

System.Threading.Tasks.Task<System.Object>

Parameters​
TypeName
ServiceStack.Web.IRequesthttpReq
System.TyperequestType
System.StringcontentType

DeserializeHttpRequestAsync(Type, IRequest, String)​

View Source​
Declaration
public static Task<object> DeserializeHttpRequestAsync(Type operationType, IRequest httpReq, string contentType)
Returns​

System.Threading.Tasks.Task<System.Object>

Parameters​
TypeName
System.TypeoperationType
ServiceStack.Web.IRequesthttpReq
System.StringcontentType

ExecuteService(Object, IRequest)​

View Source​
Declaration
protected static object ExecuteService(object request, IRequest httpReq)
Returns​

System.Object

Parameters​
TypeName
System.Objectrequest
ServiceStack.Web.IRequesthttpReq

GetCustomRequestFromBinder(IRequest, Type)​

View Source​
Declaration
protected static object GetCustomRequestFromBinder(IRequest httpReq, Type requestType)
Returns​

System.Object

Parameters​
TypeName
ServiceStack.Web.IRequesthttpReq
System.TyperequestType

GetOperationType(String)​

View Source​
Declaration
public static Type GetOperationType(string operationName)
Returns​

System.Type

Parameters​
TypeName
System.StringoperationName

GetResponseAsync(IRequest, Object)​

View Source​
Declaration
public virtual Task<object> GetResponseAsync(IRequest httpReq, object request)
Returns​

System.Threading.Tasks.Task<System.Object>

Parameters​
TypeName
ServiceStack.Web.IRequesthttpReq
System.Objectrequest

HandleResponse(IRequest, IResponse, Object)​

View Source​
Declaration
public async Task HandleResponse(IRequest httpReq, IResponse httpRes, object response)
Returns​

System.Threading.Tasks.Task

Parameters​
TypeName
ServiceStack.Web.IRequesthttpReq
ServiceStack.Web.IResponsehttpRes
System.Objectresponse

UpdateResponseContentType(IRequest, Object)​

View Source​
Declaration
public void UpdateResponseContentType(IRequest httpReq, object response)
Parameters​
TypeName
ServiceStack.Web.IRequesthttpReq
System.Objectresponse

WriteDebugResponse(IResponse, Object)​

View Source​
Declaration
public Task WriteDebugResponse(IResponse httpRes, object response)
Returns​

System.Threading.Tasks.Task

Parameters​
TypeName
ServiceStack.Web.IResponsehttpRes
System.Objectresponse

Implements​