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
- FloaterParaClient.cs
- DPCustomTypeDescriptor.cs
- UserNameSecurityTokenAuthenticator.cs
- SchemaMapping.cs
- HttpCookieCollection.cs
- AutomationIdentifierGuids.cs
- OpenFileDialog.cs
- TextSpan.cs
- RowVisual.cs
- BamlResourceSerializer.cs
- MissingMethodException.cs
- CompiledXpathExpr.cs
- TaiwanLunisolarCalendar.cs
- TimelineGroup.cs
- PKCS1MaskGenerationMethod.cs
- PnrpPermission.cs
- TreeNodeCollection.cs
- StateBag.cs
- PreProcessor.cs
- UnsafeNativeMethods.cs
- OdbcEnvironmentHandle.cs
- ConfigurationPermission.cs
- ConfigurationStrings.cs
- ErasingStroke.cs
- Journaling.cs
- DateTimeConstantAttribute.cs
- AssemblyInfo.cs
- EventMap.cs
- COM2TypeInfoProcessor.cs
- ByeMessage11.cs
- AutomationElementCollection.cs
- UInt16Converter.cs
- EntitySetRetriever.cs
- SqlBulkCopyColumnMapping.cs
- FormViewInsertedEventArgs.cs
- ColumnHeaderConverter.cs
- FixedSOMTableRow.cs
- FigureParaClient.cs
- WebPartEditorCancelVerb.cs
- EncryptedReference.cs
- DataMisalignedException.cs
- TextRange.cs
- SiteMapHierarchicalDataSourceView.cs
- DelegateOutArgument.cs
- SynchronizationLockException.cs
- NotImplementedException.cs
- RawUIStateInputReport.cs
- ToolStripContainerActionList.cs
- ArgIterator.cs
- FormViewDeletedEventArgs.cs
- BCryptNative.cs
- ObjectView.cs
- StringKeyFrameCollection.cs
- ListenerElementsCollection.cs
- WebResponse.cs
- MobileControlsSectionHandler.cs
- MessageDirection.cs
- EntityDataSourceWizardForm.cs
- RuleAction.cs
- XmlSchemaGroupRef.cs
- DoubleCollectionValueSerializer.cs
- OdbcErrorCollection.cs
- SoapReflectionImporter.cs
- ProxyWebPart.cs
- RedBlackList.cs
- BuildProvider.cs
- SemanticAnalyzer.cs
- XmlMapping.cs
- TypePropertyEditor.cs
- SymbolPair.cs
- PageBuildProvider.cs
- NativeMethods.cs
- LineServicesCallbacks.cs
- CommandField.cs
- WebHttpBinding.cs
- XmlSchemaGroup.cs
- Queue.cs
- ServicesExceptionNotHandledEventArgs.cs
- RtType.cs
- JoinElimination.cs
- SamlSecurityToken.cs
- XamlGridLengthSerializer.cs
- CodeSnippetTypeMember.cs
- ToolStripDropDownButton.cs
- XmlImplementation.cs
- ADRoleFactory.cs
- IdentifierCreationService.cs
- Function.cs
- ByteAnimationBase.cs
- HttpServerVarsCollection.cs
- OleDbErrorCollection.cs
- WindowsFormsSectionHandler.cs
- TimeSpanStorage.cs
- InputProcessorProfilesLoader.cs
- HwndMouseInputProvider.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- Viewport2DVisual3D.cs
- SimpleLine.cs
- LocationUpdates.cs
- DoubleCollectionConverter.cs