Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / Compilation / WebReferencesBuildProvider.cs / 5 / 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
- CursorConverter.cs
- HttpListenerRequestTraceRecord.cs
- ParallelTimeline.cs
- Helpers.cs
- mactripleDES.cs
- EndEvent.cs
- GenericPrincipal.cs
- Hash.cs
- ConfigXmlReader.cs
- TextMessageEncoder.cs
- AnnotationAdorner.cs
- DesignerTransactionCloseEvent.cs
- PermissionSetEnumerator.cs
- HtmlSelect.cs
- DataSetFieldSchema.cs
- LayoutInformation.cs
- TickBar.cs
- ProxyGenerator.cs
- Marshal.cs
- Stylesheet.cs
- AddInIpcChannel.cs
- WebBrowserDocumentCompletedEventHandler.cs
- TaiwanCalendar.cs
- OracleConnection.cs
- MediaContext.cs
- NoneExcludedImageIndexConverter.cs
- FrameworkContentElementAutomationPeer.cs
- MenuItemCollection.cs
- GridViewRowEventArgs.cs
- ControlBuilder.cs
- AssociationTypeEmitter.cs
- AttachedPropertyDescriptor.cs
- MasterPageBuildProvider.cs
- CurrencyManager.cs
- XamlTemplateSerializer.cs
- OracleInternalConnection.cs
- TextRangeProviderWrapper.cs
- TreeViewImageGenerator.cs
- IERequestCache.cs
- DataReaderContainer.cs
- WebEvents.cs
- PropertyDescriptorComparer.cs
- ResourceDefaultValueAttribute.cs
- ProcessModelInfo.cs
- DoubleAnimationUsingKeyFrames.cs
- DataColumnCollection.cs
- HashCryptoHandle.cs
- KeyTimeConverter.cs
- X509CertificateInitiatorServiceCredential.cs
- MessageBuilder.cs
- HtmlTernaryTree.cs
- EventBuilder.cs
- Vector3DConverter.cs
- DataGridViewRow.cs
- LinkDesigner.cs
- XhtmlTextWriter.cs
- TemplatePropertyEntry.cs
- Block.cs
- DataBoundControlParameterTarget.cs
- SymbolEqualComparer.cs
- Thread.cs
- DesignerSerializationVisibilityAttribute.cs
- iisPickupDirectory.cs
- GcHandle.cs
- ResourceReferenceExpressionConverter.cs
- ExpressionBuilderCollection.cs
- COM2Properties.cs
- X509ChainElement.cs
- CriticalFinalizerObject.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- StateChangeEvent.cs
- ExtendedPropertyDescriptor.cs
- RsaSecurityKey.cs
- VectorCollectionConverter.cs
- DataGridItemEventArgs.cs
- PopupEventArgs.cs
- DesignerVerbToolStripMenuItem.cs
- ScaleTransform.cs
- ActiveXSite.cs
- WindowShowOrOpenTracker.cs
- ControlType.cs
- ReachSerializableProperties.cs
- RegexRunnerFactory.cs
- NavigatorInput.cs
- CrossAppDomainChannel.cs
- CodeTypeParameterCollection.cs
- HwndHost.cs
- SecurityProtocol.cs
- MetadataWorkspace.cs
- ListDictionaryInternal.cs
- CompilerError.cs
- MultipleViewPattern.cs
- FamilyCollection.cs
- HashJoinQueryOperatorEnumerator.cs
- LinqDataSource.cs
- _RequestCacheProtocol.cs
- ConditionCollection.cs
- BulletedList.cs
- ConfigXmlText.cs
- CustomErrorsSectionWrapper.cs