Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ScriptResourceHandler.cs
- RightsManagementResourceHelper.cs
- TypedCompletedAsyncResult.cs
- UIHelper.cs
- KerberosReceiverSecurityToken.cs
- MethodBuilderInstantiation.cs
- InfoCardAsymmetricCrypto.cs
- RegisteredScript.cs
- OdbcConnectionPoolProviderInfo.cs
- TypeBrowser.xaml.cs
- PointHitTestParameters.cs
- TypeConverterAttribute.cs
- FileFormatException.cs
- Dictionary.cs
- ToolStripComboBox.cs
- ConnectorEditor.cs
- TypeSchema.cs
- TaiwanLunisolarCalendar.cs
- SendMailErrorEventArgs.cs
- JournalNavigationScope.cs
- EdmFunction.cs
- MatrixIndependentAnimationStorage.cs
- PersonalizationEntry.cs
- DoubleLink.cs
- ColorConvertedBitmap.cs
- ConfigXmlCDataSection.cs
- FileDialog.cs
- Registry.cs
- Logging.cs
- XmlArrayItemAttributes.cs
- OleAutBinder.cs
- XhtmlBasicValidatorAdapter.cs
- TransactionManager.cs
- RemotingConfiguration.cs
- XamlFigureLengthSerializer.cs
- ProviderUtil.cs
- CopyOfAction.cs
- PreviewPageInfo.cs
- EventSourceCreationData.cs
- Graphics.cs
- FormViewUpdateEventArgs.cs
- InternalTypeHelper.cs
- Viewport2DVisual3D.cs
- ToolStripDropDownButton.cs
- autovalidator.cs
- SqlFileStream.cs
- NullableDoubleMinMaxAggregationOperator.cs
- HtmlTable.cs
- _DomainName.cs
- DurationConverter.cs
- Win32Exception.cs
- AutomationAttributeInfo.cs
- RelatedEnd.cs
- PrincipalPermission.cs
- DataTable.cs
- ColorAnimation.cs
- EntityProviderServices.cs
- OperationInfoBase.cs
- FileIOPermission.cs
- TypeSchema.cs
- TimersDescriptionAttribute.cs
- BaseTemplateParser.cs
- AssertUtility.cs
- SafeNativeMemoryHandle.cs
- XmlNamespaceDeclarationsAttribute.cs
- RenderingBiasValidation.cs
- DataRelationCollection.cs
- RectangleConverter.cs
- ZipIOModeEnforcingStream.cs
- UInt32.cs
- SectionXmlInfo.cs
- InArgumentConverter.cs
- WindowsButton.cs
- _LocalDataStore.cs
- WindowsSidIdentity.cs
- PhonemeConverter.cs
- MemberPath.cs
- MatchAllMessageFilter.cs
- EventsTab.cs
- DesignerLoader.cs
- FormViewUpdatedEventArgs.cs
- DesignerDataTableBase.cs
- CacheDict.cs
- RowToFieldTransformer.cs
- XmlUnspecifiedAttribute.cs
- SearchForVirtualItemEventArgs.cs
- HtmlElementErrorEventArgs.cs
- Vector3D.cs
- PictureBox.cs
- EndpointAddressMessageFilter.cs
- Control.cs
- EmptyReadOnlyDictionaryInternal.cs
- BeginGetFileNameFromUserRequest.cs
- EntityDataSourceMemberPath.cs
- HtmlWindowCollection.cs
- InfoCardProofToken.cs
- TextTreeTextNode.cs
- WinInetCache.cs
- GridViewRowCollection.cs
- HtmlFormParameterWriter.cs