Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Cache / OutputCacheProviderCollection.cs / 1305376 / OutputCacheProviderCollection.cs
using System; using System.Configuration.Provider; using System.Security.Permissions; using System.Web; namespace System.Web.Caching { public sealed class OutputCacheProviderCollection : ProviderCollection { new public OutputCacheProvider this[string name] { get { return (OutputCacheProvider) base[name]; } } public override void Add(ProviderBase provider) { if (provider == null) { throw new ArgumentNullException( "provider" ); } if (!(provider is OutputCacheProvider)) { throw new ArgumentException(SR.GetString(SR.Provider_must_implement_type, typeof(OutputCacheProvider).Name), "provider"); } base.Add(provider); } public void CopyTo(OutputCacheProvider[] array, int index) { base.CopyTo(array, index); } } } // 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
- HtmlTableCell.cs
- MessageQueueException.cs
- TransactedBatchingElement.cs
- DataGridViewBindingCompleteEventArgs.cs
- configsystem.cs
- TraversalRequest.cs
- EntityDataSourceState.cs
- PartialCachingAttribute.cs
- XmlSchemaInfo.cs
- SQLInt64Storage.cs
- EncoderParameter.cs
- DataGridViewToolTip.cs
- ItemAutomationPeer.cs
- Bezier.cs
- HttpGetProtocolReflector.cs
- XmlSchemaComplexContentRestriction.cs
- StringSorter.cs
- Cursor.cs
- WaitForChangedResult.cs
- TemplateField.cs
- SizeConverter.cs
- CuspData.cs
- FixedBufferAttribute.cs
- DefaultAutoFieldGenerator.cs
- CellConstant.cs
- TheQuery.cs
- GACMembershipCondition.cs
- PackWebResponse.cs
- VideoDrawing.cs
- AddingNewEventArgs.cs
- XmlTextReaderImplHelpers.cs
- Typeface.cs
- Int32CAMarshaler.cs
- ACE.cs
- Predicate.cs
- ResolvedKeyFrameEntry.cs
- Win32SafeHandles.cs
- IndexedString.cs
- RepeaterItem.cs
- EditingScopeUndoUnit.cs
- UInt64Storage.cs
- AuthenticationModulesSection.cs
- XmlDataLoader.cs
- CachedBitmap.cs
- lengthconverter.cs
- XmlSerializationWriter.cs
- OrderPreservingSpoolingTask.cs
- LocatorPart.cs
- LookupTables.cs
- TimersDescriptionAttribute.cs
- XmlnsCache.cs
- SafeFileMapViewHandle.cs
- CircleHotSpot.cs
- CornerRadiusConverter.cs
- ApplyTemplatesAction.cs
- SettingsAttributeDictionary.cs
- DrawingVisual.cs
- CodeAttributeDeclaration.cs
- PropertyNames.cs
- COM2IProvidePropertyBuilderHandler.cs
- OleDbError.cs
- DataBindingHandlerAttribute.cs
- XmlStreamStore.cs
- AttributeParameterInfo.cs
- StorageEntitySetMapping.cs
- Soap.cs
- MiniParameterInfo.cs
- FixedSOMPageConstructor.cs
- SBCSCodePageEncoding.cs
- _LocalDataStoreMgr.cs
- WindowsTooltip.cs
- RelationshipWrapper.cs
- NativeMethods.cs
- CompilerGlobalScopeAttribute.cs
- ErrorRuntimeConfig.cs
- RoleService.cs
- EndOfStreamException.cs
- SchemaElementDecl.cs
- CryptographicAttribute.cs
- MouseGestureValueSerializer.cs
- BaseCAMarshaler.cs
- GeneralTransform2DTo3DTo2D.cs
- HotCommands.cs
- DateTimeOffset.cs
- RotateTransform.cs
- Compiler.cs
- IntegrationExceptionEventArgs.cs
- ResolvedKeyFrameEntry.cs
- FixedSOMElement.cs
- XmlWrappingWriter.cs
- PropertyIDSet.cs
- EntryPointNotFoundException.cs
- DataObjectFieldAttribute.cs
- StylusPointPropertyInfoDefaults.cs
- CreateInstanceBinder.cs
- OleDbEnumerator.cs
- SelectionList.cs
- ModifyActivitiesPropertyDescriptor.cs
- ListViewCommandEventArgs.cs
- BuilderInfo.cs