C# 클래스 Nop.Web.Framework.Seo.GenericPathRoute

Provides properties and methods for defining a SEO friendly route, and for getting information about the route.
상속: Nop.Web.Framework.Localization.LocalizedRoute
파일 보기 프로젝트 열기: emilianionascu/NopCommerce 1 사용 예제들

공개 메소드들

메소드 설명
GenericPathRoute ( string url, IRouteHandler routeHandler ) : System.Web

Initializes a new instance of the System.Web.Routing.Route class, using the specified URL pattern and handler class.

GenericPathRoute ( string url, RouteValueDictionary defaults, IRouteHandler routeHandler ) : System.Web

Initializes a new instance of the System.Web.Routing.Route class, using the specified URL pattern, handler class and default parameter values.

GenericPathRoute ( string url, RouteValueDictionary defaults, RouteValueDictionary constraints, IRouteHandler routeHandler ) : System.Web

Initializes a new instance of the System.Web.Routing.Route class, using the specified URL pattern, handler class, default parameter values and constraints.

GenericPathRoute ( string url, RouteValueDictionary defaults, RouteValueDictionary constraints, RouteValueDictionary dataTokens, IRouteHandler routeHandler ) : System.Web

Initializes a new instance of the System.Web.Routing.Route class, using the specified URL pattern, handler class, default parameter values, constraints,and custom values.

GetRouteData ( System.Web.HttpContextBase httpContext ) : System.Web.Routing.RouteData

Returns information about the requested route.

메소드 상세

GenericPathRoute() 공개 메소드

Initializes a new instance of the System.Web.Routing.Route class, using the specified URL pattern and handler class.
public GenericPathRoute ( string url, IRouteHandler routeHandler ) : System.Web
url string The URL pattern for the route.
routeHandler IRouteHandler The object that processes requests for the route.
리턴 System.Web

GenericPathRoute() 공개 메소드

Initializes a new instance of the System.Web.Routing.Route class, using the specified URL pattern, handler class and default parameter values.
public GenericPathRoute ( string url, RouteValueDictionary defaults, IRouteHandler routeHandler ) : System.Web
url string The URL pattern for the route.
defaults RouteValueDictionary The values to use if the URL does not contain all the parameters.
routeHandler IRouteHandler The object that processes requests for the route.
리턴 System.Web

GenericPathRoute() 공개 메소드

Initializes a new instance of the System.Web.Routing.Route class, using the specified URL pattern, handler class, default parameter values and constraints.
public GenericPathRoute ( string url, RouteValueDictionary defaults, RouteValueDictionary constraints, IRouteHandler routeHandler ) : System.Web
url string The URL pattern for the route.
defaults RouteValueDictionary The values to use if the URL does not contain all the parameters.
constraints RouteValueDictionary A regular expression that specifies valid values for a URL parameter.
routeHandler IRouteHandler The object that processes requests for the route.
리턴 System.Web

GenericPathRoute() 공개 메소드

Initializes a new instance of the System.Web.Routing.Route class, using the specified URL pattern, handler class, default parameter values, constraints,and custom values.
public GenericPathRoute ( string url, RouteValueDictionary defaults, RouteValueDictionary constraints, RouteValueDictionary dataTokens, IRouteHandler routeHandler ) : System.Web
url string The URL pattern for the route.
defaults RouteValueDictionary The values to use if the URL does not contain all the parameters.
constraints RouteValueDictionary A regular expression that specifies valid values for a URL parameter.
dataTokens RouteValueDictionary Custom values that are passed to the route handler, but which are not used to determine whether the route matches a specific URL pattern. The route handler might need these values to process the request.
routeHandler IRouteHandler The object that processes requests for the route.
리턴 System.Web

GetRouteData() 공개 메소드

Returns information about the requested route.
public GetRouteData ( System.Web.HttpContextBase httpContext ) : System.Web.Routing.RouteData
httpContext System.Web.HttpContextBase An object that encapsulates information about the HTTP request.
리턴 System.Web.Routing.RouteData