C# 클래스 NuGetGallery.RouteCollectionExtensions

파일 보기 프로젝트 열기: chocolatey/chocolatey.org

공개 메소드들

메소드 설명
MapRouteSeo ( this routes, string name, string url ) : Route

Maps the specified URL route using a lowercase URL. Does not change casing in the querystring, if any.

MapRouteSeo ( this routes, string name, string url, object defaults ) : Route

Maps the specified URL route using a lowercase URL and sets default route values. Does not change casing in the querystring, if any.

MapRouteSeo ( this routes, string name, string url, object defaults, object constraints ) : Route

Maps the specified URL route using a lowercase URL and sets default route values and constraints. Does not change casing in the querystring, if any.

MapRouteSeo ( this routes, string name, string url, object defaults, object constraints, string namespaces ) : Route

Maps the specified URL route and sets default route values, constraints, and namespaces. Does not change casing in the querystring, if any.

MapRouteSeo ( this routes, string name, string url, object defaults, string namespaces ) : Route

Maps the specified URL route using a lowercase URL and sets default route values and namespaces. Does not change casing in the querystring, if any.

MapRouteSeo ( this routes, string name, string url, string namespaces ) : Route

Maps the specified URL route using a lowercase URL and sets the namespaces. Does not change casing in the querystring, if any.

메소드 상세

MapRouteSeo() 공개 정적인 메소드

Maps the specified URL route using a lowercase URL. Does not change casing in the querystring, if any.
public static MapRouteSeo ( this routes, string name, string url ) : Route
routes this A collection of routes for the application.
name string The name of the route to map.
url string The URL pattern for the route.
리턴 System.Web.Routing.Route

MapRouteSeo() 공개 정적인 메소드

Maps the specified URL route using a lowercase URL and sets default route values. Does not change casing in the querystring, if any.
public static MapRouteSeo ( this routes, string name, string url, object defaults ) : Route
routes this A collection of routes for the application.
name string The name of the route to map.
url string The URL pattern for the route.
defaults object An object that contains default route values.
리턴 System.Web.Routing.Route

MapRouteSeo() 공개 정적인 메소드

Maps the specified URL route using a lowercase URL and sets default route values and constraints. Does not change casing in the querystring, if any.
public static MapRouteSeo ( this routes, string name, string url, object defaults, object constraints ) : Route
routes this A collection of routes for the application.
name string The name of the route to map.
url string The URL pattern for the route.
defaults object An object that contains default route values.
constraints object A set of expressions that specify valid values for a URL parameter.
리턴 System.Web.Routing.Route

MapRouteSeo() 공개 정적인 메소드

Maps the specified URL route and sets default route values, constraints, and namespaces. Does not change casing in the querystring, if any.
public static MapRouteSeo ( this routes, string name, string url, object defaults, object constraints, string namespaces ) : Route
routes this A collection of routes for the application.
name string The name of the route to map.
url string The URL pattern for the route.
defaults object An object that contains default route values.
constraints object A set of expressions that specify valid values for a URL parameter.
namespaces string A set of namespaces for the application.
리턴 System.Web.Routing.Route

MapRouteSeo() 공개 정적인 메소드

Maps the specified URL route using a lowercase URL and sets default route values and namespaces. Does not change casing in the querystring, if any.
public static MapRouteSeo ( this routes, string name, string url, object defaults, string namespaces ) : Route
routes this A collection of routes for the application.
name string The name of the route to map.
url string The URL pattern for the route.
defaults object An object that contains default route values.
namespaces string A set of namespaces for the application.
리턴 System.Web.Routing.Route

MapRouteSeo() 공개 정적인 메소드

Maps the specified URL route using a lowercase URL and sets the namespaces. Does not change casing in the querystring, if any.
public static MapRouteSeo ( this routes, string name, string url, string namespaces ) : Route
routes this A collection of routes for the application.
name string The name of the route to map.
url string The URL pattern for the route.
namespaces string A set of namespaces for the application.
리턴 System.Web.Routing.Route