Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- AnimationClockResource.cs
- EncryptedData.cs
- DecimalConverter.cs
- MarshalDirectiveException.cs
- TraceHandlerErrorFormatter.cs
- EventLogPermissionEntry.cs
- IdentityHolder.cs
- ComboBoxRenderer.cs
- Update.cs
- OrderingExpression.cs
- mediaclock.cs
- TraceRecord.cs
- SectionUpdates.cs
- SQLSingle.cs
- CollectionsUtil.cs
- Int32Converter.cs
- ParameterToken.cs
- XmlSchemaDatatype.cs
- Vector3DConverter.cs
- SoapClientProtocol.cs
- MemberCollection.cs
- DataGrid.cs
- InputScopeManager.cs
- RequestNavigateEventArgs.cs
- OdbcErrorCollection.cs
- DiscriminatorMap.cs
- WebPartExportVerb.cs
- ToolstripProfessionalRenderer.cs
- MultipleViewProviderWrapper.cs
- ObjectDesignerDataSourceView.cs
- ClrPerspective.cs
- CodeDelegateCreateExpression.cs
- PeerObject.cs
- EmissiveMaterial.cs
- PiiTraceSource.cs
- MeasureItemEvent.cs
- Pair.cs
- NumericUpDownAcceleration.cs
- DocumentViewerBaseAutomationPeer.cs
- OleDbException.cs
- ByteRangeDownloader.cs
- RepeatButton.cs
- ScriptManager.cs
- UnsafeNativeMethods.cs
- DynamicValidatorEventArgs.cs
- FieldNameLookup.cs
- BackgroundWorker.cs
- Pkcs7Recipient.cs
- MetadataProperty.cs
- SamlAssertion.cs
- SchemaObjectWriter.cs
- CreateDataSourceDialog.cs
- DataGridViewRow.cs
- DataGridViewAddColumnDialog.cs
- TextTreeExtractElementUndoUnit.cs
- OdbcConnectionHandle.cs
- GenericUriParser.cs
- ActivityIdHeader.cs
- XmlIgnoreAttribute.cs
- SafeBitVector32.cs
- WebReference.cs
- DataSourceSelectArguments.cs
- QuaternionKeyFrameCollection.cs
- DrawingVisual.cs
- ConnectionStringsExpressionBuilder.cs
- RemoveFromCollection.cs
- InternalEnumValidatorAttribute.cs
- Int64Storage.cs
- LoginUtil.cs
- RestHandlerFactory.cs
- ParentQuery.cs
- RequestQueryProcessor.cs
- HotSpot.cs
- ExceptionUtil.cs
- ShapeTypeface.cs
- GroupBoxRenderer.cs
- ActivityExecutionFilter.cs
- CheckBoxList.cs
- TableAdapterManagerGenerator.cs
- OutgoingWebRequestContext.cs
- X509ServiceCertificateAuthenticationElement.cs
- WindowsTab.cs
- BasicCellRelation.cs
- SHA256.cs
- StrokeNodeOperations2.cs
- TextElementCollection.cs
- EntityDataSourceEntityTypeFilterConverter.cs
- SyndicationSerializer.cs
- ToolStripDropTargetManager.cs
- ConnectionsZone.cs
- FamilyCollection.cs
- MultiPageTextView.cs
- RunClient.cs
- XmlUtf8RawTextWriter.cs
- COM2PropertyPageUITypeConverter.cs
- KeyMatchBuilder.cs
- ConfigurationStrings.cs
- TreeNodeCollectionEditorDialog.cs
- KeyValuePair.cs
- WindowsStartMenu.cs