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
- PaperSize.cs
- CompiledQuery.cs
- ChannelDispatcherCollection.cs
- RoutedEventConverter.cs
- ExceptionValidationRule.cs
- WsatAdminException.cs
- UTF8Encoding.cs
- unitconverter.cs
- EntityFrameworkVersions.cs
- FillErrorEventArgs.cs
- SystemUdpStatistics.cs
- HMACSHA512.cs
- GlyphTypeface.cs
- SetStoryboardSpeedRatio.cs
- OrderedDictionaryStateHelper.cs
- ActionItem.cs
- SecureStringHasher.cs
- WindowInteropHelper.cs
- RegistryKey.cs
- Brushes.cs
- UserControl.cs
- XmlQueryOutput.cs
- BindingExpressionBase.cs
- ExpressionPrefixAttribute.cs
- DefaultValueConverter.cs
- XmlILTrace.cs
- EpmSourcePathSegment.cs
- RuntimeWrappedException.cs
- FrameworkElement.cs
- ConstrainedGroup.cs
- TextElementEnumerator.cs
- Table.cs
- PeerApplication.cs
- DocumentsTrace.cs
- AppSecurityManager.cs
- CreateUserWizard.cs
- EntityTypeBase.cs
- RuntimeConfigurationRecord.cs
- GradientStop.cs
- DataGridLinkButton.cs
- DataErrorValidationRule.cs
- embossbitmapeffect.cs
- TableRowGroupCollection.cs
- XmlUtil.cs
- Bidi.cs
- InlineObject.cs
- ObjectResult.cs
- CompiledRegexRunnerFactory.cs
- Sentence.cs
- SerializationBinder.cs
- RegexInterpreter.cs
- SoapSchemaImporter.cs
- TransportOutputChannel.cs
- SrgsItemList.cs
- GridViewRow.cs
- RecordsAffectedEventArgs.cs
- ConfigurationSettings.cs
- KeyValueInternalCollection.cs
- AsymmetricSecurityBindingElement.cs
- CancellationTokenRegistration.cs
- Table.cs
- ExceptionList.cs
- NameService.cs
- TemplateField.cs
- ExpandCollapseProviderWrapper.cs
- TdsParser.cs
- ScrollBarAutomationPeer.cs
- webproxy.cs
- TaskHelper.cs
- WebConvert.cs
- EditorPartChrome.cs
- GlyphInfoList.cs
- ListViewPagedDataSource.cs
- ToolStripSplitStackLayout.cs
- OpCopier.cs
- IntAverageAggregationOperator.cs
- TabOrder.cs
- ProfileProvider.cs
- IriParsingElement.cs
- DataGridTextBoxColumn.cs
- CodeGen.cs
- RuleSettingsCollection.cs
- MulticastDelegate.cs
- XmlAttributes.cs
- ListManagerBindingsCollection.cs
- ComponentConverter.cs
- SessionParameter.cs
- PeerContact.cs
- HttpConfigurationContext.cs
- ListViewDeleteEventArgs.cs
- BinHexDecoder.cs
- WebMethodAttribute.cs
- ThreadStaticAttribute.cs
- StylusPointProperty.cs
- InstallerTypeAttribute.cs
- DefaultValueConverter.cs
- RemotingException.cs
- AjaxFrameworkAssemblyAttribute.cs
- MenuAdapter.cs
- SoapFormatterSinks.cs