Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / Compilation / WebReferencesBuildProvider.cs / 1 / 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
- RouteParametersHelper.cs
- PropertyGridCommands.cs
- ListQueryResults.cs
- EpmTargetPathSegment.cs
- util.cs
- NegotiationTokenProvider.cs
- ContentValidator.cs
- LinearKeyFrames.cs
- MultipartContentParser.cs
- HandlerWithFactory.cs
- Queue.cs
- TaiwanCalendar.cs
- DesignerWithHeader.cs
- NumberSubstitution.cs
- BamlRecordHelper.cs
- DataGridSortingEventArgs.cs
- HyperLinkDesigner.cs
- DragStartedEventArgs.cs
- filewebresponse.cs
- OleDbConnectionInternal.cs
- ProviderUtil.cs
- DelegateCompletionCallbackWrapper.cs
- SqlError.cs
- HtmlInputControl.cs
- EntityTypeEmitter.cs
- VisualCollection.cs
- BuilderPropertyEntry.cs
- DataTemplateKey.cs
- TimeSpanOrInfiniteConverter.cs
- Crypto.cs
- QilVisitor.cs
- PageAsyncTaskManager.cs
- Rect3DValueSerializer.cs
- GenericTypeParameterBuilder.cs
- SqlCacheDependency.cs
- FormViewInsertedEventArgs.cs
- DiagnosticStrings.cs
- FieldBuilder.cs
- DataTableClearEvent.cs
- FileStream.cs
- PolyBezierSegment.cs
- LinearGradientBrush.cs
- StateMachine.cs
- TypeInfo.cs
- SchemaUtility.cs
- DataContract.cs
- RtfNavigator.cs
- TimeSpanValidatorAttribute.cs
- SqlServer2KCompatibilityAnnotation.cs
- TransformValueSerializer.cs
- FileLevelControlBuilderAttribute.cs
- ProxyHwnd.cs
- CertificateManager.cs
- Visitor.cs
- PageRequestManager.cs
- _TransmitFileOverlappedAsyncResult.cs
- SqlFormatter.cs
- DecoderBestFitFallback.cs
- GPPOINTF.cs
- EntityProxyTypeInfo.cs
- CallbackValidatorAttribute.cs
- XPathNavigatorKeyComparer.cs
- BrushConverter.cs
- FixedSOMContainer.cs
- GeneralTransform3DCollection.cs
- FunctionNode.cs
- WorkflowApplicationEventArgs.cs
- BindingUtils.cs
- JournalEntry.cs
- XmlException.cs
- AssemblyResolver.cs
- Configuration.cs
- ExpandableObjectConverter.cs
- Serializer.cs
- CompilationLock.cs
- SourceFileInfo.cs
- PreviewPrintController.cs
- SessionPageStateSection.cs
- LexicalChunk.cs
- BitConverter.cs
- PenLineJoinValidation.cs
- CompositeControl.cs
- FormatterServices.cs
- Frame.cs
- TimeSpanConverter.cs
- ProcessProtocolHandler.cs
- UserPreferenceChangedEventArgs.cs
- DescendentsWalkerBase.cs
- TraceSection.cs
- ImageSourceTypeConverter.cs
- XPathSelectionIterator.cs
- ProvidersHelper.cs
- FormsIdentity.cs
- HostingEnvironment.cs
- ValidationSummary.cs
- PersonalizationStateInfoCollection.cs
- InheritedPropertyDescriptor.cs
- DependencyPropertyChangedEventArgs.cs
- Attribute.cs
- FacetEnabledSchemaElement.cs