Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Monitoring / system / Diagnosticts / ProcessThreadCollection.cs / 1305376 / 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); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CacheChildrenQuery.cs
- DependencyPropertyHelper.cs
- EventSourceCreationData.cs
- SettingsAttributeDictionary.cs
- FormsAuthentication.cs
- ValueUnavailableException.cs
- KeyPullup.cs
- TextElementCollectionHelper.cs
- SqlProfileProvider.cs
- QilGenerator.cs
- QilTypeChecker.cs
- WpfWebRequestHelper.cs
- webbrowsersite.cs
- ScriptingJsonSerializationSection.cs
- BinaryExpression.cs
- PrinterUnitConvert.cs
- XsdBuildProvider.cs
- HostSecurityManager.cs
- SecurityTokenRequirement.cs
- ObjectSecurity.cs
- ProxyManager.cs
- SchemaEntity.cs
- ApplicationManager.cs
- WebControlsSection.cs
- MarkupCompiler.cs
- ReaderContextStackData.cs
- EnumMemberAttribute.cs
- PolicyLevel.cs
- RegisteredHiddenField.cs
- UnsafeNativeMethods.cs
- CharKeyFrameCollection.cs
- StructuredProperty.cs
- PackagePart.cs
- Typeface.cs
- Debugger.cs
- TextProviderWrapper.cs
- LeafCellTreeNode.cs
- ProtocolsSection.cs
- DataGridTableCollection.cs
- Visual3D.cs
- DeadCharTextComposition.cs
- ComplexTypeEmitter.cs
- ContentType.cs
- ViewGenResults.cs
- WebServiceData.cs
- DataGridViewSelectedColumnCollection.cs
- Keyboard.cs
- MenuAdapter.cs
- EmptyWithCancelationCheckWorkItem.cs
- Point3DAnimationUsingKeyFrames.cs
- CodeMemberField.cs
- XmlSchemaGroupRef.cs
- ISCIIEncoding.cs
- UserMapPath.cs
- SplitterCancelEvent.cs
- XmlNodeComparer.cs
- BrushConverter.cs
- ResourceDescriptionAttribute.cs
- ToolstripProfessionalRenderer.cs
- HtmlTernaryTree.cs
- HttpBufferlessInputStream.cs
- PrintEvent.cs
- HitTestDrawingContextWalker.cs
- CardSpaceException.cs
- SafeLibraryHandle.cs
- InteropBitmapSource.cs
- ParamArrayAttribute.cs
- DataPagerFieldCommandEventArgs.cs
- PostBackOptions.cs
- RoutedEventHandlerInfo.cs
- FlowLayoutPanel.cs
- RadioButton.cs
- OletxCommittableTransaction.cs
- Boolean.cs
- ModuleElement.cs
- XPathChildIterator.cs
- BaseEntityWrapper.cs
- PageWrapper.cs
- ColumnWidthChangingEvent.cs
- Serialization.cs
- StrongTypingException.cs
- SimpleFileLog.cs
- XmlSchemaAll.cs
- MethodAccessException.cs
- AndCondition.cs
- SerializationObjectManager.cs
- SwitchCase.cs
- DoubleCollection.cs
- MethodBuilder.cs
- NameSpaceExtractor.cs
- Int16.cs
- ProcessModelInfo.cs
- CodeMemberProperty.cs
- Char.cs
- VirtualPathData.cs
- OrderingQueryOperator.cs
- UIElementHelper.cs
- InvalidDataException.cs
- TypeUtil.cs
- Vector3D.cs