Skip to main content

PredefinedRoutesFeature

Assembly: ServiceStack.dll
View Source
Declaration
public class PredefinedRoutesFeature : IPlugin, IHasStringId, IHasId<string>

Properties

Id

View Source
Declaration
public string Id { get; set; }

HandlerMappings

View Source
Declaration
public Dictionary<string, Func<IHttpHandler>> HandlerMappings { get; }

JsonApiRoute

View Source
Declaration
public string JsonApiRoute { get; set; }

DisableApiRoute

View Source
Declaration
public bool DisableApiRoute { get; set; }

Methods

Register(IAppHost)

View Source
Declaration
public void Register(IAppHost appHost)
Parameters
TypeName
ServiceStack.IAppHostappHost

ProcessRequest(String, String, String)

View Source
Declaration
public IHttpHandler ProcessRequest(string httpMethod, string pathInfo, string filePath)
Returns

System.Web.IHttpHandler

Parameters
TypeName
System.StringhttpMethod
System.StringpathInfo
System.StringfilePath

Implements