Code:
/ DotNET / DotNET / 8.0 / untmp / Orcas / RTM / ndp / fx / src / xsp / System / Web / Extensions / ui / ApplicationServiceManager.cs / 1 / ApplicationServiceManager.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.Web.UI; using System.Web.Resources; using System.Globalization; internal static class ApplicationServiceManager { public const int StringBuilderCapacity = 128; public static string MergeServiceUrls(string serviceUrl, string existingUrl, Control urlBase) { serviceUrl = serviceUrl.Trim(); if(serviceUrl.Length > 0) { serviceUrl = urlBase.ResolveClientUrl(serviceUrl); if(String.IsNullOrEmpty(existingUrl)) { // proxy has specified a url and we don't have one yet, so use it existingUrl = serviceUrl; } else { // proxy has specified a url but we arleady have a url either from ScriptManager itself or a previous proxy. // The urls must agree or an exception is thrown. if(!string.Equals(serviceUrl, existingUrl, StringComparison.OrdinalIgnoreCase)) { throw new ArgumentException(AtlasWeb.AppService_MultiplePaths); } } } return existingUrl; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- GraphicsPathIterator.cs
- DbDataSourceEnumerator.cs
- XPathCompileException.cs
- HttpStreamMessageEncoderFactory.cs
- TypeConstant.cs
- ProcessProtocolHandler.cs
- hresults.cs
- SqlUserDefinedTypeAttribute.cs
- RTLAwareMessageBox.cs
- ObjectSet.cs
- BooleanFunctions.cs
- ScrollableControl.cs
- AudioLevelUpdatedEventArgs.cs
- XPathCompileException.cs
- ISAPIApplicationHost.cs
- CodeAccessPermission.cs
- MessageLogTraceRecord.cs
- Propagator.ExtentPlaceholderCreator.cs
- DecoderReplacementFallback.cs
- TrustLevel.cs
- COM2TypeInfoProcessor.cs
- FormViewPageEventArgs.cs
- HGlobalSafeHandle.cs
- JavaScriptObjectDeserializer.cs
- WebColorConverter.cs
- LoadGrammarCompletedEventArgs.cs
- KeySplineConverter.cs
- MtomMessageEncodingElement.cs
- TextEditorTyping.cs
- WindowsImpersonationContext.cs
- RuntimeEnvironment.cs
- DataExpression.cs
- Binding.cs
- CodeDOMUtility.cs
- CodeDOMProvider.cs
- InheritanceAttribute.cs
- CompilationRelaxations.cs
- Touch.cs
- OperatingSystem.cs
- PathGeometry.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- OrderablePartitioner.cs
- PassportPrincipal.cs
- IsolatedStorageFilePermission.cs
- ReadOnlyState.cs
- VisualProxy.cs
- InkPresenter.cs
- DockAndAnchorLayout.cs
- RtfToken.cs
- peersecurityelement.cs
- WebPartZoneBase.cs
- ItemCheckedEvent.cs
- QueryStringParameter.cs
- ImageList.cs
- XamlStream.cs
- EncodingDataItem.cs
- TextPointerBase.cs
- Pen.cs
- CompiledWorkflowDefinitionContext.cs
- CustomTokenProvider.cs
- ManifestSignatureInformation.cs
- SchemaNamespaceManager.cs
- AttributeCallbackBuilder.cs
- FakeModelItemImpl.cs
- MultipartIdentifier.cs
- PreProcessInputEventArgs.cs
- Cell.cs
- TypeSource.cs
- ProjectionPathBuilder.cs
- PropertyFilterAttribute.cs
- ExclusiveCanonicalizationTransform.cs
- TokenBasedSetEnumerator.cs
- DesignObjectWrapper.cs
- TextServicesCompartmentEventSink.cs
- AppDomainManager.cs
- Typography.cs
- ListControl.cs
- NonClientArea.cs
- Translator.cs
- ClickablePoint.cs
- InlinedAggregationOperator.cs
- MetadataItemEmitter.cs
- KnownAssembliesSet.cs
- TimelineGroup.cs
- HostedTransportConfigurationBase.cs
- ProcessThreadCollection.cs
- RequestResponse.cs
- ImageMetadata.cs
- AssemblySettingAttributes.cs
- MetaColumn.cs
- MaskedTextProvider.cs
- ApplicationException.cs
- RegexParser.cs
- SqlPersistenceWorkflowInstanceDescription.cs
- DataGridItem.cs
- GridSplitter.cs
- ItemContainerPattern.cs
- ProcessHostServerConfig.cs
- GeometryGroup.cs
- XmlException.cs