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
- TabletDevice.cs
- ByValueEqualityComparer.cs
- DataGridColumnHeaderCollection.cs
- SessionEndingCancelEventArgs.cs
- Attributes.cs
- StylusLogic.cs
- HttpStreamXmlDictionaryReader.cs
- HierarchicalDataSourceIDConverter.cs
- SyncMethodInvoker.cs
- XmlWrappingReader.cs
- RedirectionProxy.cs
- GridViewRowEventArgs.cs
- JpegBitmapDecoder.cs
- BitmapEffectGroup.cs
- IDataContractSurrogate.cs
- StyleSheetComponentEditor.cs
- NonDualMessageSecurityOverHttpElement.cs
- ObjectStateEntryDbDataRecord.cs
- MultiPageTextView.cs
- TextInfo.cs
- ObjectDataSourceEventArgs.cs
- StringHandle.cs
- RegexStringValidatorAttribute.cs
- httpapplicationstate.cs
- InstalledVoice.cs
- ProcessInfo.cs
- Char.cs
- Scripts.cs
- WindowHideOrCloseTracker.cs
- Pts.cs
- EdmType.cs
- PanelStyle.cs
- ScrollBarAutomationPeer.cs
- XhtmlBasicLabelAdapter.cs
- DebuggerService.cs
- transactioncontext.cs
- XmlDomTextWriter.cs
- SwitchLevelAttribute.cs
- Color.cs
- TextEffect.cs
- DES.cs
- SecurityDescriptor.cs
- RegexCompiler.cs
- LocatorGroup.cs
- MenuItemStyleCollection.cs
- Padding.cs
- ClockController.cs
- ButtonStandardAdapter.cs
- WmpBitmapDecoder.cs
- Fonts.cs
- WebPartMenu.cs
- LinkClickEvent.cs
- FlowDocumentScrollViewerAutomationPeer.cs
- CellParaClient.cs
- FormsAuthenticationUserCollection.cs
- TextFindEngine.cs
- MsmqUri.cs
- RsaSecurityTokenAuthenticator.cs
- ToolboxDataAttribute.cs
- AlphabetConverter.cs
- RelationshipType.cs
- DbProviderFactories.cs
- OledbConnectionStringbuilder.cs
- BezierSegment.cs
- PaperSize.cs
- Label.cs
- Timer.cs
- CodeAssignStatement.cs
- ParseNumbers.cs
- IOThreadTimer.cs
- DateTime.cs
- RNGCryptoServiceProvider.cs
- CategoryNameCollection.cs
- NonSerializedAttribute.cs
- DBNull.cs
- base64Transforms.cs
- LambdaCompiler.Expressions.cs
- _ProxyChain.cs
- securestring.cs
- SrgsText.cs
- GridPatternIdentifiers.cs
- ConfigXmlReader.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- RelatedPropertyManager.cs
- SafeCloseHandleCritical.cs
- OleStrCAMarshaler.cs
- GenerateScriptTypeAttribute.cs
- Enlistment.cs
- ProcessManager.cs
- PresentationSource.cs
- JumpItem.cs
- CustomAttribute.cs
- IndexOutOfRangeException.cs
- PreviewPageInfo.cs
- ISAPIWorkerRequest.cs
- DbBuffer.cs
- MinMaxParagraphWidth.cs
- BuildProvidersCompiler.cs
- BaseDataListPage.cs
- CellConstant.cs