Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / HttpDictionary.cs / 1 / 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) { } #if UNUSED_CODE internal void Add(String key, Object value) { BaseAdd(key, value); } #endif #if UNUSED_CODE internal void Remove(String key) { BaseRemove(key); } #endif #if UNUSED_CODE internal void RemoveAt(int index) { BaseRemoveAt(index); } #endif #if UNUSED_CODE internal void Clear() { BaseClear(); } #endif 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); } #if UNUSED_CODE internal void SetValue(int index, Object value) { BaseSet(index, value); } #endif internal String GetKey(int index) { return BaseGetKey(index); } #if UNUSED_CODE internal bool HasKeys() { return BaseHasKeys(); } #endif internal String[] GetAllKeys() { return BaseGetAllKeys(); } #if UNUSED_CODE internal Object[] GetAllValues() { return BaseGetAllValues(); } #endif } #if UNUSED /* * Enumerator for HttpDictionary as IDictionaryEnumerator */ internal class HttpDictionaryEnumerator : IDictionaryEnumerator { private int _pos; private HttpDictionary _dict; internal HttpDictionaryEnumerator(HttpDictionary dict) { _dict = dict; _pos = -1; } // Enumerator public bool MoveNext() { return(++_pos < _dict.Count); } public void Reset() { _pos = -1; } public virtual Object Current { get { return Entry; } } public virtual DictionaryEntry Entry { get { if (_pos >= 0 && _pos < _dict.Size) return new DictionaryEntry(_dict.GetKey(_pos), _dict.GetValue(_pos)); else return new DictionaryEntry(null, null); } } public virtual Object Key { get { if (_pos >= 0 && _pos < _dict.Size) return _dict.GetKey(_pos); else return null; } } public virtual Object Value { get { if (_pos >= 0 && _pos < _dict.Size) return _dict.GetValue(_pos); else return null; } } } #endif } // 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) { } #if UNUSED_CODE internal void Add(String key, Object value) { BaseAdd(key, value); } #endif #if UNUSED_CODE internal void Remove(String key) { BaseRemove(key); } #endif #if UNUSED_CODE internal void RemoveAt(int index) { BaseRemoveAt(index); } #endif #if UNUSED_CODE internal void Clear() { BaseClear(); } #endif 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); } #if UNUSED_CODE internal void SetValue(int index, Object value) { BaseSet(index, value); } #endif internal String GetKey(int index) { return BaseGetKey(index); } #if UNUSED_CODE internal bool HasKeys() { return BaseHasKeys(); } #endif internal String[] GetAllKeys() { return BaseGetAllKeys(); } #if UNUSED_CODE internal Object[] GetAllValues() { return BaseGetAllValues(); } #endif } #if UNUSED /* * Enumerator for HttpDictionary as IDictionaryEnumerator */ internal class HttpDictionaryEnumerator : IDictionaryEnumerator { private int _pos; private HttpDictionary _dict; internal HttpDictionaryEnumerator(HttpDictionary dict) { _dict = dict; _pos = -1; } // Enumerator public bool MoveNext() { return(++_pos < _dict.Count); } public void Reset() { _pos = -1; } public virtual Object Current { get { return Entry; } } public virtual DictionaryEntry Entry { get { if (_pos >= 0 && _pos < _dict.Size) return new DictionaryEntry(_dict.GetKey(_pos), _dict.GetValue(_pos)); else return new DictionaryEntry(null, null); } } public virtual Object Key { get { if (_pos >= 0 && _pos < _dict.Size) return _dict.GetKey(_pos); else return null; } } public virtual Object Value { get { if (_pos >= 0 && _pos < _dict.Size) return _dict.GetValue(_pos); else return null; } } } #endif } // 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
- FileDialogPermission.cs
- SharedPersonalizationStateInfo.cs
- ScrollContentPresenter.cs
- FontWeightConverter.cs
- XmlnsDictionary.cs
- FormViewDeleteEventArgs.cs
- ScriptingJsonSerializationSection.cs
- MaskedTextBoxDesignerActionList.cs
- safelinkcollection.cs
- ReverseInheritProperty.cs
- Util.cs
- CacheModeConverter.cs
- ToolboxItemCollection.cs
- InputProcessorProfilesLoader.cs
- DependencySource.cs
- TCEAdapterGenerator.cs
- CaseInsensitiveOrdinalStringComparer.cs
- DynamicQueryableWrapper.cs
- Font.cs
- QilList.cs
- RowUpdatingEventArgs.cs
- Expr.cs
- HtmlForm.cs
- EventListener.cs
- ErrorProvider.cs
- BooleanAnimationUsingKeyFrames.cs
- FilterEventArgs.cs
- StoreUtilities.cs
- WSHttpTransportSecurityElement.cs
- KeyboardEventArgs.cs
- TextServicesProperty.cs
- DiscoveryClientProtocol.cs
- SBCSCodePageEncoding.cs
- SourceItem.cs
- UseLicense.cs
- List.cs
- ConfigPathUtility.cs
- AbandonedMutexException.cs
- SocketElement.cs
- LayoutTableCell.cs
- SwitchAttribute.cs
- listitem.cs
- ComEventsMethod.cs
- PublisherMembershipCondition.cs
- BezierSegment.cs
- XmlSchemaInclude.cs
- TextBoxAutoCompleteSourceConverter.cs
- ArraySegment.cs
- PropertyPathConverter.cs
- TypeUtils.cs
- PreloadedPackages.cs
- ObjectToIdCache.cs
- ArraySortHelper.cs
- StartUpEventArgs.cs
- AutomationEvent.cs
- PhysicalFontFamily.cs
- XmlSchemaComplexContentRestriction.cs
- XhtmlBasicObjectListAdapter.cs
- StandardToolWindows.cs
- MsmqIntegrationMessageProperty.cs
- FreezableOperations.cs
- CacheRequest.cs
- SafeTimerHandle.cs
- ParseChildrenAsPropertiesAttribute.cs
- NamespaceCollection.cs
- GroupLabel.cs
- SmtpNetworkElement.cs
- OdbcConnectionHandle.cs
- NegatedConstant.cs
- DataGridViewAddColumnDialog.cs
- SqlFileStream.cs
- _CommandStream.cs
- SystemIPGlobalProperties.cs
- PropertyGridEditorPart.cs
- WindowPatternIdentifiers.cs
- HelloOperationCD1AsyncResult.cs
- HttpCapabilitiesSectionHandler.cs
- SecurityTokenException.cs
- MustUnderstandSoapException.cs
- CryptoConfig.cs
- NamedElement.cs
- RootProjectionNode.cs
- ColorAnimationUsingKeyFrames.cs
- ExpressionEvaluator.cs
- SystemBrushes.cs
- DataGridViewButtonCell.cs
- Win32.cs
- AppDomainAttributes.cs
- TrustManagerPromptUI.cs
- SinglePageViewer.cs
- ColumnPropertiesGroup.cs
- DataKey.cs
- HtmlInputSubmit.cs
- ThreadInterruptedException.cs
- LabelAutomationPeer.cs
- DependencyPropertyChangedEventArgs.cs
- EpmCustomContentDeSerializer.cs
- CodeExporter.cs
- RecordsAffectedEventArgs.cs
- PaperSize.cs