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;
///
/// [To be supplied.]
///
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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SqlPersonalizationProvider.cs
- CustomWebEventKey.cs
- DataStreams.cs
- ComponentEditorForm.cs
- WindowPattern.cs
- BrowserCapabilitiesCompiler.cs
- MeasurementDCInfo.cs
- MSAAWinEventWrap.cs
- Canvas.cs
- ConfigurationSectionGroupCollection.cs
- ExtentKey.cs
- SizeValueSerializer.cs
- ToolStripPanelRow.cs
- MSHTMLHostUtil.cs
- ModelFunctionTypeElement.cs
- TrustLevel.cs
- TableParaClient.cs
- TypeSystemHelpers.cs
- SourceFileBuildProvider.cs
- AbsoluteQuery.cs
- DataKeyArray.cs
- EmptyCollection.cs
- OleDbRowUpdatedEvent.cs
- EndPoint.cs
- Timer.cs
- InstanceView.cs
- SmtpAuthenticationManager.cs
- RepeaterItemEventArgs.cs
- Publisher.cs
- precedingsibling.cs
- FontNameEditor.cs
- UInt16.cs
- RoutedEventConverter.cs
- InvalidWMPVersionException.cs
- ConfigXmlAttribute.cs
- SecurityTokenParametersEnumerable.cs
- ValueProviderWrapper.cs
- DockEditor.cs
- MruCache.cs
- SupportingTokenListenerFactory.cs
- StylusCollection.cs
- RelationshipDetailsCollection.cs
- MimeMultiPart.cs
- SelectionEditingBehavior.cs
- TypeCacheManager.cs
- BooleanExpr.cs
- PropertyStore.cs
- StandardOleMarshalObject.cs
- BaseParaClient.cs
- EventLogWatcher.cs
- MILUtilities.cs
- Typography.cs
- XmlDeclaration.cs
- CodeMemberField.cs
- EmptyStringExpandableObjectConverter.cs
- UshortList2.cs
- Suspend.cs
- NameValueConfigurationCollection.cs
- TypeBuilderInstantiation.cs
- MethodBuilderInstantiation.cs
- CaseInsensitiveComparer.cs
- AsnEncodedData.cs
- CodeIdentifier.cs
- TextServicesCompartmentContext.cs
- WriteableBitmap.cs
- StoreItemCollection.Loader.cs
- manifestimages.cs
- PriorityBindingExpression.cs
- NavigatingCancelEventArgs.cs
- SecurityDocument.cs
- TextDpi.cs
- ThreadPool.cs
- WSTransactionSection.cs
- SqlDependencyListener.cs
- ConnectionPoint.cs
- HttpCachePolicy.cs
- FileClassifier.cs
- EventLogPermissionAttribute.cs
- Gdiplus.cs
- JsonStringDataContract.cs
- XamlBrushSerializer.cs
- MulticastDelegate.cs
- ProtectedConfigurationSection.cs
- Event.cs
- ServiceDeploymentInfo.cs
- XmlSchemaInclude.cs
- ProcessModelSection.cs
- TextBreakpoint.cs
- XDeferredAxisSource.cs
- EventLogPropertySelector.cs
- XmlRawWriter.cs
- Pkcs7Recipient.cs
- PolicyException.cs
- Int64Storage.cs
- ProgressiveCrcCalculatingStream.cs
- EntityProviderServices.cs
- COAUTHINFO.cs
- InternalsVisibleToAttribute.cs
- SqlTriggerContext.cs
- EdmFunction.cs