Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / HttpDictionary.cs / 1305376 / HttpDictionary.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * Ordered dictionary keyed by string * -- Utility class used in Collections * * Copyright (c) 1998 Microsoft Corporation */ namespace System.Web { using System.Collections; using System.Collections.Specialized; using System.Web.Util; internal class HttpDictionary : NameObjectCollectionBase { internal HttpDictionary(): base(Misc.CaseInsensitiveInvariantKeyComparer) { } internal int Size { get { return Count;} } internal Object GetValue(String key) { return BaseGet(key); } internal void SetValue(String key, Object value) { BaseSet(key, value); } internal Object GetValue(int index) { return BaseGet(index); } internal String GetKey(int index) { return BaseGetKey(index); } internal String[] GetAllKeys() { return BaseGetAllKeys(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * Ordered dictionary keyed by string * -- Utility class used in Collections * * Copyright (c) 1998 Microsoft Corporation */ namespace System.Web { using System.Collections; using System.Collections.Specialized; using System.Web.Util; internal class HttpDictionary : NameObjectCollectionBase { internal HttpDictionary(): base(Misc.CaseInsensitiveInvariantKeyComparer) { } internal int Size { get { return Count;} } internal Object GetValue(String key) { return BaseGet(key); } internal void SetValue(String key, Object value) { BaseSet(key, value); } internal Object GetValue(int index) { return BaseGet(index); } internal String GetKey(int index) { return BaseGetKey(index); } internal String[] GetAllKeys() { return BaseGetAllKeys(); } } } // 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
- NavigationProperty.cs
- DataGridViewCellValueEventArgs.cs
- DataRecordInternal.cs
- MediaCommands.cs
- StringPropertyBuilder.cs
- NameValueConfigurationCollection.cs
- Propagator.JoinPropagator.cs
- TableLayoutPanelCellPosition.cs
- VBCodeProvider.cs
- DocumentReferenceCollection.cs
- ColorTransform.cs
- CodeMemberProperty.cs
- Grid.cs
- parserscommon.cs
- WorkflowMarkupElementEventArgs.cs
- XsltContext.cs
- GridEntryCollection.cs
- CollectionView.cs
- GeneralTransform3DTo2D.cs
- UnsafeNativeMethods.cs
- SqlBinder.cs
- TextParagraphCache.cs
- TableDetailsCollection.cs
- CompilationLock.cs
- RegexWriter.cs
- OLEDB_Enum.cs
- TabControlDesigner.cs
- SignalGate.cs
- HashHelper.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- PropertyEmitter.cs
- LazyLoadBehavior.cs
- Int32.cs
- RoutedEventConverter.cs
- BitmapVisualManager.cs
- GeneratedCodeAttribute.cs
- CodeTypeOfExpression.cs
- XmlSchemaNotation.cs
- StringCollectionEditor.cs
- ReliableMessagingHelpers.cs
- DispatcherTimer.cs
- XmlSerializationWriter.cs
- PolicyUtility.cs
- LoginUtil.cs
- SelectionChangedEventArgs.cs
- LocalizableAttribute.cs
- SchemaExporter.cs
- BamlLocalizationDictionary.cs
- MemberExpression.cs
- XmlSchemaParticle.cs
- InfoCardRSAPKCS1KeyExchangeDeformatter.cs
- VectorCollection.cs
- SafeThreadHandle.cs
- PeerServiceMessageContracts.cs
- RotationValidation.cs
- ProtocolsConfigurationHandler.cs
- _AutoWebProxyScriptEngine.cs
- InvokeHandlers.cs
- WebPartAddingEventArgs.cs
- ActivityXamlServices.cs
- CommandManager.cs
- IndicShape.cs
- CategoryNameCollection.cs
- SiteMapNodeCollection.cs
- ReaderWriterLock.cs
- TypeConverterHelper.cs
- ResourceDisplayNameAttribute.cs
- Configuration.cs
- PermissionRequestEvidence.cs
- CookieHandler.cs
- TextParaClient.cs
- BlurEffect.cs
- AudioBase.cs
- XmlWrappingReader.cs
- ErrorInfoXmlDocument.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- Int64Animation.cs
- BindingExpressionBase.cs
- ImageButton.cs
- DiagnosticsConfigurationHandler.cs
- EraserBehavior.cs
- _IPv4Address.cs
- DebugHandleTracker.cs
- PerformanceCounterLib.cs
- Substitution.cs
- DocumentXPathNavigator.cs
- AppSettingsSection.cs
- CoTaskMemHandle.cs
- ModelVisual3D.cs
- FixedSOMTableCell.cs
- DocumentOrderComparer.cs
- DefaultBinder.cs
- OperandQuery.cs
- UnlockInstanceCommand.cs
- TreeViewItemAutomationPeer.cs
- OneOfScalarConst.cs
- ControlCachePolicy.cs
- ShaderEffect.cs
- ClientBuildManager.cs
- ProcessModuleCollection.cs