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
- DynamicEntity.cs
- TemplateControlCodeDomTreeGenerator.cs
- DesignerDataConnection.cs
- AsymmetricAlgorithm.cs
- AttributeData.cs
- SrgsRulesCollection.cs
- ColorMatrix.cs
- MemberPathMap.cs
- ProgressBarRenderer.cs
- formatter.cs
- FilterQuery.cs
- DriveNotFoundException.cs
- SimpleTextLine.cs
- QueryCursorEventArgs.cs
- FormViewUpdatedEventArgs.cs
- WindowsTokenRoleProvider.cs
- ModifiableIteratorCollection.cs
- DateTimeFormatInfo.cs
- XmlWriterSettings.cs
- UnsafeNetInfoNativeMethods.cs
- StateBag.cs
- AsymmetricSignatureDeformatter.cs
- COM2IProvidePropertyBuilderHandler.cs
- ProcessModule.cs
- OverflowException.cs
- WmfPlaceableFileHeader.cs
- TextBlockAutomationPeer.cs
- GridEntryCollection.cs
- InputMethodStateChangeEventArgs.cs
- CoreSwitches.cs
- CodeTypeReference.cs
- Executor.cs
- PackWebRequest.cs
- RenderingEventArgs.cs
- HandlerBase.cs
- WpfKnownMemberInvoker.cs
- GenericAuthenticationEventArgs.cs
- DispatcherExceptionFilterEventArgs.cs
- HttpWriter.cs
- ClrProviderManifest.cs
- Pen.cs
- FontCollection.cs
- CodeTypeMemberCollection.cs
- FrameworkTemplate.cs
- SoapCommonClasses.cs
- TTSVoice.cs
- MultiplexingDispatchMessageFormatter.cs
- X509Chain.cs
- DesignerWebPartChrome.cs
- CodeAttributeDeclaration.cs
- COAUTHINFO.cs
- _HeaderInfoTable.cs
- MouseWheelEventArgs.cs
- StructuralType.cs
- IChannel.cs
- TemplatePropertyEntry.cs
- BitmapCodecInfo.cs
- SolidColorBrush.cs
- CultureTableRecord.cs
- ImageFormatConverter.cs
- LinqDataSourceDeleteEventArgs.cs
- IsolationInterop.cs
- MouseActionConverter.cs
- LoadedOrUnloadedOperation.cs
- PathFigureCollectionValueSerializer.cs
- HttpHeaderCollection.cs
- MaskedTextProvider.cs
- xsdvalidator.cs
- IsolatedStorage.cs
- TreeView.cs
- BindingMemberInfo.cs
- ValueQuery.cs
- MeasurementDCInfo.cs
- SqlDataSourceEnumerator.cs
- ActiveDocumentEvent.cs
- ProjectionPathSegment.cs
- PKCS1MaskGenerationMethod.cs
- DBAsyncResult.cs
- DataGridViewColumnDesigner.cs
- WebBrowserEvent.cs
- Parallel.cs
- SerializationStore.cs
- DependencyProperty.cs
- BasePattern.cs
- HttpAsyncResult.cs
- MobileTextWriter.cs
- IgnoreDataMemberAttribute.cs
- SelectionPattern.cs
- ListControl.cs
- SamlAttributeStatement.cs
- PagerSettings.cs
- WindowsHyperlink.cs
- TextureBrush.cs
- DocumentManager.cs
- Odbc32.cs
- BinaryMessageEncodingElement.cs
- MenuDesigner.cs
- Int32KeyFrameCollection.cs
- TemplatingOptionsDialog.cs
- ConstNode.cs