Code:
/ DotNET / DotNET / 8.0 / untmp / Orcas / RTM / ndp / fx / src / xsp / System / Web / Extensions / ui / ClientScriptManagerWrapper.cs / 1 / ClientScriptManagerWrapper.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.Diagnostics; using System.Web.UI; internal sealed class ClientScriptManagerWrapper : IClientScriptManager { private readonly ClientScriptManager _clientScriptManager; internal ClientScriptManagerWrapper(ClientScriptManager clientScriptManager) { Debug.Assert(clientScriptManager != null); _clientScriptManager = clientScriptManager; } #region IClientScriptManager Members string IClientScriptManager.GetPostBackEventReference(PostBackOptions options) { return _clientScriptManager.GetPostBackEventReference(options); } string IClientScriptManager.GetWebResourceUrl(Type type, string resourceName) { return _clientScriptManager.GetWebResourceUrl(type, resourceName); } void IClientScriptManager.RegisterClientScriptBlock(Type type, string key, string script) { _clientScriptManager.RegisterClientScriptBlock(type, key, script); } void IClientScriptManager.RegisterClientScriptInclude(Type type, string key, string url) { _clientScriptManager.RegisterClientScriptInclude(type, key, url); } void IClientScriptManager.RegisterClientScriptBlock(Type type, string key, string script, bool addScriptTags) { _clientScriptManager.RegisterClientScriptBlock(type, key, script, addScriptTags); } void IClientScriptManager.RegisterStartupScript(Type type, string key, string script, bool addScriptTags) { _clientScriptManager.RegisterStartupScript(type, key, script, addScriptTags); } #endregion } } // 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
- QueryOperationResponseOfT.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- IWorkflowDebuggerService.cs
- DbParameterCollectionHelper.cs
- MobileDeviceCapabilitiesSectionHandler.cs
- AssemblyCache.cs
- FrameworkElement.cs
- TableCellAutomationPeer.cs
- Translator.cs
- UIElement3D.cs
- EntityDataSourceEntitySetNameItem.cs
- BufferedStream.cs
- SiteMapDataSourceView.cs
- DefaultPrintController.cs
- CustomErrorsSectionWrapper.cs
- Shape.cs
- ImageKeyConverter.cs
- UpdateDelegates.Generated.cs
- TemplateKeyConverter.cs
- ZeroOpNode.cs
- MasterPageParser.cs
- HttpInputStream.cs
- EventHandlersStore.cs
- XmlBinaryReader.cs
- BaseParser.cs
- safemediahandle.cs
- PointHitTestParameters.cs
- CompareValidator.cs
- DataListComponentEditor.cs
- AttachedPropertyMethodSelector.cs
- PropertyTabChangedEvent.cs
- OracleDateTime.cs
- DataGridBoolColumn.cs
- ConfigPathUtility.cs
- UriTemplateDispatchFormatter.cs
- DataServiceResponse.cs
- XmlSchemaExternal.cs
- XmlILStorageConverter.cs
- TypeHelpers.cs
- ImplicitInputBrush.cs
- AssociatedControlConverter.cs
- Matrix3DValueSerializer.cs
- DbXmlEnabledProviderManifest.cs
- ReadOnlyDataSource.cs
- ReturnType.cs
- SqlPersonalizationProvider.cs
- LambdaSerializationException.cs
- ObjectViewListener.cs
- sortedlist.cs
- DependencyObjectProvider.cs
- ComContractElement.cs
- CollectionView.cs
- DeferredSelectedIndexReference.cs
- Hash.cs
- ChannelSinkStacks.cs
- MarkupCompiler.cs
- JulianCalendar.cs
- DictionaryContent.cs
- ProtectedProviderSettings.cs
- LiteralTextParser.cs
- MemberNameValidator.cs
- EdmType.cs
- DesignerAttribute.cs
- UnmanagedMemoryStream.cs
- NamedPipeAppDomainProtocolHandler.cs
- HttpApplicationStateBase.cs
- CqlBlock.cs
- SubpageParagraph.cs
- SatelliteContractVersionAttribute.cs
- Compiler.cs
- AbstractDataSvcMapFileLoader.cs
- ContentElement.cs
- MultiTrigger.cs
- DisposableCollectionWrapper.cs
- PlatformCulture.cs
- MetaColumn.cs
- AutomationProperties.cs
- SqlConnectionHelper.cs
- DoubleLinkListEnumerator.cs
- DbTransaction.cs
- WindowsGraphicsWrapper.cs
- WebPageTraceListener.cs
- FormattedTextSymbols.cs
- XPathNavigatorReader.cs
- Trace.cs
- ImageAttributes.cs
- InfoCardRSAOAEPKeyExchangeDeformatter.cs
- InputLanguageEventArgs.cs
- _Connection.cs
- XAMLParseException.cs
- FastEncoder.cs
- recordstatescratchpad.cs
- ObjRef.cs
- LookupBindingPropertiesAttribute.cs
- BinaryCommonClasses.cs
- BinaryReader.cs
- OdbcParameterCollection.cs
- PassportIdentity.cs
- DockEditor.cs
- Size3D.cs