Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Monitoring / system / Diagnosticts / EventLogEntryCollection.cs / 1305376 / EventLogEntryCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Diagnostics { using System.Text; using System; using System.Collections; //Consider, V2, [....]: Is there a way to implement Contains //and IndexOf, can we live withouth this part of the ReadOnly //collection pattern? ////// public class EventLogEntryCollection : ICollection { private EventLogInternal log; internal EventLogEntryCollection(EventLogInternal log) { this.log = log; } ///[To be supplied.] ////// public int Count { get { return log.EntryCount; } } ////// Gets the number of entries in the event log /// ////// public virtual EventLogEntry this[int index] { get { return log.GetEntryAt(index); } } ////// Gets an entry in /// the event log, based on an index starting at 0. /// ////// public void CopyTo(EventLogEntry[] entries, int index) { ((ICollection)this).CopyTo((Array)entries, index); } ///[To be supplied.] ////// public IEnumerator GetEnumerator() { return new EntriesEnumerator(this); } internal EventLogEntry GetEntryAtNoThrow(int index) { return log.GetEntryAtNoThrow(index); } ///bool ICollection.IsSynchronized { get { return false; } } /// /// ICollection private interface implementation. /// ///object ICollection.SyncRoot { get { return this; } } /// /// ICollection private interface implementation. /// ///void ICollection.CopyTo(Array array, int index) { EventLogEntry[] entries = log.GetAllEntries(); Array.Copy(entries, 0, array, index, entries.Length); } /// /// private class EntriesEnumerator : IEnumerator { private EventLogEntryCollection entries; private int num = -1; private EventLogEntry cachedEntry = null; internal EntriesEnumerator(EventLogEntryCollection entries) { this.entries = entries; } ////// Holds an System.Diagnostics.EventLog.EventLogEntryCollection that /// consists of the entries in an event /// log. /// ////// public object Current { get { if (cachedEntry == null) throw new InvalidOperationException(SR.GetString(SR.NoCurrentEntry)); return cachedEntry; } } ////// Gets the entry at the current position. /// ////// public bool MoveNext() { num++; cachedEntry = entries.GetEntryAtNoThrow(num); return cachedEntry != null; } ////// Advances the enumerator to the next entry in the event log. /// ////// public void Reset() { num = -1; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Resets the state of the enumeration. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TimeoutValidationAttribute.cs
- ObjectIDGenerator.cs
- JoinTreeSlot.cs
- SafeViewOfFileHandle.cs
- ListViewEditEventArgs.cs
- ModelPropertyCollectionImpl.cs
- EncryptedPackageFilter.cs
- FrameDimension.cs
- StringPropertyBuilder.cs
- RtfToXamlLexer.cs
- ToolStripItemTextRenderEventArgs.cs
- GlyphingCache.cs
- SqlClientWrapperSmiStreamChars.cs
- SuppressMergeCheckAttribute.cs
- DefaultPropertyAttribute.cs
- XPathSingletonIterator.cs
- BatchStream.cs
- ParameterCollection.cs
- AuthorizationRuleCollection.cs
- RotateTransform.cs
- SchemaEntity.cs
- SoapFault.cs
- DataSet.cs
- SqlUtil.cs
- MasterPageCodeDomTreeGenerator.cs
- _Rfc2616CacheValidators.cs
- WmlValidatorAdapter.cs
- DesignerSerializationOptionsAttribute.cs
- cookiecollection.cs
- SqlCommand.cs
- ExpiredSecurityTokenException.cs
- InteropAutomationProvider.cs
- FormViewDeleteEventArgs.cs
- WpfKnownMemberInvoker.cs
- MethodBody.cs
- DateBoldEvent.cs
- XmlSchemaAppInfo.cs
- SocketException.cs
- MaskedTextBoxTextEditorDropDown.cs
- FixedTextView.cs
- DurableInstanceContextProvider.cs
- processwaithandle.cs
- StringFunctions.cs
- ConnectionManagementElementCollection.cs
- ConnectionsZoneDesigner.cs
- ScaleTransform.cs
- CodeMemberMethod.cs
- ExpressionEditorAttribute.cs
- GenericParameterDataContract.cs
- GlyphShapingProperties.cs
- SrgsSubset.cs
- MarshalByRefObject.cs
- GridViewRowEventArgs.cs
- HandleInitializationContext.cs
- InvokeProviderWrapper.cs
- GetPageCompletedEventArgs.cs
- DataRowChangeEvent.cs
- XsdCachingReader.cs
- WebSysDefaultValueAttribute.cs
- Ports.cs
- loginstatus.cs
- WSHttpBindingBaseElement.cs
- GeometryDrawing.cs
- SolidColorBrush.cs
- VisualTreeUtils.cs
- TypeDescriptorContext.cs
- HtmlControlDesigner.cs
- SHA256Managed.cs
- TreeNodeEventArgs.cs
- PatternMatchRules.cs
- StrokeCollection.cs
- FixedSOMPageElement.cs
- CaretElement.cs
- InternalUserCancelledException.cs
- HtmlInputCheckBox.cs
- JsonWriter.cs
- TlsnegoTokenAuthenticator.cs
- login.cs
- MaterialGroup.cs
- EdmItemCollection.OcAssemblyCache.cs
- SqlException.cs
- AmbientProperties.cs
- MimeImporter.cs
- DbConnectionStringBuilder.cs
- OleDbCommandBuilder.cs
- MaskPropertyEditor.cs
- ProfileGroupSettings.cs
- LineGeometry.cs
- RadioButtonAutomationPeer.cs
- _SingleItemRequestCache.cs
- CanonicalFontFamilyReference.cs
- SqlFacetAttribute.cs
- RtfControlWordInfo.cs
- DictionaryBase.cs
- FormattedText.cs
- BamlTreeUpdater.cs
- ZipArchive.cs
- VirtualPath.cs
- RenamedEventArgs.cs
- SignatureGenerator.cs