Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Net / System / Net / HttpListenerPrefixCollection.cs / 1 / 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 null; } 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. //------------------------------------------------------------------------------ // // 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 null; } 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
- Size.cs
- CellCreator.cs
- TaskSchedulerException.cs
- ZoomPercentageConverter.cs
- ExceptionWrapper.cs
- XmlNodeChangedEventArgs.cs
- ButtonStandardAdapter.cs
- XpsFilter.cs
- CompositionTarget.cs
- RoutedEventArgs.cs
- Int32CollectionConverter.cs
- ViewUtilities.cs
- SessionPageStateSection.cs
- SelectionWordBreaker.cs
- DataControlImageButton.cs
- XsltSettings.cs
- TokenBasedSet.cs
- WebUtil.cs
- GlyphingCache.cs
- MarkupCompilePass2.cs
- OSFeature.cs
- BreakSafeBase.cs
- DefaultPrintController.cs
- Reference.cs
- SByte.cs
- SourceFileBuildProvider.cs
- DeclaredTypeValidatorAttribute.cs
- ResourceProperty.cs
- ToolBar.cs
- WindowsListViewGroup.cs
- MenuItemCollection.cs
- DBNull.cs
- HierarchicalDataBoundControlAdapter.cs
- DataGridViewCellConverter.cs
- EmitterCache.cs
- TypedDatasetGenerator.cs
- SelectionItemPattern.cs
- EditBehavior.cs
- Comparer.cs
- TimelineCollection.cs
- SessionStateSection.cs
- DescendantOverDescendantQuery.cs
- ApplicationContext.cs
- HwndHost.cs
- DataServiceExpressionVisitor.cs
- XPathAncestorIterator.cs
- HitTestWithPointDrawingContextWalker.cs
- UpdatePanelTrigger.cs
- TranslateTransform3D.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- MessageDecoder.cs
- ProfileServiceManager.cs
- FlatButtonAppearance.cs
- DocumentSchemaValidator.cs
- Table.cs
- M3DUtil.cs
- MatchNoneMessageFilter.cs
- DiagnosticTrace.cs
- DodSequenceMerge.cs
- PerformanceCounterPermission.cs
- ExpressionCopier.cs
- AuthorizationSection.cs
- DropShadowBitmapEffect.cs
- Size.cs
- NotifyParentPropertyAttribute.cs
- Transform3D.cs
- MarginsConverter.cs
- DiagnosticStrings.cs
- EllipseGeometry.cs
- InstanceOwnerException.cs
- BitStream.cs
- HttpWriter.cs
- querybuilder.cs
- GeometryGroup.cs
- ResXResourceWriter.cs
- WebReferenceCollection.cs
- TreeViewEvent.cs
- ClientBuildManagerTypeDescriptionProviderBridge.cs
- Visual.cs
- ProviderSettingsCollection.cs
- HuffmanTree.cs
- DispatcherExceptionEventArgs.cs
- StateManagedCollection.cs
- Comparer.cs
- DataProtectionSecurityStateEncoder.cs
- ApplyTemplatesAction.cs
- RouteTable.cs
- BitmapEffectGroup.cs
- COM2ColorConverter.cs
- SymmetricAlgorithm.cs
- Assembly.cs
- CacheAxisQuery.cs
- WindowsContainer.cs
- DataGridViewColumn.cs
- DbConnectionStringBuilder.cs
- _OverlappedAsyncResult.cs
- DesignerDataTable.cs
- StylusEventArgs.cs
- PolicyValidationException.cs
- LinkUtilities.cs