[System.Web] Reference source import
authorkasthack <kasthack@epicm.org>
Wed, 17 Feb 2016 03:15:30 +0000 (06:15 +0300)
committerkasthack <kasthack@epicm.org>
Wed, 17 Feb 2016 03:15:30 +0000 (06:15 +0300)
mcs/class/System.Web/System.Web.Configuration.Internal/IInternalConfigWebHost.cs [deleted file]
mcs/class/System.Web/System.Web.Routing/RouteData.cs [deleted file]
mcs/class/System.Web/System.Web.Routing/StopRoutingHandler.cs [deleted file]
mcs/class/System.Web/System.Web.dll.sources

diff --git a/mcs/class/System.Web/System.Web.Configuration.Internal/IInternalConfigWebHost.cs b/mcs/class/System.Web/System.Web.Configuration.Internal/IInternalConfigWebHost.cs
deleted file mode 100644 (file)
index f6d6bc1..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-//
-// System.Web.Configuration.Internal.IInternalConfigWebHost
-//
-// Authors:
-//     Chris Toshok (toshok@ximian.com)
-//
-// (C) 2006 Novell, Inc (http://www.novell.com)
-//
-
-//
-// Permission is hereby granted, free of charge, to any person obtaining
-// a copy of this software and associated documentation files (the
-// "Software"), to deal in the Software without restriction, including
-// without limitation the rights to use, copy, modify, merge, publish,
-// distribute, sublicense, and/or sell copies of the Software, and to
-// permit persons to whom the Software is furnished to do so, subject to
-// the following conditions:
-// 
-// The above copyright notice and this permission notice shall be
-// included in all copies or substantial portions of the Software.
-// 
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-//
-
-using System;
-using System.Runtime.InteropServices;
-using System.Configuration;
-using System.Xml;
-
-
-namespace System.Web.Configuration.Internal {
-
-       [ComVisible (false)]
-       public interface IInternalConfigWebHost {
-
-               string GetConfigPathFromSiteIDAndVPath (string siteID, string vpath);
-               void GetSiteIDAndVPathFromConfigPath (string configPath, out string siteID, out string vpath);
-
-       }
-}
-
diff --git a/mcs/class/System.Web/System.Web.Routing/RouteData.cs b/mcs/class/System.Web/System.Web.Routing/RouteData.cs
deleted file mode 100644 (file)
index 4ae2289..0000000
+++ /dev/null
@@ -1,76 +0,0 @@
-//
-// RouteData.cs
-//
-// Author:
-//     Atsushi Enomoto <atsushi@ximian.com>
-//
-// Copyright (C) 2008 Novell Inc. http://novell.com
-//
-
-//
-// Permission is hereby granted, free of charge, to any person obtaining
-// a copy of this software and associated documentation files (the
-// "Software"), to deal in the Software without restriction, including
-// without limitation the rights to use, copy, modify, merge, publish,
-// distribute, sublicense, and/or sell copies of the Software, and to
-// permit persons to whom the Software is furnished to do so, subject to
-// the following conditions:
-// 
-// The above copyright notice and this permission notice shall be
-// included in all copies or substantial portions of the Software.
-// 
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-//
-using System;
-using System.Runtime.CompilerServices;
-using System.Security.Permissions;
-using System.Web;
-
-namespace System.Web.Routing
-{
-       [TypeForwardedFrom ("System.Web.Routing, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")]
-       [AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
-       [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
-       public class RouteData
-       {
-               public RouteData ()
-                       : this (null, null)
-               {
-               }
-
-               public RouteData (RouteBase route, IRouteHandler routeHandler)
-               {
-                       // arguments can be null.
-                       Route = route;
-                       RouteHandler = routeHandler;
-
-                       DataTokens = new RouteValueDictionary ();
-                       Values = new RouteValueDictionary ();
-               }
-
-               public RouteValueDictionary DataTokens { get; private set; }
-
-               public RouteBase Route { get; set; }
-
-               public IRouteHandler RouteHandler { get; set; }
-
-               public RouteValueDictionary Values { get; private set; }
-
-               public string GetRequiredString (string valueName)
-               {
-                       object o;
-                       if (!Values.TryGetValue (valueName, out o))
-                               throw new InvalidOperationException (String.Format ("value name {0} does not match any of the values.", valueName));
-                       string s = o as string;
-                       if (String.IsNullOrEmpty (s))
-                               throw new InvalidOperationException (String.Format ("The value for the name {0} must be a non-empty string", valueName));
-                       return s;
-               }
-       }
-}
diff --git a/mcs/class/System.Web/System.Web.Routing/StopRoutingHandler.cs b/mcs/class/System.Web/System.Web.Routing/StopRoutingHandler.cs
deleted file mode 100644 (file)
index 8e67ad1..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-//
-// StopRoutingHandler.cs
-//
-// Author:
-//     Atsushi Enomoto <atsushi@ximian.com>
-//
-// Copyright (C) 2008 Novell Inc. http://novell.com
-//
-
-//
-// Permission is hereby granted, free of charge, to any person obtaining
-// a copy of this software and associated documentation files (the
-// "Software"), to deal in the Software without restriction, including
-// without limitation the rights to use, copy, modify, merge, publish,
-// distribute, sublicense, and/or sell copies of the Software, and to
-// permit persons to whom the Software is furnished to do so, subject to
-// the following conditions:
-// 
-// The above copyright notice and this permission notice shall be
-// included in all copies or substantial portions of the Software.
-// 
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-//
-using System;
-using System.Runtime.CompilerServices;
-using System.Security.Permissions;
-using System.Web;
-
-namespace System.Web.Routing
-{
-       [TypeForwardedFrom ("System.Web.Routing, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")]
-       [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
-       [AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
-       public class StopRoutingHandler : IRouteHandler
-       {
-               protected virtual IHttpHandler GetHttpHandler (RequestContext requestContext)
-               {
-                       throw new NotSupportedException ();
-               }
-
-               IHttpHandler IRouteHandler.GetHttpHandler (RequestContext requestContext)
-               {
-                       return GetHttpHandler (requestContext);
-               }
-       }
-}
index d1b61937338bf25188ec117bd8b83f1680cde32c..211dd4bdad0e37c17e052ea8a4a5e58e54b03778 100644 (file)
@@ -273,7 +273,7 @@ System.Web.Configuration_2.0/WebPartsPersonalizationAuthorization.cs
 System.Web.Configuration_2.0/WebPartsSection.cs
 ../../../external/referencesource/System.Web/Configuration/XhtmlConformanceMode.cs
 System.Web.Configuration_2.0/XhtmlConformanceSection.cs
-System.Web.Configuration.Internal/IInternalConfigWebHost.cs
+../../../external/referencesource/System.Web/Configuration/Internal/IInternalConfigWebHost.cs
 System.Web/DefaultHttpHandler.cs
 System.Web/EndEventHandler.cs
 System.Web/DefaultExceptionPageTemplate.cs
@@ -296,9 +296,18 @@ System.Web.Hosting/DefaultVirtualPathProvider.cs
 System.Web.Hosting/HostingEnvironment.cs
 System.Web.Hosting/IAppDomainFactory.cs
 ../../../external/referencesource/System.Web/Hosting/IApplicationHost.cs
+../../../external/referencesource/System.Web/Hosting/ICustomLoader.cs
+../../../external/referencesource/System.Web/Hosting/IQueueHost.cs
+../../../external/referencesource/System.Web/Hosting/ICustomRuntime.cs
+../../../external/referencesource/System.Web/Hosting/ICustomRuntimeManager.cs
+../../../external/referencesource/System.Web/Hosting/IProcessHostPreloadClient.cs
+../../../external/referencesource/System.Web/Hosting/IProcessPingCallback.cs
+../../../external/referencesource/System.Web/Hosting/IProcessSuspendListener.cs
 System.Web.Hosting/IAppManagerAppDomainFactory.cs
 System.Web.Hosting/IISAPIRuntime.cs
 ../../../external/referencesource/System.Web/Hosting/IRegisteredObject.cs
+../../../external/referencesource/System.Web/Hosting/IStopListeningRegisteredObject.cs
+../../../external/referencesource/System.Web/Hosting/ISuspendibleRegisteredObject.cs
 System.Web.Hosting/ISAPIRuntime.cs
 System.Web.Hosting/SimpleWorkerRequest.cs
 System.Web.Hosting/VirtualDirectory.cs
@@ -1277,12 +1286,12 @@ System.Web.Routing/PatternTokenType.cs
 System.Web.Routing/Route.cs
 ../../../external/referencesource/System.Web/Routing/RouteBase.cs
 System.Web.Routing/RouteCollection.cs
-System.Web.Routing/RouteData.cs
+../../../external/referencesource/System.Web/Routing/RouteData.cs
 ../../../external/referencesource/System.Web/Routing/RouteDirection.cs
 ../../../external/referencesource/System.Web/Routing/RouteTable.cs
 ../../../external/referencesource/System.Web/Routing/RouteValueDictionary.cs
 System.Web.Routing/RouteValueDictionaryExtensions.cs
-System.Web.Routing/StopRoutingHandler.cs
+../../../external/referencesource/System.Web/Routing/StopRoutingHandler.cs
 System.Web.Routing/UrlRoutingHandler.cs
 System.Web.Routing/UrlRoutingModule.cs
 ../../../external/referencesource/System.Web/Routing/VirtualPathData.cs
@@ -1380,3 +1389,8 @@ ReferenceSources/SR.cs
 ../../../external/referencesource/System.Web/WebSysDisplayNameAttribute.cs
 ../../../external/referencesource/System.Web/WebSocketTransitionState.cs
 ../../../external/referencesource/System.Web/WebSysDefaultValueAttribute.cs
+../../../external/referencesource/System.Web/Management/IInternalWebEventProvider.cs
+../../../external/referencesource/System.Web/Hosting/AppDomainProtocolHandler.cs
+../../../external/referencesource/System.Web/Hosting/IProcessHostSupportFunctions.cs
+../../../external/referencesource/System.Web/Hosting/HTTP_COOKED_URL.cs
+../../../external/referencesource/System.Web/Hosting/HostingEnvironmentException.cs