Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Monitoring / system / Diagnosticts / ProcessThreadCollection.cs / 1305376 / ProcessThreadCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Diagnostics { using System.Collections; using System; using System.IO; using System.ComponentModel; using System.Diagnostics; ////// public class ProcessThreadCollection : ReadOnlyCollectionBase { ///[To be supplied.] ////// protected ProcessThreadCollection() { } ///[To be supplied.] ////// public ProcessThreadCollection(ProcessThread[] processThreads) { InnerList.AddRange(processThreads); } ///[To be supplied.] ////// public ProcessThread this[int index] { get { return (ProcessThread)InnerList[index]; } } ///[To be supplied.] ////// public int Add(ProcessThread thread) { return InnerList.Add(thread); } ///[To be supplied.] ////// public void Insert(int index, ProcessThread thread) { InnerList.Insert(index, thread); } ///[To be supplied.] ////// public int IndexOf(ProcessThread thread) { return InnerList.IndexOf(thread); } ///[To be supplied.] ////// public bool Contains(ProcessThread thread) { return InnerList.Contains(thread); } ///[To be supplied.] ////// public void Remove(ProcessThread thread) { InnerList.Remove(thread); } ///[To be supplied.] ////// public void CopyTo(ProcessThread[] array, int index) { InnerList.CopyTo(array, index); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BeginEvent.cs
- DetailsViewInsertedEventArgs.cs
- PolyLineSegmentFigureLogic.cs
- SafeWaitHandle.cs
- MenuItem.cs
- CodeFieldReferenceExpression.cs
- sqlinternaltransaction.cs
- TextCollapsingProperties.cs
- WindowsAuthenticationModule.cs
- SqlParameter.cs
- OSEnvironmentHelper.cs
- PropertyTabAttribute.cs
- SmtpMail.cs
- HttpMethodAttribute.cs
- AmbiguousMatchException.cs
- ModelVisual3D.cs
- References.cs
- DataGridViewCellConverter.cs
- AncestorChangedEventArgs.cs
- ObjectDisposedException.cs
- SQLInt32.cs
- ManagementOptions.cs
- TimeoutException.cs
- AppDomainAttributes.cs
- XsdBuilder.cs
- TemplateEditingVerb.cs
- XmlSchemaParticle.cs
- MailDefinitionBodyFileNameEditor.cs
- PenThreadPool.cs
- SponsorHelper.cs
- cookiecontainer.cs
- SHA512Managed.cs
- ButtonField.cs
- ControlParameter.cs
- RegistryKey.cs
- ToolStripOverflow.cs
- Hyperlink.cs
- DbConnectionStringBuilder.cs
- Compiler.cs
- _ServiceNameStore.cs
- AlternateView.cs
- DynamicFilterExpression.cs
- MaskedTextBoxDesigner.cs
- ObjectCloneHelper.cs
- URLEditor.cs
- HandlerWithFactory.cs
- CopyOfAction.cs
- RoutedEventArgs.cs
- MoveSizeWinEventHandler.cs
- OrderedDictionary.cs
- WebPartConnectionsDisconnectVerb.cs
- DBSchemaRow.cs
- SQLGuidStorage.cs
- ScriptBehaviorDescriptor.cs
- HwndSourceKeyboardInputSite.cs
- MeshGeometry3D.cs
- HitTestParameters.cs
- Marshal.cs
- DurationConverter.cs
- NoClickablePointException.cs
- RightsManagementPermission.cs
- ButtonRenderer.cs
- VerifyHashRequest.cs
- MenuTracker.cs
- HiddenField.cs
- ConcatQueryOperator.cs
- EventRecord.cs
- RoleBoolean.cs
- WindowsListView.cs
- PropertyEmitterBase.cs
- Contracts.cs
- NetStream.cs
- MembershipValidatePasswordEventArgs.cs
- CompiledQueryCacheKey.cs
- ResourceDescriptionAttribute.cs
- DesignerVerbCollection.cs
- OleDbException.cs
- GPPOINT.cs
- ControlParameter.cs
- ObjectDataSourceStatusEventArgs.cs
- EdmValidator.cs
- CollectionView.cs
- Win32Native.cs
- ReflectionTypeLoadException.cs
- XmlDeclaration.cs
- ItemCollection.cs
- XmlSchemaValidator.cs
- SubstitutionList.cs
- MergeLocalizationDirectives.cs
- MergeEnumerator.cs
- MarkupCompilePass1.cs
- TabPage.cs
- IProducerConsumerCollection.cs
- StringDictionary.cs
- DBSchemaRow.cs
- DefaultParameterValueAttribute.cs
- XmlWriter.cs
- HttpRequest.cs
- SecurityHeader.cs
- DeflateEmulationStream.cs