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; ////// 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
- XmlWrappingWriter.cs
- CustomPopupPlacement.cs
- BuildProvidersCompiler.cs
- XmlSchemaSimpleContentExtension.cs
- LicenseProviderAttribute.cs
- ReadContentAsBinaryHelper.cs
- KeyFrames.cs
- RegexMatch.cs
- XmlElement.cs
- PeerChannelListener.cs
- StrongNamePublicKeyBlob.cs
- Material.cs
- SerializableTypeCodeDomSerializer.cs
- SByteConverter.cs
- DataGridRelationshipRow.cs
- CompilationPass2Task.cs
- WebRequestModulesSection.cs
- WindowsToolbarAsMenu.cs
- ModelProperty.cs
- HttpResponseInternalBase.cs
- ConsoleEntryPoint.cs
- DeobfuscatingStream.cs
- HtmlInputRadioButton.cs
- RichTextBox.cs
- CollectionEditVerbManager.cs
- SqlUtils.cs
- InstancePersistenceCommandException.cs
- ResXDataNode.cs
- MarkedHighlightComponent.cs
- DataGridHelper.cs
- TraceContext.cs
- BasicCellRelation.cs
- ModelUIElement3D.cs
- HttpException.cs
- ContentDesigner.cs
- RuleRefElement.cs
- SamlAdvice.cs
- ValidatorCompatibilityHelper.cs
- HiddenField.cs
- ContextItemManager.cs
- NetworkCredential.cs
- BitmapEffectCollection.cs
- Stackframe.cs
- PerfCounterSection.cs
- EventMappingSettingsCollection.cs
- SecurityPolicySection.cs
- UserPersonalizationStateInfo.cs
- FilterException.cs
- ProviderBase.cs
- QueryHandler.cs
- WindowsIdentity.cs
- RuntimeIdentifierPropertyAttribute.cs
- SqlDependency.cs
- Console.cs
- ListViewUpdateEventArgs.cs
- ServiceOperation.cs
- UpdateProgress.cs
- EntityModelSchemaGenerator.cs
- XmlElementElement.cs
- HScrollBar.cs
- Propagator.ExtentPlaceholderCreator.cs
- XPathDocumentIterator.cs
- basevalidator.cs
- TextDataBindingHandler.cs
- Baml2006Reader.cs
- DataGridViewAutoSizeModeEventArgs.cs
- WebCategoryAttribute.cs
- safex509handles.cs
- SimpleApplicationHost.cs
- Underline.cs
- CatalogPart.cs
- TreeNodeClickEventArgs.cs
- OLEDB_Util.cs
- HttpStreamXmlDictionaryWriter.cs
- ArgumentValueSerializer.cs
- SimpleFieldTemplateUserControl.cs
- DependencyStoreSurrogate.cs
- XhtmlBasicCommandAdapter.cs
- OlePropertyStructs.cs
- QueryAccessibilityHelpEvent.cs
- Msmq3PoisonHandler.cs
- ProviderException.cs
- AsyncDataRequest.cs
- ColorTranslator.cs
- ButtonFieldBase.cs
- RegexCode.cs
- Filter.cs
- XmlBinaryReaderSession.cs
- TraceLevelStore.cs
- ClientBuildManager.cs
- CacheVirtualItemsEvent.cs
- DbParameterCollectionHelper.cs
- SiblingIterators.cs
- EventsTab.cs
- SharedStatics.cs
- ItemCheckEvent.cs
- CounterSample.cs
- ListView.cs
- WindowsListViewGroup.cs
- Currency.cs