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
- DispatcherObject.cs
- SourceFilter.cs
- UpdateTracker.cs
- GeneralTransform3DTo2D.cs
- WaitHandle.cs
- ListItemParagraph.cs
- HtmlTableRow.cs
- AxisAngleRotation3D.cs
- Calendar.cs
- Graphics.cs
- RegexWorker.cs
- MsmqBindingFilter.cs
- AnimationClock.cs
- TemplatePartAttribute.cs
- TargetParameterCountException.cs
- RegexMatchCollection.cs
- PathFigureCollection.cs
- DateTimeUtil.cs
- ControllableStoryboardAction.cs
- HeaderCollection.cs
- BlockUIContainer.cs
- DoubleAverageAggregationOperator.cs
- StringSource.cs
- ComponentResourceKeyConverter.cs
- TypeSemantics.cs
- SqlDataReader.cs
- HttpCookiesSection.cs
- SafeNativeMethods.cs
- QuadraticBezierSegment.cs
- HMACSHA1.cs
- Overlapped.cs
- WorkflowPersistenceService.cs
- DateTimeConstantAttribute.cs
- SimpleBitVector32.cs
- ReflectTypeDescriptionProvider.cs
- ObjectConverter.cs
- SessionState.cs
- Message.cs
- RijndaelCryptoServiceProvider.cs
- SqlTransaction.cs
- BindingMAnagerBase.cs
- QuaternionAnimation.cs
- XPathNodePointer.cs
- AsymmetricSecurityProtocolFactory.cs
- SettingsPropertyWrongTypeException.cs
- StringConverter.cs
- WorkflowQueue.cs
- MouseWheelEventArgs.cs
- CollectionBuilder.cs
- ParserStack.cs
- SpellerStatusTable.cs
- TextBox.cs
- Shape.cs
- IncrementalCompileAnalyzer.cs
- XmlName.cs
- DbConnectionStringCommon.cs
- QueryOperationResponseOfT.cs
- InProcStateClientManager.cs
- Win32Native.cs
- ModelVisual3D.cs
- SqlDataSourceSelectingEventArgs.cs
- WorkflowOperationFault.cs
- ProfileService.cs
- ConcurrentBag.cs
- JournalEntry.cs
- Grammar.cs
- RegisteredHiddenField.cs
- webclient.cs
- RequiredAttributeAttribute.cs
- XmlSchemaCompilationSettings.cs
- ControlUtil.cs
- WindowsScrollBar.cs
- Style.cs
- RoutingUtilities.cs
- PersonalizableTypeEntry.cs
- loginstatus.cs
- PeerName.cs
- CodeTryCatchFinallyStatement.cs
- NativeCppClassAttribute.cs
- SafeTimerHandle.cs
- ContainerVisual.cs
- CustomPopupPlacement.cs
- DataTransferEventArgs.cs
- GeneralTransform3DTo2DTo3D.cs
- MexServiceChannelBuilder.cs
- PrintPreviewGraphics.cs
- FileDialogCustomPlacesCollection.cs
- _SpnDictionary.cs
- DbProviderConfigurationHandler.cs
- MatrixKeyFrameCollection.cs
- WebServiceClientProxyGenerator.cs
- Pen.cs
- TagPrefixCollection.cs
- RoleGroup.cs
- TreeChangeInfo.cs
- AllMembershipCondition.cs
- MultiView.cs
- Vector3DValueSerializer.cs
- SystemWebSectionGroup.cs
- DeclaredTypeElementCollection.cs