ServiceRoute Class

Definition

Enables the creation of service routes over HTTP for WCF Services with support for extension-less base addresses.

public ref class ServiceRoute : System::Web::Routing::Route
public class ServiceRoute : System.Web.Routing.Route
type ServiceRoute = class
    inherit Route
Public Class ServiceRoute
Inherits Route
Inheritance
ServiceRoute

Remarks

ServiceRoute is derived from Route. When the ServiceRoute constructor is called, WCF will add the corresponding route prefix (url pattern) and a (hidden) route handler to the ASP.NET RouteCollection, and cache the corresponding route prefix, service host factory and service type info into an internal hash table for future service activation.Note: if developers directly manipulate the route collection on a ServiceRoute which has been added to the collection, the change may not be granted by WCF. For more information about changing elements in a route collection, see RouteCollection. It is recommended that developers define all ServiceRoute in the global.asax file and do not remove a ServiceRoute from the RouteCollection dynamically.

Constructors

ServiceRoute(String, ServiceHostFactoryBase, Type)

Initializes a new instance of the ServiceRoute class with the specified route prefix, service host factory, and service type.

Properties

Constraints

Gets or sets a dictionary of expressions that specify valid values for a URL parameter.

(Inherited from Route)
DataTokens

Gets or sets custom values that are passed to the route handler, but which are not used to determine whether the route matches a URL pattern.

(Inherited from Route)
Defaults

Gets or sets the values to use if the URL does not contain all the parameters.

(Inherited from Route)
RouteExistingFiles

Gets or sets a value that indicates whether ASP.NET routing should handle URLs that match an existing file.

(Inherited from RouteBase)
RouteHandler

Gets or sets the object that processes requests for the route.

(Inherited from Route)
Url

Gets or sets the URL pattern for the route.

(Inherited from Route)

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetRouteData(HttpContextBase)

Returns information about the requested route.

(Inherited from Route)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
GetVirtualPath(RequestContext, RouteValueDictionary)

Returns information about the URL that is associated with the route.

(Inherited from Route)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ProcessConstraint(HttpContextBase, Object, String, RouteValueDictionary, RouteDirection)

Determines whether a parameter value matches the constraint for that parameter.

(Inherited from Route)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to