Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / UI / ClientScriptManagerWrapper.cs / 1305376 / ClientScriptManagerWrapper.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Diagnostics; using System.Reflection; 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 Dictionary> IClientScriptManager.RegisteredResourcesToSuppress { get { #if !ORYX_VNEXT return _clientScriptManager.RegisteredResourcesToSuppress; #else return new Dictionary >(); #endif } } 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ResourcePermissionBase.cs
- ToolboxItemFilterAttribute.cs
- NotifyParentPropertyAttribute.cs
- StringConverter.cs
- StylusDevice.cs
- ConfigurationErrorsException.cs
- HostVisual.cs
- HtmlControl.cs
- SpellCheck.cs
- IProvider.cs
- Function.cs
- File.cs
- RequestCacheEntry.cs
- BrowserCapabilitiesFactory35.cs
- PeerToPeerException.cs
- ApplicationSecurityInfo.cs
- Control.cs
- RequestCacheEntry.cs
- AnnotationStore.cs
- Range.cs
- StyleSelector.cs
- FlowDocumentReaderAutomationPeer.cs
- DataViewSetting.cs
- DataControlFieldCollection.cs
- QueuePathEditor.cs
- DictionaryTraceRecord.cs
- DataGridTablesFactory.cs
- KnownColorTable.cs
- ReaderOutput.cs
- PointCollection.cs
- DurableTimerExtension.cs
- Screen.cs
- HttpEncoder.cs
- CacheRequest.cs
- EmissiveMaterial.cs
- NTAccount.cs
- DataGridTextColumn.cs
- LocationUpdates.cs
- ProxyElement.cs
- JulianCalendar.cs
- RegexWriter.cs
- InstanceDataCollectionCollection.cs
- XmlSchemaType.cs
- BreadCrumbTextConverter.cs
- ResourcePermissionBase.cs
- MissingSatelliteAssemblyException.cs
- UnitySerializationHolder.cs
- DrawingBrush.cs
- WebPermission.cs
- PageAdapter.cs
- CollectionViewGroupRoot.cs
- ValueProviderWrapper.cs
- Nullable.cs
- OrCondition.cs
- DataGridCell.cs
- GuidelineCollection.cs
- ParagraphVisual.cs
- Int16KeyFrameCollection.cs
- PathBox.cs
- ToolStripRenderEventArgs.cs
- AutomationElementCollection.cs
- CompareValidator.cs
- Quack.cs
- WbemProvider.cs
- UidPropertyAttribute.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- Codec.cs
- PiiTraceSource.cs
- InstanceDataCollectionCollection.cs
- SqlParameterCollection.cs
- AsymmetricSignatureDeformatter.cs
- TypePropertyEditor.cs
- ReadWriteSpinLock.cs
- SqlCacheDependency.cs
- WmpBitmapEncoder.cs
- DBParameter.cs
- HashAlgorithm.cs
- CalendarItem.cs
- DurationConverter.cs
- XmlNullResolver.cs
- ListViewGroupConverter.cs
- HttpContextBase.cs
- GeneralTransformGroup.cs
- Misc.cs
- ImageMap.cs
- TransformerInfo.cs
- DataList.cs
- JoinGraph.cs
- ResourceKey.cs
- CustomErrorsSectionWrapper.cs
- MenuItem.cs
- OracleString.cs
- TraceUtility.cs
- ObjectMaterializedEventArgs.cs
- Dynamic.cs
- GroupStyle.cs
- AssemblyAttributes.cs
- FileSystemInfo.cs
- ScriptingWebServicesSectionGroup.cs
- HttpCachePolicy.cs