Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / HttpListenerPrefixCollection.cs / 1305376 / HttpListenerPrefixCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net { using System; using System.Collections; using System.Collections.Generic; internal class ListenerPrefixEnumerator:IEnumerator{ IEnumerator enumerator; internal ListenerPrefixEnumerator(IEnumerator enumerator){ this.enumerator = enumerator; } public string Current{ get{ return (string)enumerator.Current; } } public bool MoveNext(){ return enumerator.MoveNext(); } public void Dispose(){ } void System.Collections.IEnumerator.Reset(){ enumerator.Reset(); } object System.Collections.IEnumerator.Current{ get{ return enumerator.Current; } } } public class HttpListenerPrefixCollection : ICollection { private HttpListener m_HttpListener; internal HttpListenerPrefixCollection(HttpListener listener) { m_HttpListener = listener; } public void CopyTo(Array array, int offset) { m_HttpListener.CheckDisposed(); if (Count>array.Length) { throw new ArgumentOutOfRangeException("array", SR.GetString(SR.net_array_too_small)); } if (offset+Count>array.Length) { throw new ArgumentOutOfRangeException("offset"); } int index = 0; foreach (string uriPrefix in m_HttpListener.m_UriPrefixes.Keys) { array.SetValue(uriPrefix, offset + index++); } } public void CopyTo(string[] array, int offset) { m_HttpListener.CheckDisposed(); if (Count>array.Length) { throw new ArgumentOutOfRangeException("array", SR.GetString(SR.net_array_too_small)); } if (offset+Count>array.Length) { throw new ArgumentOutOfRangeException("offset"); } int index = 0; foreach (string uriPrefix in m_HttpListener.m_UriPrefixes.Keys) { array[offset + index++] = uriPrefix; } } public int Count { get { return m_HttpListener.m_UriPrefixes.Count; } } public bool IsSynchronized { get { return false; } } public bool IsReadOnly { get { return false; } } public void Add(string uriPrefix) { m_HttpListener.AddPrefix(uriPrefix); } public bool Contains(string uriPrefix) { return m_HttpListener.m_UriPrefixes.Contains(uriPrefix); } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { return this.GetEnumerator(); } public IEnumerator GetEnumerator() { return new ListenerPrefixEnumerator(m_HttpListener.m_UriPrefixes.Keys.GetEnumerator()); } public bool Remove(string uriPrefix) { return m_HttpListener.RemovePrefix(uriPrefix); } public void Clear() { m_HttpListener.RemoveAll(true); } } } // 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
- BuilderElements.cs
- ProviderSettingsCollection.cs
- DataGridViewLinkCell.cs
- HttpRequest.cs
- XPathMultyIterator.cs
- Point3DValueSerializer.cs
- XmlArrayItemAttributes.cs
- ElementUtil.cs
- MetadataStore.cs
- ProfileSection.cs
- IndexedString.cs
- DeviceSpecificChoiceCollection.cs
- PersonalizableTypeEntry.cs
- ImpersonateTokenRef.cs
- ToolStripDropDownClosingEventArgs.cs
- MenuItemCollection.cs
- designeractionbehavior.cs
- DataViewManager.cs
- KeyValueConfigurationCollection.cs
- AppSettingsExpressionBuilder.cs
- XmlStringTable.cs
- SystemException.cs
- PointAnimationUsingKeyFrames.cs
- Utils.cs
- Pkcs9Attribute.cs
- ExpressionEvaluator.cs
- DocumentGrid.cs
- SchemaElementDecl.cs
- _FtpDataStream.cs
- SystemIPInterfaceProperties.cs
- Vector.cs
- _HelperAsyncResults.cs
- ListBoxItemWrapperAutomationPeer.cs
- RuleSetCollection.cs
- ClientSideQueueItem.cs
- Object.cs
- TemplateBaseAction.cs
- Fault.cs
- SafeLibraryHandle.cs
- ResumeStoryboard.cs
- CallbackWrapper.cs
- WSHttpSecurity.cs
- FrameAutomationPeer.cs
- CacheDependency.cs
- ValidationResult.cs
- DefaultParameterValueAttribute.cs
- RepeaterItemEventArgs.cs
- TableLayoutStyleCollection.cs
- Processor.cs
- ContextMenuStrip.cs
- DoubleLinkList.cs
- ProfilePropertyMetadata.cs
- EventHandlersStore.cs
- DataGridViewColumn.cs
- HighlightComponent.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- TimelineGroup.cs
- SqlTriggerContext.cs
- StylusTouchDevice.cs
- OneOfElement.cs
- PanelStyle.cs
- ObjectDataSourceStatusEventArgs.cs
- ReferenceAssemblyAttribute.cs
- FixedSOMTable.cs
- XmlILAnnotation.cs
- MediaPlayerState.cs
- ISAPIWorkerRequest.cs
- IdnElement.cs
- StreamWriter.cs
- GridViewSelectEventArgs.cs
- InputLanguageManager.cs
- TemplateNameScope.cs
- TextBlockAutomationPeer.cs
- SourceElementsCollection.cs
- Win32Native.cs
- ErrorFormatter.cs
- ExtensionMethods.cs
- SortKey.cs
- XmlSerializerFaultFormatter.cs
- AdCreatedEventArgs.cs
- DateTimeFormat.cs
- RC2CryptoServiceProvider.cs
- EditorPartChrome.cs
- EmptyTextWriter.cs
- FormViewDeletedEventArgs.cs
- CodeObjectCreateExpression.cs
- ConfigurationElementCollection.cs
- MultilineStringConverter.cs
- MasterPage.cs
- MouseActionConverter.cs
- GridViewActionList.cs
- InputElement.cs
- CryptoConfig.cs
- ImageButton.cs
- WindowPattern.cs
- ReadOnlyHierarchicalDataSourceView.cs
- ImageListStreamer.cs
- DynamicMethod.cs
- DbXmlEnabledProviderManifest.cs
- ProviderSettings.cs