Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Compilation / WebReferencesBuildProvider.cs / 2 / 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
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MenuItem.cs
- XamlWriter.cs
- TextServicesContext.cs
- ControlTemplate.cs
- SymLanguageVendor.cs
- RegisteredScript.cs
- DesignSurfaceEvent.cs
- ProcessModelSection.cs
- StructuredProperty.cs
- LinqDataSourceStatusEventArgs.cs
- HtmlFormWrapper.cs
- FileLoadException.cs
- DataGridViewRowStateChangedEventArgs.cs
- httpapplicationstate.cs
- RegexTree.cs
- MultiSelector.cs
- SamlAuthorizationDecisionStatement.cs
- _emptywebproxy.cs
- FlowLayout.cs
- ParallelTimeline.cs
- XmlILOptimizerVisitor.cs
- EventTask.cs
- ExtensionQuery.cs
- SmiEventSink_DeferedProcessing.cs
- HttpPostProtocolImporter.cs
- InteropExecutor.cs
- ByteStreamGeometryContext.cs
- DetailsView.cs
- XmlDataSource.cs
- Type.cs
- XmlSchemaSet.cs
- VideoDrawing.cs
- DrawingGroupDrawingContext.cs
- BuildProviderCollection.cs
- XmlSecureResolver.cs
- MaskedTextBoxTextEditor.cs
- AsyncPostBackErrorEventArgs.cs
- _HeaderInfoTable.cs
- DefaultEventAttribute.cs
- TypeResolver.cs
- NativeMethods.cs
- SystemResourceHost.cs
- COM2PropertyDescriptor.cs
- XPathException.cs
- WebConfigurationFileMap.cs
- CalendarModeChangedEventArgs.cs
- ViewLoader.cs
- FileLevelControlBuilderAttribute.cs
- DBSqlParser.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- DateTimeFormatInfoScanner.cs
- SamlAction.cs
- XPathDocument.cs
- FontStyle.cs
- AsyncCompletedEventArgs.cs
- BitmapEffectDrawing.cs
- TextEditorContextMenu.cs
- CharConverter.cs
- NestedContainer.cs
- LoginUtil.cs
- unsafeIndexingFilterStream.cs
- StringUtil.cs
- OleDbStruct.cs
- WsdlInspector.cs
- BindingValueChangedEventArgs.cs
- DragDropManager.cs
- FrameAutomationPeer.cs
- ListViewSelectEventArgs.cs
- SingleKeyFrameCollection.cs
- GifBitmapDecoder.cs
- InputMethodStateTypeInfo.cs
- ScriptManagerProxy.cs
- ByteAnimation.cs
- EnvelopedSignatureTransform.cs
- DataSourceGeneratorException.cs
- SqlVersion.cs
- OleDbStruct.cs
- FixedTextContainer.cs
- ReferentialConstraintRoleElement.cs
- TypeConverterHelper.cs
- CharEntityEncoderFallback.cs
- SqlCacheDependency.cs
- GeometryDrawing.cs
- TabletCollection.cs
- XmlValidatingReaderImpl.cs
- ToolStripSplitButton.cs
- ColorConvertedBitmap.cs
- FileVersion.cs
- SortDescriptionCollection.cs
- HashHelper.cs
- CommonDialog.cs
- HyperLinkStyle.cs
- DynamicValidatorEventArgs.cs
- Calendar.cs
- TransportElement.cs
- Source.cs
- WinFormsComponentEditor.cs
- Menu.cs
- MarkupCompiler.cs
- StructuredProperty.cs