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
- SchemaComplexType.cs
- base64Transforms.cs
- RelatedImageListAttribute.cs
- CanExpandCollapseAllConverter.cs
- CodeDefaultValueExpression.cs
- ElementMarkupObject.cs
- HttpProfileBase.cs
- ByteStack.cs
- WindowsTokenRoleProvider.cs
- KeyValueConfigurationElement.cs
- ExceptQueryOperator.cs
- XDRSchema.cs
- Parameter.cs
- OleDbReferenceCollection.cs
- GcSettings.cs
- TableProviderWrapper.cs
- TransformValueSerializer.cs
- DecimalConverter.cs
- PrivacyNoticeBindingElementImporter.cs
- Button.cs
- ClientScriptManager.cs
- RelatedPropertyManager.cs
- SByteConverter.cs
- ProviderCommandInfoUtils.cs
- QilVisitor.cs
- sortedlist.cs
- SortFieldComparer.cs
- FontDifferentiator.cs
- SqlInternalConnectionSmi.cs
- MenuItemCollection.cs
- RSAOAEPKeyExchangeDeformatter.cs
- BindingCollection.cs
- SqlSelectStatement.cs
- Effect.cs
- Parameter.cs
- SByteConverter.cs
- MSG.cs
- SafeRegistryHandle.cs
- CharConverter.cs
- AutoResetEvent.cs
- AstTree.cs
- IUnknownConstantAttribute.cs
- SmiXetterAccessMap.cs
- ScrollChangedEventArgs.cs
- CorrelationHandle.cs
- TimelineGroup.cs
- Compensate.cs
- GridItemProviderWrapper.cs
- PerfCounterSection.cs
- templategroup.cs
- Clock.cs
- SoapHeader.cs
- PathParser.cs
- EntityDataSourceChangingEventArgs.cs
- XPathNode.cs
- ObjectAnimationUsingKeyFrames.cs
- IdleTimeoutMonitor.cs
- URLMembershipCondition.cs
- EnlistmentState.cs
- WebPartRestoreVerb.cs
- DataSourceProvider.cs
- ObjectStateFormatter.cs
- ReceiveMessageAndVerifySecurityAsyncResultBase.cs
- PhonemeConverter.cs
- OdbcTransaction.cs
- BindingMAnagerBase.cs
- XmlSerializationGeneratedCode.cs
- TreeNodeCollection.cs
- HttpCachePolicyElement.cs
- TabControlEvent.cs
- DataGridItem.cs
- PolicyException.cs
- MultiView.cs
- HtmlInputPassword.cs
- DecoderNLS.cs
- TextUtf8RawTextWriter.cs
- OdbcCommand.cs
- MenuItemStyleCollection.cs
- AVElementHelper.cs
- JapaneseCalendar.cs
- StdValidatorsAndConverters.cs
- QilLiteral.cs
- Set.cs
- HyperLink.cs
- PhysicalFontFamily.cs
- MoveSizeWinEventHandler.cs
- InvalidWMPVersionException.cs
- LayoutTableCell.cs
- Schema.cs
- TableChangeProcessor.cs
- SafeArrayTypeMismatchException.cs
- DataServiceQueryContinuation.cs
- UIElement.cs
- ExpandableObjectConverter.cs
- DialogDivider.cs
- BaseDataBoundControl.cs
- ContainerUIElement3D.cs
- ZipQueryOperator.cs
- FileChangeNotifier.cs
- FixedSOMContainer.cs