Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / 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. //------------------------------------------------------------------------------ //// 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ClientOptions.cs
- metadatamappinghashervisitor.cs
- cookieexception.cs
- MenuItemAutomationPeer.cs
- CompilerErrorCollection.cs
- FixedSOMTableRow.cs
- Condition.cs
- PrivilegeNotHeldException.cs
- DeviceSpecificChoiceCollection.cs
- LinkTarget.cs
- ProbeDuplex11AsyncResult.cs
- PngBitmapEncoder.cs
- DictionaryGlobals.cs
- DataBindingHandlerAttribute.cs
- DataViewListener.cs
- smtppermission.cs
- SafeProcessHandle.cs
- Soap.cs
- BrushConverter.cs
- XmlSchemaSet.cs
- ContextMenuService.cs
- unsafeIndexingFilterStream.cs
- ImportContext.cs
- FlowDocumentReader.cs
- ViewManager.cs
- OleDbPermission.cs
- ActivityScheduledRecord.cs
- WebBrowsableAttribute.cs
- FileDialog.cs
- DockingAttribute.cs
- SmtpFailedRecipientsException.cs
- ParentQuery.cs
- PropertyValueUIItem.cs
- AttachedAnnotationChangedEventArgs.cs
- SmiContextFactory.cs
- MimeObjectFactory.cs
- RowToFieldTransformer.cs
- arc.cs
- ListViewInsertEventArgs.cs
- AlignmentYValidation.cs
- TCEAdapterGenerator.cs
- ReplacementText.cs
- RoleManagerModule.cs
- Table.cs
- AppliedDeviceFiltersEditor.cs
- DBAsyncResult.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- ItemMap.cs
- PreloadedPackages.cs
- PlatformNotSupportedException.cs
- TableColumn.cs
- DefaultValidator.cs
- ColorConverter.cs
- Scripts.cs
- WindowsSolidBrush.cs
- FieldNameLookup.cs
- XmlIterators.cs
- ConsumerConnectionPoint.cs
- HtmlForm.cs
- TextSpan.cs
- WebPartTransformerAttribute.cs
- SoapCodeExporter.cs
- PowerModeChangedEventArgs.cs
- SearchForVirtualItemEventArgs.cs
- LongSumAggregationOperator.cs
- UIElement.cs
- SequentialWorkflowHeaderFooter.cs
- WpfKnownType.cs
- SetterBaseCollection.cs
- DbTransaction.cs
- _ListenerResponseStream.cs
- CmsUtils.cs
- URLAttribute.cs
- AttachedPropertyInfo.cs
- Helper.cs
- SelectorAutomationPeer.cs
- OleDbPermission.cs
- XmlSubtreeReader.cs
- GeometryCombineModeValidation.cs
- HostingPreferredMapPath.cs
- XmlSchemaAppInfo.cs
- HttpModuleActionCollection.cs
- ToolStripComboBox.cs
- FixedDocumentSequencePaginator.cs
- _FtpDataStream.cs
- FtpRequestCacheValidator.cs
- ModelEditingScope.cs
- iisPickupDirectory.cs
- Evidence.cs
- ToolBar.cs
- webeventbuffer.cs
- MiniAssembly.cs
- ArcSegment.cs
- ImageSource.cs
- CatalogZoneBase.cs
- UrlAuthFailedErrorFormatter.cs
- Listen.cs
- DataContractSerializerOperationFormatter.cs
- DefinitionUpdate.cs
- Compilation.cs