Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Compilation / WebReferencesBuildProvider.cs / 1305376 / WebReferencesBuildProvider.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Compilation { using System; using System.Globalization; using System.CodeDom; using System.CodeDom.Compiler; using System.Collections.Specialized; using System.Net; using System.Xml.Serialization; #if !FEATURE_PAL using System.Web.Services.Description; using System.Web.Services.Discovery; #endif // !FEATURE_PAL using System.Web.Hosting; using System.Web.UI; using System.Web.Util; using Util=System.Web.UI.Util; internal class WebReferencesBuildProvider: BuildProvider { private VirtualDirectory _vdir; private const string IndigoWebRefProviderTypeName = "System.Web.Compilation.WCFBuildProvider"; private static Type s_indigoWebRefProviderType; private static bool s_triedToGetWebRefType; internal WebReferencesBuildProvider(VirtualDirectory vdir) { _vdir = vdir; } public override void GenerateCode(AssemblyBuilder assemblyBuilder) { // Only attempt to get the Indigo provider once if (!s_triedToGetWebRefType) { s_indigoWebRefProviderType = BuildManager.GetType(IndigoWebRefProviderTypeName, false /*throwOnError*/); s_triedToGetWebRefType = true; } // If we have an Indigo provider, instantiate it and forward the GenerateCode call to it if (s_indigoWebRefProviderType != null) { BuildProvider buildProvider = (BuildProvider)HttpRuntime.CreateNonPublicInstance(s_indigoWebRefProviderType); buildProvider.SetVirtualPath(VirtualPathObject); buildProvider.GenerateCode(assemblyBuilder); } // e.g "/MyApp/Application_WebReferences" VirtualPath rootWebRefDirVirtualPath = HttpRuntime.WebRefDirectoryVirtualPath; // e.g "/MyApp/Application_WebReferences/Foo/Bar" string currentWebRefDirVirtualPath = _vdir.VirtualPath; Debug.Assert(StringUtil.StringStartsWithIgnoreCase( currentWebRefDirVirtualPath, rootWebRefDirVirtualPath.VirtualPathString)); string ns; if (rootWebRefDirVirtualPath.VirtualPathString.Length == currentWebRefDirVirtualPath.Length) { // If it's the root WebReferences dir, use the empty namespace ns = String.Empty; } else { // e.g. "Foo/Bar" Debug.Assert(rootWebRefDirVirtualPath.HasTrailingSlash); currentWebRefDirVirtualPath = UrlPath.RemoveSlashFromPathIfNeeded(currentWebRefDirVirtualPath); currentWebRefDirVirtualPath = currentWebRefDirVirtualPath.Substring( rootWebRefDirVirtualPath.VirtualPathString.Length); // Split it into chunks separated by '/' string[] chunks = currentWebRefDirVirtualPath.Split('/'); // Turn all the relevant chunks into valid namespace chunks for (int i=0; i// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Compilation { using System; using System.Globalization; using System.CodeDom; using System.CodeDom.Compiler; using System.Collections.Specialized; using System.Net; using System.Xml.Serialization; #if !FEATURE_PAL using System.Web.Services.Description; using System.Web.Services.Discovery; #endif // !FEATURE_PAL using System.Web.Hosting; using System.Web.UI; using System.Web.Util; using Util=System.Web.UI.Util; internal class WebReferencesBuildProvider: BuildProvider { private VirtualDirectory _vdir; private const string IndigoWebRefProviderTypeName = "System.Web.Compilation.WCFBuildProvider"; private static Type s_indigoWebRefProviderType; private static bool s_triedToGetWebRefType; internal WebReferencesBuildProvider(VirtualDirectory vdir) { _vdir = vdir; } public override void GenerateCode(AssemblyBuilder assemblyBuilder) { // Only attempt to get the Indigo provider once if (!s_triedToGetWebRefType) { s_indigoWebRefProviderType = BuildManager.GetType(IndigoWebRefProviderTypeName, false /*throwOnError*/); s_triedToGetWebRefType = true; } // If we have an Indigo provider, instantiate it and forward the GenerateCode call to it if (s_indigoWebRefProviderType != null) { BuildProvider buildProvider = (BuildProvider)HttpRuntime.CreateNonPublicInstance(s_indigoWebRefProviderType); buildProvider.SetVirtualPath(VirtualPathObject); buildProvider.GenerateCode(assemblyBuilder); } // e.g "/MyApp/Application_WebReferences" VirtualPath rootWebRefDirVirtualPath = HttpRuntime.WebRefDirectoryVirtualPath; // e.g "/MyApp/Application_WebReferences/Foo/Bar" string currentWebRefDirVirtualPath = _vdir.VirtualPath; Debug.Assert(StringUtil.StringStartsWithIgnoreCase( currentWebRefDirVirtualPath, rootWebRefDirVirtualPath.VirtualPathString)); string ns; if (rootWebRefDirVirtualPath.VirtualPathString.Length == currentWebRefDirVirtualPath.Length) { // If it's the root WebReferences dir, use the empty namespace ns = String.Empty; } else { // e.g. "Foo/Bar" Debug.Assert(rootWebRefDirVirtualPath.HasTrailingSlash); currentWebRefDirVirtualPath = UrlPath.RemoveSlashFromPathIfNeeded(currentWebRefDirVirtualPath); currentWebRefDirVirtualPath = currentWebRefDirVirtualPath.Substring( rootWebRefDirVirtualPath.VirtualPathString.Length); // Split it into chunks separated by '/' string[] chunks = currentWebRefDirVirtualPath.Split('/'); // Turn all the relevant chunks into valid namespace chunks for (int i=0; i
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- EncodingDataItem.cs
- HttpTransportManager.cs
- ConfigurationManagerInternal.cs
- CompensationParticipant.cs
- EntryIndex.cs
- KnownAssemblyEntry.cs
- MenuCommandsChangedEventArgs.cs
- TextDocumentView.cs
- ControlCachePolicy.cs
- WpfSharedXamlSchemaContext.cs
- DEREncoding.cs
- WorkflowOperationBehavior.cs
- TextCompositionEventArgs.cs
- KeySplineConverter.cs
- AlgoModule.cs
- MissingMemberException.cs
- SpeechSynthesizer.cs
- FrameworkContentElementAutomationPeer.cs
- DateTimeFormatInfo.cs
- SqlUtil.cs
- MethodExpression.cs
- AutomationElementCollection.cs
- JsonFaultDetail.cs
- NativeMethods.cs
- TableLayoutSettings.cs
- SkewTransform.cs
- MsiStyleLogWriter.cs
- RoutedEventHandlerInfo.cs
- PackageDigitalSignatureManager.cs
- MenuItemBindingCollection.cs
- ConcurrentQueue.cs
- MarshalByRefObject.cs
- PolyLineSegment.cs
- DataViewSettingCollection.cs
- XmlValidatingReader.cs
- PolyBezierSegment.cs
- Tile.cs
- FixedSOMPageElement.cs
- DataObjectPastingEventArgs.cs
- NameTable.cs
- IdentityReference.cs
- EntityUtil.cs
- RowTypePropertyElement.cs
- AsymmetricKeyExchangeFormatter.cs
- MatrixAnimationUsingKeyFrames.cs
- Stroke.cs
- XomlCompiler.cs
- AppearanceEditorPart.cs
- SecurityToken.cs
- ElementProxy.cs
- ModelService.cs
- PersonalizationAdministration.cs
- TextParagraphCache.cs
- CommonEndpointBehaviorElement.cs
- UriWriter.cs
- CodeArgumentReferenceExpression.cs
- XPathAxisIterator.cs
- TypefaceMetricsCache.cs
- SmiXetterAccessMap.cs
- Point3DValueSerializer.cs
- GACMembershipCondition.cs
- safesecurityhelperavalon.cs
- HttpListenerContext.cs
- HyperLinkField.cs
- HistoryEventArgs.cs
- ConfigurationStrings.cs
- WebPermission.cs
- CodeArrayIndexerExpression.cs
- MatrixValueSerializer.cs
- ConnectionPoolManager.cs
- DesignerSelectionListAdapter.cs
- ToolStripRenderEventArgs.cs
- HandleCollector.cs
- XmlParser.cs
- GlobalizationSection.cs
- ApplicationFileParser.cs
- _NetworkingPerfCounters.cs
- OptimisticConcurrencyException.cs
- CustomAssemblyResolver.cs
- ProcessModule.cs
- AnnotationComponentChooser.cs
- WorkflowCompensationBehavior.cs
- RuntimeCompatibilityAttribute.cs
- ViewBase.cs
- SerialStream.cs
- AssemblyFilter.cs
- NetMsmqSecurity.cs
- LinqToSqlWrapper.cs
- SortedSetDebugView.cs
- SerializationFieldInfo.cs
- AnchoredBlock.cs
- SystemResourceKey.cs
- ControlBindingsConverter.cs
- Rotation3D.cs
- TemplateControl.cs
- SimpleHandlerBuildProvider.cs
- NativeMethods.cs
- EntitySqlQueryBuilder.cs
- StrongNameIdentityPermission.cs
- HashHelper.cs