Code:
/ FX-1434 / FX-1434 / 1.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; ////// 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); } } }[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Token.cs
- XmlDataProvider.cs
- DataListItem.cs
- FillErrorEventArgs.cs
- DispatcherSynchronizationContext.cs
- SafeCertificateContext.cs
- InheritablePropertyChangeInfo.cs
- CollaborationHelperFunctions.cs
- ControlBuilderAttribute.cs
- XmlCompatibilityReader.cs
- CodeStatementCollection.cs
- ObjectDesignerDataSourceView.cs
- SchemaImporterExtensionElement.cs
- Calendar.cs
- StylusLogic.cs
- BoundPropertyEntry.cs
- ExtendedProperty.cs
- SimpleTypeResolver.cs
- WinFormsSecurity.cs
- CaseInsensitiveOrdinalStringComparer.cs
- ContextQuery.cs
- XmlRootAttribute.cs
- FolderLevelBuildProviderAppliesToAttribute.cs
- InternalConfigSettingsFactory.cs
- _ConnectOverlappedAsyncResult.cs
- EncryptedReference.cs
- SystemException.cs
- DataServiceProcessingPipeline.cs
- SiteMap.cs
- VectorKeyFrameCollection.cs
- FontConverter.cs
- SemanticResultValue.cs
- ListBoxItemWrapperAutomationPeer.cs
- GroupPartitionExpr.cs
- DbMetaDataFactory.cs
- NullRuntimeConfig.cs
- SiteMapNodeItemEventArgs.cs
- RuntimeHandles.cs
- RuleInfoComparer.cs
- DataTableTypeConverter.cs
- MatrixUtil.cs
- MenuAutoFormat.cs
- InternalBase.cs
- OperationPickerDialog.cs
- ClrProviderManifest.cs
- XmlDocument.cs
- Zone.cs
- ExpressionVisitorHelpers.cs
- NetworkInterface.cs
- ValueExpressions.cs
- EditCommandColumn.cs
- DesignTimeParseData.cs
- DriveInfo.cs
- TaskFormBase.cs
- SoapServerProtocol.cs
- DbDataAdapter.cs
- EventSinkActivity.cs
- StylusOverProperty.cs
- PartialCachingControl.cs
- PartialList.cs
- ObjectContext.cs
- XmlDataSourceView.cs
- CompositeFontFamily.cs
- ResourceProviderFactory.cs
- DateBoldEvent.cs
- RightNameExpirationInfoPair.cs
- LayoutUtils.cs
- WCFBuildProvider.cs
- CompensationDesigner.cs
- DataRowView.cs
- DetailsView.cs
- SafeCloseHandleCritical.cs
- DataSet.cs
- CroppedBitmap.cs
- RSAOAEPKeyExchangeFormatter.cs
- IteratorFilter.cs
- EntityDataSourceState.cs
- DES.cs
- PersonalizationProviderHelper.cs
- TagNameToTypeMapper.cs
- BCLDebug.cs
- Soap.cs
- SortAction.cs
- SerialPort.cs
- validationstate.cs
- EventHandlerList.cs
- RenderCapability.cs
- LicenseProviderAttribute.cs
- UpDownBaseDesigner.cs
- LogicalTreeHelper.cs
- DialogWindow.cs
- RelationshipEndMember.cs
- CodeIterationStatement.cs
- OleCmdHelper.cs
- AuthenticatingEventArgs.cs
- TextTreeUndoUnit.cs
- String.cs
- ComPlusSynchronizationContext.cs
- ExpressionVisitor.cs
- ProfilePropertyNameValidator.cs