Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Services / Monitoring / system / Diagnosticts / ProcessThreadCollection.cs / 1 / 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);
}
}
}
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RegexRunnerFactory.cs
- Avt.cs
- DesignerLoader.cs
- XmlTextReader.cs
- AnimatedTypeHelpers.cs
- XPathEmptyIterator.cs
- JsonClassDataContract.cs
- TextEncodedRawTextWriter.cs
- AccessibilityApplicationManager.cs
- ExceptionUtility.cs
- SetStateEventArgs.cs
- VarRefManager.cs
- SplashScreenNativeMethods.cs
- RecognizeCompletedEventArgs.cs
- _Win32.cs
- Wildcard.cs
- LateBoundBitmapDecoder.cs
- TypeUtil.cs
- RijndaelManaged.cs
- FlowDocumentPageViewerAutomationPeer.cs
- PtsHelper.cs
- PathParser.cs
- ErrorStyle.cs
- WorkflowHostingResponseContext.cs
- Decorator.cs
- XmlElement.cs
- HorizontalAlignConverter.cs
- DictionaryManager.cs
- RelatedEnd.cs
- Model3D.cs
- filewebresponse.cs
- LinkArea.cs
- _FtpDataStream.cs
- MaterialCollection.cs
- ControlParameter.cs
- CombinedGeometry.cs
- webclient.cs
- CalendarDesigner.cs
- Mutex.cs
- DateTimeStorage.cs
- CatalogZone.cs
- ObjectDataSourceFilteringEventArgs.cs
- WindowsSspiNegotiation.cs
- RootProfilePropertySettingsCollection.cs
- ReadOnlyKeyedCollection.cs
- GridViewAutoFormat.cs
- RepeaterDesigner.cs
- CheckedPointers.cs
- PermissionSet.cs
- SessionState.cs
- OleCmdHelper.cs
- MulticastDelegate.cs
- TextTreeNode.cs
- GeneralTransform.cs
- RowParagraph.cs
- KeyTimeConverter.cs
- HttpPostedFile.cs
- externdll.cs
- Selection.cs
- WebReferencesBuildProvider.cs
- DataTableMappingCollection.cs
- WindowsRegion.cs
- SafeHandle.cs
- DeploymentSectionCache.cs
- ECDsa.cs
- FunctionMappingTranslator.cs
- MemoryStream.cs
- ItemCheckEvent.cs
- ColorInterpolationModeValidation.cs
- XmlSchemaInclude.cs
- HtmlImage.cs
- FlowLayout.cs
- SchemaObjectWriter.cs
- PropertyExpression.cs
- XmlUtil.cs
- EntitySet.cs
- ChangePassword.cs
- CachedTypeface.cs
- SplineQuaternionKeyFrame.cs
- XComponentModel.cs
- FileNotFoundException.cs
- RichTextBox.cs
- DeploymentSectionCache.cs
- DbDataSourceEnumerator.cs
- ContainerUIElement3D.cs
- PointConverter.cs
- SafeLibraryHandle.cs
- WindowsSlider.cs
- LocatorPartList.cs
- IPCCacheManager.cs
- UrlMappingCollection.cs
- Focus.cs
- KeyInterop.cs
- FindSimilarActivitiesVerb.cs
- SystemNetHelpers.cs
- XamlVector3DCollectionSerializer.cs
- ToolBarButton.cs
- PostBackTrigger.cs
- PrePrepareMethodAttribute.cs
- OdbcDataReader.cs