ServiceRoute.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WCF / System.ServiceModel.Activation / System / ServiceModel / Activation / ServiceRoute.cs / 1305376 / ServiceRoute.cs

                            //------------------------------------------------------------ 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//-----------------------------------------------------------

namespace System.ServiceModel.Activation 
{
    using System; 
    using System.Globalization; 
    using System.Web.Routing;
 
    public class ServiceRoute : Route
    {
        internal const string LeftCurlyBracket = "{";
        internal const string RightCurlyBracket = "}"; 
        internal const string UnmatchedPathSegment = "{*pathInfo}";
        internal const char PathSeperator = '/'; 
 
        public ServiceRoute(string routePrefix, ServiceHostFactoryBase serviceHostFactory, Type serviceType)
            : base(CheckAndCreateRouteString(routePrefix), new ServiceRouteHandler(routePrefix, serviceHostFactory, serviceType)) 
        {
            if (TD.AspNetRouteIsEnabled())
            {
                TD.AspNetRoute(routePrefix, serviceType.AssemblyQualifiedName, serviceHostFactory.GetType().AssemblyQualifiedName); 
            }
        } 
 
        static string CheckAndCreateRouteString(string routePrefix)
        { 
            // aspnet routing integration is supported only under aspnet compat mode
            ServiceHostingEnvironment.EnsureInitialized();
            if (!ServiceHostingEnvironment.AspNetCompatibilityEnabled)
            { 
                throw FxTrace.Exception.AsError(new InvalidOperationException(SR.Hosting_RouteServiceRequiresCompatibilityMode));
            } 
            // we support emptystring as routeprfix as aspnet allows it 
            if (routePrefix == null)
            { 
                throw FxTrace.Exception.ArgumentNull("routePrefix");
            }
            else if (routePrefix.Contains(LeftCurlyBracket) || routePrefix.Contains(RightCurlyBracket))
            { 
                throw FxTrace.Exception.Argument("routePrefix", SR.Hosting_CurlyBracketFoundInRoutePrefix("{", "}"));
            } 
 
            if(routePrefix.EndsWith(PathSeperator.ToString(), StringComparison.CurrentCultureIgnoreCase)
                || routePrefix.Equals(String.Empty, StringComparison.CurrentCultureIgnoreCase)) 
            {
                routePrefix = string.Format(CultureInfo.CurrentCulture, "{0}{1}", routePrefix, UnmatchedPathSegment);
            }
            else 
            {
                routePrefix = string.Format(CultureInfo.CurrentCulture, "{0}/{1}", routePrefix, UnmatchedPathSegment); 
            } 
            return routePrefix;
        } 
    }
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK