mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-10 13:44:22 +00:00
EXPERIMENTAL: Packages update [1/2] #514
This commit is contained in:
0
packages/System.Diagnostics.Process.4.3.0/ref/MonoAndroid10/_._
vendored
Normal file
0
packages/System.Diagnostics.Process.4.3.0/ref/MonoAndroid10/_._
vendored
Normal file
0
packages/System.Diagnostics.Process.4.3.0/ref/MonoTouch10/_._
vendored
Normal file
0
packages/System.Diagnostics.Process.4.3.0/ref/MonoTouch10/_._
vendored
Normal file
BIN
packages/System.Diagnostics.Process.4.3.0/ref/net46/System.Diagnostics.Process.dll
vendored
Normal file
BIN
packages/System.Diagnostics.Process.4.3.0/ref/net46/System.Diagnostics.Process.dll
vendored
Normal file
Binary file not shown.
BIN
packages/System.Diagnostics.Process.4.3.0/ref/net461/System.Diagnostics.Process.dll
vendored
Normal file
BIN
packages/System.Diagnostics.Process.4.3.0/ref/net461/System.Diagnostics.Process.dll
vendored
Normal file
Binary file not shown.
BIN
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/System.Diagnostics.Process.dll
vendored
Normal file
BIN
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/System.Diagnostics.Process.dll
vendored
Normal file
Binary file not shown.
977
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/System.Diagnostics.Process.xml
vendored
Normal file
977
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/System.Diagnostics.Process.xml
vendored
Normal file
@@ -0,0 +1,977 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Diagnostics.Process</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Win32.SafeHandles.SafeProcessHandle">
|
||||
<summary>[SECURITY CRITICAL] Provides a managed wrapper for a process handle.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)">
|
||||
<summary>[SECURITY CRITICAL] Initializes a new instance of the <see cref="T:Microsoft.Win32.SafeHandles.SafeProcessHandle" /> class from the specified handle, indicating whether to release the handle during the finalization phase. </summary>
|
||||
<param name="existingHandle">The handle to be wrapped.</param>
|
||||
<param name="ownsHandle">true to reliably let <see cref="T:Microsoft.Win32.SafeHandles.SafeProcessHandle" /> release the handle during the finalization phase; otherwise, false.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid"></member>
|
||||
<member name="T:System.Diagnostics.DataReceivedEventArgs">
|
||||
<summary>Provides data for the <see cref="E:System.Diagnostics.Process.OutputDataReceived" /> and <see cref="E:System.Diagnostics.Process.ErrorDataReceived" /> events.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.DataReceivedEventArgs.Data">
|
||||
<summary>Gets the line of characters that was written to a redirected <see cref="T:System.Diagnostics.Process" /> output stream.</summary>
|
||||
<returns>The line that was written by an associated <see cref="T:System.Diagnostics.Process" /> to its redirected <see cref="P:System.Diagnostics.Process.StandardOutput" /> or <see cref="P:System.Diagnostics.Process.StandardError" /> stream.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.DataReceivedEventHandler">
|
||||
<summary>Represents the method that will handle the <see cref="E:System.Diagnostics.Process.OutputDataReceived" /> event or <see cref="E:System.Diagnostics.Process.ErrorDataReceived" /> event of a <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<param name="sender">The source of the event. </param>
|
||||
<param name="e">A <see cref="T:System.Diagnostics.DataReceivedEventArgs" /> that contains the event data. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.Process">
|
||||
<summary>Provides access to local and remote processes and enables you to start and stop local system processes.To browse the .NET Framework source code for this type, see the Reference Source.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Process" /> class.</summary>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.BasePriority">
|
||||
<summary>Gets the base priority of the associated process.</summary>
|
||||
<returns>The base priority, which is computed from the <see cref="P:System.Diagnostics.Process.PriorityClass" /> of the associated process.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has exited.-or- The process has not started, so there is no process ID. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.BeginErrorReadLine">
|
||||
<summary>Begins asynchronous read operations on the redirected <see cref="P:System.Diagnostics.Process.StandardError" /> stream of the application.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref="P:System.Diagnostics.Process.StandardError" /> stream.- or - The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has been used by a synchronous read operation. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.BeginOutputReadLine">
|
||||
<summary>Begins asynchronous read operations on the redirected <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream of the application.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream.- or - The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has been used by a synchronous read operation. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.CancelErrorRead">
|
||||
<summary>Cancels the asynchronous read operation on the redirected <see cref="P:System.Diagnostics.Process.StandardError" /> stream of an application.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardError" /> stream is not enabled for asynchronous read operations. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.CancelOutputRead">
|
||||
<summary>Cancels the asynchronous read operation on the redirected <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream of an application.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream is not enabled for asynchronous read operations. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Dispose"></member>
|
||||
<member name="M:System.Diagnostics.Process.Dispose(System.Boolean)">
|
||||
<summary>Release all resources used by this process.</summary>
|
||||
<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.EnableRaisingEvents">
|
||||
<summary>Gets or sets whether the <see cref="E:System.Diagnostics.Process.Exited" /> event should be raised when the process terminates.</summary>
|
||||
<returns>true if the <see cref="E:System.Diagnostics.Process.Exited" /> event should be raised when the associated process is terminated (through either an exit or a call to <see cref="M:System.Diagnostics.Process.Kill" />); otherwise, false. The default is false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.EnterDebugMode">
|
||||
<summary>Puts a <see cref="T:System.Diagnostics.Process" /> component in state to interact with operating system processes that run in a special mode by enabling the native property SeDebugPrivilege on the current thread.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.ErrorDataReceived">
|
||||
<summary>Occurs when an application writes to its redirected <see cref="P:System.Diagnostics.Process.StandardError" /> stream.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ExitCode">
|
||||
<summary>Gets the value that the associated process specified when it terminated.</summary>
|
||||
<returns>The code that the associated process specified when it terminated.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process has not exited.-or- The process <see cref="P:System.Diagnostics.Process.Handle" /> is not valid. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.ExitCode" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.Exited">
|
||||
<summary>Occurs when a process exits.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ExitTime">
|
||||
<summary>Gets the time that the associated process exited.</summary>
|
||||
<returns>A <see cref="T:System.DateTime" /> that indicates when the associated process was terminated.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.ExitTime" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetCurrentProcess">
|
||||
<summary>Gets a new <see cref="T:System.Diagnostics.Process" /> component and associates it with the currently active process.</summary>
|
||||
<returns>A new <see cref="T:System.Diagnostics.Process" /> component associated with the process resource that is running the calling application.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessById(System.Int32)">
|
||||
<summary>Returns a new <see cref="T:System.Diagnostics.Process" /> component, given the identifier of a process on the local computer.</summary>
|
||||
<returns>A <see cref="T:System.Diagnostics.Process" /> component that is associated with the local process resource identified by the <paramref name="processId" /> parameter.</returns>
|
||||
<param name="processId">The system-unique identifier of a process resource. </param>
|
||||
<exception cref="T:System.ArgumentException">The process specified by the <paramref name="processId" /> parameter is not running. The identifier might be expired. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process was not started by this object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)">
|
||||
<summary>Returns a new <see cref="T:System.Diagnostics.Process" /> component, given a process identifier and the name of a computer on the network.</summary>
|
||||
<returns>A <see cref="T:System.Diagnostics.Process" /> component that is associated with a remote process resource identified by the <paramref name="processId" /> parameter.</returns>
|
||||
<param name="processId">The system-unique identifier of a process resource. </param>
|
||||
<param name="machineName">The name of a computer on the network. </param>
|
||||
<exception cref="T:System.ArgumentException">The process specified by the <paramref name="processId" /> parameter is not running. The identifier might be expired.-or- The <paramref name="machineName" /> parameter syntax is invalid. The name might have length zero (0). </exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process was not started by this object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcesses">
|
||||
<summary>Creates a new <see cref="T:System.Diagnostics.Process" /> component for each process resource on the local computer.</summary>
|
||||
<returns>An array of type <see cref="T:System.Diagnostics.Process" /> that represents all the process resources running on the local computer.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcesses(System.String)">
|
||||
<summary>Creates a new <see cref="T:System.Diagnostics.Process" /> component for each process resource on the specified computer.</summary>
|
||||
<returns>An array of type <see cref="T:System.Diagnostics.Process" /> that represents all the process resources running on the specified computer.</returns>
|
||||
<param name="machineName">The computer from which to read the list of processes. </param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="machineName" /> parameter syntax is invalid. It might have length zero (0). </exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The operating system platform does not support this operation on remote computers. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information. This exception is specific to Windows NT, Windows 2000, and Windows XP. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A problem occurred accessing an underlying system API. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessesByName(System.String)">
|
||||
<summary>Creates an array of new <see cref="T:System.Diagnostics.Process" /> components and associates them with all the process resources on the local computer that share the specified process name.</summary>
|
||||
<returns>An array of type <see cref="T:System.Diagnostics.Process" /> that represents the process resources running the specified application or file.</returns>
|
||||
<param name="processName">The friendly name of the process. </param>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information. This exception is specific to Windows NT, Windows 2000, and Windows XP. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)">
|
||||
<summary>Creates an array of new <see cref="T:System.Diagnostics.Process" /> components and associates them with all the process resources on a remote computer that share the specified process name.</summary>
|
||||
<returns>An array of type <see cref="T:System.Diagnostics.Process" /> that represents the process resources running the specified application or file.</returns>
|
||||
<param name="processName">The friendly name of the process. </param>
|
||||
<param name="machineName">The name of a computer on the network. </param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="machineName" /> parameter syntax is invalid. It might have length zero (0). </exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The operating system platform does not support this operation on remote computers. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information. This exception is specific to Windows NT, Windows 2000, and Windows XP. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A problem occurred accessing an underlying system API. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.HasExited">
|
||||
<summary>Gets a value indicating whether the associated process has been terminated.</summary>
|
||||
<returns>true if the operating system process referenced by the <see cref="T:System.Diagnostics.Process" /> component has terminated; otherwise, false.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with the object. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The exit code for the process could not be retrieved. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.HasExited" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Id">
|
||||
<summary>Gets the unique identifier for the associated process.</summary>
|
||||
<returns>The system-generated unique identifier of the process that is referenced by this <see cref="T:System.Diagnostics.Process" /> instance.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process's <see cref="P:System.Diagnostics.Process.Id" /> property has not been set.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Kill">
|
||||
<summary>Immediately stops the associated process.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to call <see cref="M:System.Diagnostics.Process.Kill" /> for a process that is running on a remote computer. The method is available only for processes running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has already exited. -or-There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.LeaveDebugMode">
|
||||
<summary>Takes a <see cref="T:System.Diagnostics.Process" /> component out of the state that lets it interact with operating system processes that run in a special mode.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MachineName">
|
||||
<summary>Gets the name of the computer the associated process is running on.</summary>
|
||||
<returns>The name of the computer that the associated process is running on.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MainModule">
|
||||
<summary>Gets the main module for the associated process.</summary>
|
||||
<returns>The <see cref="T:System.Diagnostics.ProcessModule" /> that was used to start the process.</returns>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MainModule" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A 32-bit process is trying to access the modules of a 64-bit process.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MaxWorkingSet">
|
||||
<summary>Gets or sets the maximum allowable working set size for the associated process.</summary>
|
||||
<returns>The maximum working set size that is allowed in memory for the process, in bytes.</returns>
|
||||
<exception cref="T:System.ArgumentException">The maximum working set size is invalid. It must be greater than or equal to the minimum working set size.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MaxWorkingSet" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MinWorkingSet">
|
||||
<summary>Gets or sets the minimum allowable working set size for the associated process.</summary>
|
||||
<returns>The minimum working set size that is required in memory for the process, in bytes.</returns>
|
||||
<exception cref="T:System.ArgumentException">The minimum working set size is invalid. It must be less than or equal to the maximum working set size.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MinWorkingSet" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Modules">
|
||||
<summary>Gets the modules that have been loaded by the associated process.</summary>
|
||||
<returns>An array of type <see cref="T:System.Diagnostics.ProcessModule" /> that represents the modules that have been loaded by the associated process.</returns>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.Modules" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">You are attempting to access the <see cref="P:System.Diagnostics.Process.Modules" /> property for either the system process or the idle process. These processes do not have modules.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.NonpagedSystemMemorySize64">
|
||||
<summary>Gets the amount of nonpaged system memory allocated for the associated process.</summary>
|
||||
<returns>The amount of system memory, in bytes, allocated for the associated process that cannot be written to the virtual memory paging file.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.OnExited">
|
||||
<summary>Raises the <see cref="E:System.Diagnostics.Process.Exited" /> event.</summary>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.OutputDataReceived">
|
||||
<summary>Occurs each time an application writes a line to its redirected <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PagedMemorySize64">
|
||||
<summary>Gets the amount of paged memory allocated for the associated process.</summary>
|
||||
<returns>The amount of memory, in bytes, allocated in the virtual memory paging file for the associated process.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PagedSystemMemorySize64">
|
||||
<summary>Gets the amount of pageable system memory allocated for the associated process.</summary>
|
||||
<returns>The amount of system memory, in bytes, allocated for the associated process that can be written to the virtual memory paging file.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakPagedMemorySize64">
|
||||
<summary>Gets the maximum amount of memory in the virtual memory paging file used by the associated process.</summary>
|
||||
<returns>The maximum amount of memory, in bytes, allocated in the virtual memory paging file for the associated process since it was started.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakVirtualMemorySize64">
|
||||
<summary>Gets the maximum amount of virtual memory used by the associated process.</summary>
|
||||
<returns>The maximum amount of virtual memory, in bytes, allocated for the associated process since it was started.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakWorkingSet64">
|
||||
<summary>Gets the maximum amount of physical memory used by the associated process.</summary>
|
||||
<returns>The maximum amount of physical memory, in bytes, allocated for the associated process since it was started.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PriorityBoostEnabled">
|
||||
<summary>Gets or sets a value indicating whether the associated process priority should temporarily be boosted by the operating system when the main window has the focus.</summary>
|
||||
<returns>true if dynamic boosting of the process priority should take place for a process when it is taken out of the wait state; otherwise, false. The default is false.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Priority boost information could not be retrieved from the associated process resource. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero. (The process has not been started.) </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PriorityBoostEnabled" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PriorityClass">
|
||||
<summary>Gets or sets the overall priority category for the associated process.</summary>
|
||||
<returns>The priority category for the associated process, from which the <see cref="P:System.Diagnostics.Process.BasePriority" /> of the process is calculated.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero. (The process has not been started.) </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PriorityClass" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">You have set the <see cref="P:System.Diagnostics.Process.PriorityClass" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me). These platforms do not support those values for the priority class. </exception>
|
||||
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">Priority class cannot be set because it does not use a valid value, as defined in the <see cref="T:System.Diagnostics.ProcessPriorityClass" /> enumeration.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PrivateMemorySize64">
|
||||
<summary>Gets the amount of private memory allocated for the associated process.</summary>
|
||||
<returns>The amount of memory, in bytes, allocated for the associated process that cannot be shared with other processes.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PrivilegedProcessorTime">
|
||||
<summary>Gets the privileged processor time for this process.</summary>
|
||||
<returns>A <see cref="T:System.TimeSpan" /> that indicates the amount of time that the process has spent running code inside the operating system core.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PrivilegedProcessorTime" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ProcessName">
|
||||
<summary>Gets the name of the process.</summary>
|
||||
<returns>The name that the system uses to identify the process to the user.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process does not have an identifier, or no process is associated with the <see cref="T:System.Diagnostics.Process" />.-or- The associated process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is not on this computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ProcessorAffinity">
|
||||
<summary>Gets or sets the processors on which the threads in this process can be scheduled to run.</summary>
|
||||
<returns>A bitmask representing the processors that the threads in the associated process can run on. The default depends on the number of processors on the computer. The default value is 2 n -1, where n is the number of processors.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<see cref="P:System.Diagnostics.Process.ProcessorAffinity" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero. (The process has not been started.) </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.ProcessorAffinity" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> was not available.-or- The process has exited. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Refresh">
|
||||
<summary>Discards any information about the associated process that has been cached inside the process component.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.SafeHandle">
|
||||
<summary>Gets the native handle to this process.</summary>
|
||||
<returns>The native handle to this process.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.SessionId">
|
||||
<summary>Gets the Terminal Services session identifier for the associated process.</summary>
|
||||
<returns>The Terminal Services session identifier for the associated process.</returns>
|
||||
<exception cref="T:System.NullReferenceException">There is no session associated with this process.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The <see cref="P:System.Diagnostics.Process.SessionId" /> property is not supported on Windows 98.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardError">
|
||||
<summary>Gets a stream used to read the error output of the application.</summary>
|
||||
<returns>A <see cref="T:System.IO.StreamReader" /> that can be used to read the standard error stream of the application.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has not been defined for redirection; ensure <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> is set to true and <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is set to false.- or - The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has been opened for asynchronous read operations with <see cref="M:System.Diagnostics.Process.BeginErrorReadLine" />. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardInput">
|
||||
<summary>Gets a stream used to write the input of the application.</summary>
|
||||
<returns>A <see cref="T:System.IO.StreamWriter" /> that can be used to write the standard input stream of the application.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardInput" /> stream has not been defined because <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" /> is set to false. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardOutput">
|
||||
<summary>Gets a stream used to read the textual output of the application.</summary>
|
||||
<returns>A <see cref="T:System.IO.StreamReader" /> that can be used to read the standard output stream of the application.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has not been defined for redirection; ensure <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" /> is set to true and <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is set to false.- or - The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has been opened for asynchronous read operations with <see cref="M:System.Diagnostics.Process.BeginOutputReadLine" />. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start">
|
||||
<summary>Starts (or reuses) the process resource that is specified by the <see cref="P:System.Diagnostics.Process.StartInfo" /> property of this <see cref="T:System.Diagnostics.Process" /> component and associates it with the component.</summary>
|
||||
<returns>true if a process resource is started; false if no new process resource is started (for example, if an existing process is reused).</returns>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified in the <see cref="T:System.Diagnostics.Process" /> component's <see cref="P:System.Diagnostics.Process.StartInfo" />.-or- The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> member of the <see cref="P:System.Diagnostics.Process.StartInfo" /> property is true while <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" />, <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" />, or <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> is true. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">There was an error in opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)">
|
||||
<summary>Starts the process resource that is specified by the parameter containing process start information (for example, the file name of the process to start) and associates the resource with a new <see cref="T:System.Diagnostics.Process" /> component.</summary>
|
||||
<returns>A new <see cref="T:System.Diagnostics.Process" /> that is associated with the process resource, or null if no process resource is started. Note that a new process that’s started alongside already running instances of the same process will be independent from the others. In addition, Start may return a non-null Process with its <see cref="T:System.Diagnostics.ProcessHasExited" /> property already set to true. In this case, the started process may have activated an existing instance of itself and then exited.</returns>
|
||||
<param name="startInfo">The <see cref="T:System.Diagnostics.ProcessStartInfo" /> that contains the information that is used to start the process, including the file name and any command-line arguments. </param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified in the <paramref name="startInfo" /> parameter's <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property.-or- The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property of the <paramref name="startInfo" /> parameter is true and the <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" />, <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" />, or <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> property is also true.-or-The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property of the <paramref name="startInfo" /> parameter is true and the <see cref="P:System.Diagnostics.ProcessStartInfo.UserName" /> property is not null or empty or the <see cref="P:System.Diagnostics.ProcessStartInfo.Password" /> property is not null.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="startInfo" /> parameter is null. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The file specified in the <paramref name="startInfo" /> parameter's <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property could not be found.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080. The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String)">
|
||||
<summary>Starts a process resource by specifying the name of a document or application file and associates the resource with a new <see cref="T:System.Diagnostics.Process" /> component.</summary>
|
||||
<returns>A new <see cref="T:System.Diagnostics.Process" /> that is associated with the process resource, or null if no process resource is started. Note that a new process that’s started alongside already running instances of the same process will be independent from the others. In addition, Start may return a non-null Process with its <see cref="T:System.Diagnostics.ProcessHasExited" /> property already set to true. In this case, the started process may have activated an existing instance of itself and then exited.</returns>
|
||||
<param name="fileName">The name of a document or application file to run in the process. </param>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The PATH environment variable has a string containing quotes.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String)">
|
||||
<summary>Starts a process resource by specifying the name of an application and a set of command-line arguments, and associates the resource with a new <see cref="T:System.Diagnostics.Process" /> component.</summary>
|
||||
<returns>A new <see cref="T:System.Diagnostics.Process" /> that is associated with the process resource, or null if no process resource is started. Note that a new process that’s started alongside already running instances of the same process will be independent from the others. In addition, Start may return a non-null Process with its <see cref="T:System.Diagnostics.ProcessHasExited" /> property already set to true. In this case, the started process may have activated an existing instance of itself and then exited.</returns>
|
||||
<param name="fileName">The name of an application file to run in the process. </param>
|
||||
<param name="arguments">Command-line arguments to pass when starting the process. </param>
|
||||
<exception cref="T:System.InvalidOperationException">The <paramref name="fileName" /> or <paramref name="arguments" /> parameter is null. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080. The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The PATH environment variable has a string containing quotes.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)">
|
||||
<summary>Starts a process resource by specifying the name of an application, a user name, a password, and a domain and associates the resource with a new <see cref="T:System.Diagnostics.Process" /> component.</summary>
|
||||
<returns>A new <see cref="T:System.Diagnostics.Process" /> that is associated with the process resource, or null if no process resource is started. Note that a new process that’s started alongside already running instances of the same process will be independent from the others. In addition, Start may return a non-null Process with its <see cref="T:System.Diagnostics.ProcessHasExited" /> property already set to true. In this case, the started process may have activated an existing instance of itself and then exited.</returns>
|
||||
<param name="fileName">The name of an application file to run in the process.</param>
|
||||
<param name="userName">The user name to use when starting the process.</param>
|
||||
<param name="password">A <see cref="T:System.Security.SecureString" /> that contains the password to use when starting the process.</param>
|
||||
<param name="domain">The domain to use when starting the process.</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<paramref name="fileName" /> is not an executable (.exe) file.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">There was an error in opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)">
|
||||
<summary>Starts a process resource by specifying the name of an application, a set of command-line arguments, a user name, a password, and a domain and associates the resource with a new <see cref="T:System.Diagnostics.Process" /> component.</summary>
|
||||
<returns>A new <see cref="T:System.Diagnostics.Process" /> that is associated with the process resource, or null if no process resource is started. Note that a new process that’s started alongside already running instances of the same process will be independent from the others. In addition, Start may return a non-null Process with its <see cref="T:System.Diagnostics.ProcessHasExited" /> property already set to true. In this case, the started process may have activated an existing instance of itself and then exited.</returns>
|
||||
<param name="fileName">The name of an application file to run in the process. </param>
|
||||
<param name="arguments">Command-line arguments to pass when starting the process. </param>
|
||||
<param name="userName">The user name to use when starting the process.</param>
|
||||
<param name="password">A <see cref="T:System.Security.SecureString" /> that contains the password to use when starting the process.</param>
|
||||
<param name="domain">The domain to use when starting the process.</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<paramref name="fileName" /> is not an executable (.exe) file.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080. The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StartInfo">
|
||||
<summary>Gets or sets the properties to pass to the <see cref="M:System.Diagnostics.Process.Start" /> method of the <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>The <see cref="T:System.Diagnostics.ProcessStartInfo" /> that represents the data with which to start the process. These arguments include the name of the executable file or document used to start the process.</returns>
|
||||
<exception cref="T:System.ArgumentNullException">The value that specifies the <see cref="P:System.Diagnostics.Process.StartInfo" /> is null. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StartTime">
|
||||
<summary>Gets the time that the associated process was started.</summary>
|
||||
<returns>An object that indicates when the process started. An exception is thrown if the process is not running.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.StartTime" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has exited.-or-The process has not been started.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred in the call to the Windows function.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Threads">
|
||||
<summary>Gets the set of threads that are running in the associated process.</summary>
|
||||
<returns>An array of type <see cref="T:System.Diagnostics.ProcessThread" /> representing the operating system threads currently running in the associated process.</returns>
|
||||
<exception cref="T:System.SystemException">The process does not have an <see cref="P:System.Diagnostics.Process.Id" />, or no process is associated with the <see cref="T:System.Diagnostics.Process" /> instance.-or- The associated process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.TotalProcessorTime">
|
||||
<summary>Gets the total processor time for this process.</summary>
|
||||
<returns>A <see cref="T:System.TimeSpan" /> that indicates the amount of time that the associated process has spent utilizing the CPU. This value is the sum of the <see cref="P:System.Diagnostics.Process.UserProcessorTime" /> and the <see cref="P:System.Diagnostics.Process.PrivilegedProcessorTime" />.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.TotalProcessorTime" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.UserProcessorTime">
|
||||
<summary>Gets the user processor time for this process.</summary>
|
||||
<returns>A <see cref="T:System.TimeSpan" /> that indicates the amount of time that the associated process has spent running code inside the application portion of the process (not inside the operating system core).</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.UserProcessorTime" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.VirtualMemorySize64">
|
||||
<summary>Gets the amount of the virtual memory allocated for the associated process.</summary>
|
||||
<returns>The amount of virtual memory, in bytes, allocated for the associated process.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.WaitForExit">
|
||||
<summary>Instructs the <see cref="T:System.Diagnostics.Process" /> component to wait indefinitely for the associated process to exit.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The wait setting could not be accessed. </exception>
|
||||
<exception cref="T:System.SystemException">No process <see cref="P:System.Diagnostics.Process.Id" /> has been set, and a <see cref="P:System.Diagnostics.Process.Handle" /> from which the <see cref="P:System.Diagnostics.Process.Id" /> property can be determined does not exist.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.-or- You are attempting to call <see cref="M:System.Diagnostics.Process.WaitForExit" /> for a process that is running on a remote computer. This method is available only for processes that are running on the local computer. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.WaitForExit(System.Int32)">
|
||||
<summary>Instructs the <see cref="T:System.Diagnostics.Process" /> component to wait the specified number of milliseconds for the associated process to exit.</summary>
|
||||
<returns>true if the associated process has exited; otherwise, false.</returns>
|
||||
<param name="milliseconds">The amount of time, in milliseconds, to wait for the associated process to exit. The maximum is the largest possible value of a 32-bit integer, which represents infinity to the operating system. </param>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The wait setting could not be accessed. </exception>
|
||||
<exception cref="T:System.SystemException">No process <see cref="P:System.Diagnostics.Process.Id" /> has been set, and a <see cref="P:System.Diagnostics.Process.Handle" /> from which the <see cref="P:System.Diagnostics.Process.Id" /> property can be determined does not exist.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.-or- You are attempting to call <see cref="M:System.Diagnostics.Process.WaitForExit(System.Int32)" /> for a process that is running on a remote computer. This method is available only for processes that are running on the local computer. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.WorkingSet64">
|
||||
<summary>Gets the amount of physical memory allocated for the associated process.</summary>
|
||||
<returns>The amount of physical memory, in bytes, allocated for the associated process.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessModule">
|
||||
<summary>Represents a.dll or .exe file that is loaded into a particular process.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.BaseAddress">
|
||||
<summary>Gets the memory address where the module was loaded.</summary>
|
||||
<returns>The load address of the module.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.EntryPointAddress">
|
||||
<summary>Gets the memory address for the function that runs when the system loads and runs the module.</summary>
|
||||
<returns>The entry point of the module.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.FileName">
|
||||
<summary>Gets the full path to the module.</summary>
|
||||
<returns>The fully qualified path that defines the location of the module.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.ModuleMemorySize">
|
||||
<summary>Gets the amount of memory that is required to load the module.</summary>
|
||||
<returns>The size, in bytes, of the memory that the module occupies.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.ModuleName">
|
||||
<summary>Gets the name of the process module.</summary>
|
||||
<returns>The name of the module.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModule.ToString">
|
||||
<summary>Converts the name of the module to a string.</summary>
|
||||
<returns>The value of the <see cref="P:System.Diagnostics.ProcessModule.ModuleName" /> property.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessModuleCollection">
|
||||
<summary>Provides a strongly typed collection of <see cref="T:System.Diagnostics.ProcessModule" /> objects.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Diagnostics.ProcessModuleCollection" /> class, with no associated <see cref="T:System.Diagnostics.ProcessModule" /> instances.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Diagnostics.ProcessModuleCollection" /> class, using the specified array of <see cref="T:System.Diagnostics.ProcessModule" /> instances.</summary>
|
||||
<param name="processModules">An array of <see cref="T:System.Diagnostics.ProcessModule" /> instances with which to initialize this <see cref="T:System.Diagnostics.ProcessModuleCollection" /> instance. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)">
|
||||
<summary>Determines whether the specified process module exists in the collection.</summary>
|
||||
<returns>true if the module exists in the collection; otherwise, false.</returns>
|
||||
<param name="module">A <see cref="T:System.Diagnostics.ProcessModule" /> instance that indicates the module to find in this collection. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)">
|
||||
<summary>Copies an array of <see cref="T:System.Diagnostics.ProcessModule" /> instances to the collection, at the specified index.</summary>
|
||||
<param name="array">An array of <see cref="T:System.Diagnostics.ProcessModule" /> instances to add to the collection. </param>
|
||||
<param name="index">The location at which to add the new instances. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.Count"></member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.GetEnumerator"></member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)">
|
||||
<summary>Provides the location of a specified module within the collection.</summary>
|
||||
<returns>The zero-based index that defines the location of the module within the <see cref="T:System.Diagnostics.ProcessModuleCollection" />.</returns>
|
||||
<param name="module">The <see cref="T:System.Diagnostics.ProcessModule" /> whose index is retrieved. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)">
|
||||
<summary>Gets an index for iterating over the set of process modules.</summary>
|
||||
<returns>A <see cref="T:System.Diagnostics.ProcessModule" /> that indexes the modules in the collection </returns>
|
||||
<param name="index">The zero-based index value of the module in the collection. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"></member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized"></member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot"></member>
|
||||
<member name="T:System.Diagnostics.ProcessPriorityClass">
|
||||
<summary>Indicates the priority that the system associates with a process. This value, together with the priority value of each thread of the process, determines each thread's base priority level.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.AboveNormal">
|
||||
<summary>Specifies that the process has priority above Normal but below <see cref="F:System.Diagnostics.ProcessPriorityClass.High" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.BelowNormal">
|
||||
<summary>Specifies that the process has priority above Idle but below Normal.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.High">
|
||||
<summary>Specifies that the process performs time-critical tasks that must be executed immediately, such as the Task List dialog, which must respond quickly when called by the user, regardless of the load on the operating system. The threads of the process preempt the threads of normal or idle priority class processes.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.Idle">
|
||||
<summary>Specifies that the threads of this process run only when the system is idle, such as a screen saver. The threads of the process are preempted by the threads of any process running in a higher priority class.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.Normal">
|
||||
<summary>Specifies that the process has no special scheduling needs.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.RealTime">
|
||||
<summary>Specifies that the process has the highest possible priority.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessStartInfo">
|
||||
<summary>Specifies a set of values that are used when you start a process.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Diagnostics.ProcessStartInfo" /> class without specifying a file name with which to start the process.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Diagnostics.ProcessStartInfo" /> class and specifies a file name such as an application or document with which to start the process.</summary>
|
||||
<param name="fileName">An application or document with which to start a process. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Diagnostics.ProcessStartInfo" /> class, specifies an application file name with which to start the process, and specifies a set of command-line arguments to pass to the application.</summary>
|
||||
<param name="fileName">An application with which to start a process. </param>
|
||||
<param name="arguments">Command-line arguments to pass to the application when the process starts. </param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Arguments">
|
||||
<summary>Gets or sets the set of command-line arguments to use when starting the application.</summary>
|
||||
<returns>A single string containing the arguments to pass to the target application specified in the <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property. The default is an empty string (""). On Windows Vista and earlier versions of the Windows operating system, the length of the arguments added to the length of the full path to the process must be less than 2080. On Windows 7 and later versions, the length must be less than 32699.Arguments are parsed and interpreted by the target application, so must align with the expectations of that application. For.NET applications as demonstrated in the Examples below, spaces are interpreted as a separator between multiple arguments. A single argument that includes spaces must be surrounded by quotation marks, but those quotation marks are not carried through to the target application. In include quotation marks in the final parsed argument, triple-escape each mark.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.CreateNoWindow">
|
||||
<summary>Gets or sets a value indicating whether to start the process in a new window.</summary>
|
||||
<returns>true if the process should be started without creating a new window to contain it; otherwise, false. The default is false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Domain">
|
||||
<summary>Gets or sets a value that identifies the domain to use when starting the process. </summary>
|
||||
<returns>The Active Directory domain to use when starting the process. The domain property is primarily of interest to users within enterprise environments that use Active Directory.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Environment"></member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.FileName">
|
||||
<summary>Gets or sets the application or document to start.</summary>
|
||||
<returns>The name of the application to start, or the name of a document of a file type that is associated with an application and that has a default open action available to it. The default is an empty string ("").</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.LoadUserProfile">
|
||||
<summary>Gets or sets a value that indicates whether the Windows user profile is to be loaded from the registry. </summary>
|
||||
<returns>true if the Windows user profile should be loaded; otherwise, false. The default is false.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Password">
|
||||
<summary>Gets or sets a secure string that contains the user password to use when starting the process.</summary>
|
||||
<returns>The user password to use when starting the process.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError">
|
||||
<summary>Gets or sets a value that indicates whether the error output of an application is written to the <see cref="P:System.Diagnostics.Process.StandardError" /> stream.</summary>
|
||||
<returns>true if error output should be written to <see cref="P:System.Diagnostics.Process.StandardError" />; otherwise, false. The default is false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput">
|
||||
<summary>Gets or sets a value indicating whether the input for an application is read from the <see cref="P:System.Diagnostics.Process.StandardInput" /> stream.</summary>
|
||||
<returns>true if input should be read from <see cref="P:System.Diagnostics.Process.StandardInput" />; otherwise, false. The default is false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput">
|
||||
<summary>Gets or sets a value that indicates whether the textual output of an application is written to the <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream.</summary>
|
||||
<returns>true if output should be written to <see cref="P:System.Diagnostics.Process.StandardOutput" />; otherwise, false. The default is false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding">
|
||||
<summary>Gets or sets the preferred encoding for error output.</summary>
|
||||
<returns>An object that represents the preferred encoding for error output. The default is null.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding">
|
||||
<summary>Gets or sets the preferred encoding for standard output.</summary>
|
||||
<returns>An object that represents the preferred encoding for standard output. The default is null.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.UserName">
|
||||
<summary>Gets or sets the user name to be used when starting the process.</summary>
|
||||
<returns>The user name to use when starting the process.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.UseShellExecute">
|
||||
<summary>Gets or sets a value indicating whether to use the operating system shell to start the process.</summary>
|
||||
<returns>true if the shell should be used when starting the process; false if the process should be created directly from the executable file. The default is true.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.WorkingDirectory">
|
||||
<summary>When the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property is false, gets or sets the working directory for the process to be started. When <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is true, gets or sets the directory that contains the process to be started.</summary>
|
||||
<returns>When <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is true, the fully qualified name of the directory that contains the process to be started. When the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property is false, the working directory for the process to be started. The default is an empty string ("").</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessThread">
|
||||
<summary>Represents an operating system process thread.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.BasePriority">
|
||||
<summary>Gets the base priority of the thread.</summary>
|
||||
<returns>The base priority of the thread, which the operating system computes by combining the process priority class with the priority level of the associated thread.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.CurrentPriority">
|
||||
<summary>Gets the current priority of the thread.</summary>
|
||||
<returns>The current priority of the thread, which may deviate from the base priority based on how the operating system is scheduling the thread. The priority may be temporarily boosted for an active thread.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.Id">
|
||||
<summary>Gets the unique identifier of the thread.</summary>
|
||||
<returns>The unique identifier associated with a specific thread.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.IdealProcessor">
|
||||
<summary>Sets the preferred processor for this thread to run on.</summary>
|
||||
<returns>The preferred processor for the thread, used when the system schedules threads, to determine which processor to run the thread on.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The system could not set the thread to start on the specified processor. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is on a remote computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PriorityBoostEnabled">
|
||||
<summary>Gets or sets a value indicating whether the operating system should temporarily boost the priority of the associated thread whenever the main window of the thread's process receives the focus.</summary>
|
||||
<returns>true to boost the thread's priority when the user interacts with the process's interface; otherwise, false. The default is false.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The priority boost information could not be retrieved.-or-The priority boost information could not be set. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is on a remote computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PriorityLevel">
|
||||
<summary>Gets or sets the priority level of the thread.</summary>
|
||||
<returns>One of the <see cref="T:System.Diagnostics.ThreadPriorityLevel" /> values, specifying a range that bounds the thread's priority.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The thread priority level information could not be retrieved. -or-The thread priority level could not be set.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is on a remote computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime">
|
||||
<summary>Gets the amount of time that the thread has spent running code inside the operating system core.</summary>
|
||||
<returns>A <see cref="T:System.TimeSpan" /> indicating the amount of time that the thread has spent running code inside the operating system core.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The thread time could not be retrieved. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is on a remote computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.ProcessorAffinity">
|
||||
<summary>Sets the processors on which the associated thread can run.</summary>
|
||||
<returns>An <see cref="T:System.IntPtr" /> that points to a set of bits, each of which represents a processor that the thread can run on.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The processor affinity could not be set. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is on a remote computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThread.ResetIdealProcessor">
|
||||
<summary>Resets the ideal processor for this thread to indicate that there is no single ideal processor. In other words, so that any processor is ideal.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The ideal processor could not be reset. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is on a remote computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.StartAddress">
|
||||
<summary>Gets the memory address of the function that the operating system called that started this thread.</summary>
|
||||
<returns>The thread's starting address, which points to the application-defined function that the thread executes.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is on a remote computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.StartTime">
|
||||
<summary>Gets the time that the operating system started the thread.</summary>
|
||||
<returns>A <see cref="T:System.DateTime" /> representing the time that was on the system when the operating system started the thread.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The thread time could not be retrieved. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is on a remote computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.ThreadState">
|
||||
<summary>Gets the current state of this thread.</summary>
|
||||
<returns>A <see cref="T:System.Diagnostics.ThreadState" /> that indicates the thread's execution, for example, running, waiting, or terminated.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is on a remote computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.TotalProcessorTime">
|
||||
<summary>Gets the total amount of time that this thread has spent using the processor.</summary>
|
||||
<returns>A <see cref="T:System.TimeSpan" /> that indicates the amount of time that the thread has had control of the processor.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The thread time could not be retrieved. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is on a remote computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.UserProcessorTime">
|
||||
<summary>Gets the amount of time that the associated thread has spent running code inside the application.</summary>
|
||||
<returns>A <see cref="T:System.TimeSpan" /> indicating the amount of time that the thread has spent running code inside the application, as opposed to inside the operating system core.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The thread time could not be retrieved. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is on a remote computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.WaitReason">
|
||||
<summary>Gets the reason that the thread is waiting.</summary>
|
||||
<returns>A <see cref="T:System.Diagnostics.ThreadWaitReason" /> representing the reason that the thread is in the wait state.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The thread is not in the wait state. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is on a remote computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessThreadCollection">
|
||||
<summary>Provides a strongly typed collection of <see cref="T:System.Diagnostics.ProcessThread" /> objects.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Diagnostics.ProcessThreadCollection" /> class, with no associated <see cref="T:System.Diagnostics.ProcessThread" /> instances.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Diagnostics.ProcessThreadCollection" /> class, using the specified array of <see cref="T:System.Diagnostics.ProcessThread" /> instances.</summary>
|
||||
<param name="processThreads">An array of <see cref="T:System.Diagnostics.ProcessThread" /> instances with which to initialize this <see cref="T:System.Diagnostics.ProcessThreadCollection" /> instance. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)">
|
||||
<summary>Appends a process thread to the collection.</summary>
|
||||
<returns>The zero-based index of the thread in the collection.</returns>
|
||||
<param name="thread">The thread to add to the collection. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)">
|
||||
<summary>Determines whether the specified process thread exists in the collection.</summary>
|
||||
<returns>true if the thread exists in the collection; otherwise, false.</returns>
|
||||
<param name="thread">A <see cref="T:System.Diagnostics.ProcessThread" /> instance that indicates the thread to find in this collection. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)">
|
||||
<summary>Copies an array of <see cref="T:System.Diagnostics.ProcessThread" /> instances to the collection, at the specified index.</summary>
|
||||
<param name="array">An array of <see cref="T:System.Diagnostics.ProcessThread" /> instances to add to the collection. </param>
|
||||
<param name="index">The location at which to add the new instances. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.Count"></member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.GetEnumerator"></member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)">
|
||||
<summary>Provides the location of a specified thread within the collection.</summary>
|
||||
<returns>The zero-based index that defines the location of the thread within the <see cref="T:System.Diagnostics.ProcessThreadCollection" />.</returns>
|
||||
<param name="thread">The <see cref="T:System.Diagnostics.ProcessThread" /> whose index is retrieved. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)">
|
||||
<summary>Inserts a process thread at the specified location in the collection.</summary>
|
||||
<param name="index">The zero-based index indicating the location at which to insert the thread. </param>
|
||||
<param name="thread">The thread to insert into the collection. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)">
|
||||
<summary>Gets an index for iterating over the set of process threads.</summary>
|
||||
<returns>A <see cref="T:System.Diagnostics.ProcessThread" /> that indexes the threads in the collection.</returns>
|
||||
<param name="index">The zero-based index value of the thread in the collection. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)">
|
||||
<summary>Deletes a process thread from the collection.</summary>
|
||||
<param name="thread">The thread to remove from the collection. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"></member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized"></member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot"></member>
|
||||
<member name="T:System.Diagnostics.ThreadPriorityLevel">
|
||||
<summary>Specifies the priority level of a thread.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.AboveNormal">
|
||||
<summary>Specifies one step above the normal priority for the associated <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.BelowNormal">
|
||||
<summary>Specifies one step below the normal priority for the associated <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Highest">
|
||||
<summary>Specifies highest priority. This is two steps above the normal priority for the associated <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Idle">
|
||||
<summary>Specifies idle priority. This is the lowest possible priority value of all threads, independent of the value of the associated <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Lowest">
|
||||
<summary>Specifies lowest priority. This is two steps below the normal priority for the associated <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Normal">
|
||||
<summary>Specifies normal priority for the associated <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.TimeCritical">
|
||||
<summary>Specifies time-critical priority. This is the highest priority of all threads, independent of the value of the associated <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ThreadState">
|
||||
<summary>Specifies the current execution state of the thread.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Initialized">
|
||||
<summary>A state that indicates the thread has been initialized, but has not yet started.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Ready">
|
||||
<summary>A state that indicates the thread is waiting to use a processor because no processor is free. The thread is prepared to run on the next available processor.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Running">
|
||||
<summary>A state that indicates the thread is currently using a processor.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Standby">
|
||||
<summary>A state that indicates the thread is about to use a processor. Only one thread can be in this state at a time.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Terminated">
|
||||
<summary>A state that indicates the thread has finished executing and has exited.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Transition">
|
||||
<summary>A state that indicates the thread is waiting for a resource, other than the processor, before it can execute. For example, it might be waiting for its execution stack to be paged in from disk.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Unknown">
|
||||
<summary>The state of the thread is unknown.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Wait">
|
||||
<summary>A state that indicates the thread is not ready to use the processor because it is waiting for a peripheral operation to complete or a resource to become free. When the thread is ready, it will be rescheduled.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ThreadWaitReason">
|
||||
<summary>Specifies the reason a thread is waiting.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.EventPairHigh">
|
||||
<summary>The thread is waiting for event pair high.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.EventPairLow">
|
||||
<summary>The thread is waiting for event pair low.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.ExecutionDelay">
|
||||
<summary>Thread execution is delayed.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Executive">
|
||||
<summary>The thread is waiting for the scheduler.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.FreePage">
|
||||
<summary>The thread is waiting for a free virtual memory page.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.LpcReceive">
|
||||
<summary>The thread is waiting for a local procedure call to arrive.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.LpcReply">
|
||||
<summary>The thread is waiting for reply to a local procedure call to arrive.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.PageIn">
|
||||
<summary>The thread is waiting for a virtual memory page to arrive in memory.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.PageOut">
|
||||
<summary>The thread is waiting for a virtual memory page to be written to disk.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Suspended">
|
||||
<summary>Thread execution is suspended.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.SystemAllocation">
|
||||
<summary>The thread is waiting for system allocation.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Unknown">
|
||||
<summary>The thread is waiting for an unknown reason.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.UserRequest">
|
||||
<summary>The thread is waiting for a user request.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.VirtualMemory">
|
||||
<summary>The thread is waiting for the system to allocate virtual memory.</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
977
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/de/System.Diagnostics.Process.xml
vendored
Normal file
977
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/de/System.Diagnostics.Process.xml
vendored
Normal file
@@ -0,0 +1,977 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Diagnostics.Process</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Win32.SafeHandles.SafeProcessHandle">
|
||||
<summary>[SICHERHEITSRELEVANT] Stellt einen verwalteten Wrapper für ein Prozesshandle bereit.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)">
|
||||
<summary>[SICHERHEITSRELEVANT] Initialisiert eine neue Instanz der <see cref="T:Microsoft.Win32.SafeHandles.SafeProcessHandle" />-Klasse aus dem angegebenen Handle und gibt an, ob das Handle in der Abschlussphase freigegeben werden soll. </summary>
|
||||
<param name="existingHandle">Das zu umschließende Handle.</param>
|
||||
<param name="ownsHandle">true, wenn <see cref="T:Microsoft.Win32.SafeHandles.SafeProcessHandle" /> das Handle während der Abschlussphase zuverlässig freigeben soll, andernfalls false.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid"></member>
|
||||
<member name="T:System.Diagnostics.DataReceivedEventArgs">
|
||||
<summary>Stellt Daten für das <see cref="E:System.Diagnostics.Process.OutputDataReceived" />-Ereignis und das <see cref="E:System.Diagnostics.Process.ErrorDataReceived" />-Ereignis bereit.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.DataReceivedEventArgs.Data">
|
||||
<summary>Ruft die Zeile von Zeichen ab, die in einen umgeleiteten <see cref="T:System.Diagnostics.Process" />-Ausgabestream geschrieben wurde.</summary>
|
||||
<returns>Die Zeile, die von einem zugeordneten <see cref="T:System.Diagnostics.Process" /> in seinen umgeleiteten <see cref="P:System.Diagnostics.Process.StandardOutput" />-Stream oder <see cref="P:System.Diagnostics.Process.StandardError" />-Stream geschrieben wurde.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.DataReceivedEventHandler">
|
||||
<summary>Stellt die Methode dar, die das <see cref="E:System.Diagnostics.Process.OutputDataReceived" />-Ereignis oder das <see cref="E:System.Diagnostics.Process.ErrorDataReceived" />-Ereignis eines <see cref="T:System.Diagnostics.Process" /> behandelt.</summary>
|
||||
<param name="sender">Die Quelle des Ereignisses. </param>
|
||||
<param name="e">Ein <see cref="T:System.Diagnostics.DataReceivedEventArgs" />, das die Ereignisdaten enthält. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.Process">
|
||||
<summary>Ermöglicht den Zugriff auf lokale Prozesse und Remoteprozesse und das Starten und Anhalten lokaler Systemprozesse.Informationen zum Durchsuchen des .NET Framework-Quellcodes für diesen Typ finden Sie in der Verweisquelle.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.#ctor">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:System.Diagnostics.Process" />-Klasse.</summary>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.BasePriority">
|
||||
<summary>Ruft die Basispriorität des zugeordneten Prozesses ab.</summary>
|
||||
<returns>Die Basispriorität, die anhand der <see cref="P:System.Diagnostics.Process.PriorityClass" /> des zugeordneten Prozesses berechnet wird.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has exited.-or- The process has not started, so there is no process ID. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.BeginErrorReadLine">
|
||||
<summary>Startet asynchrone Lesevorgänge im umgeleiteten <see cref="P:System.Diagnostics.Process.StandardError" />-Stream der Anwendung.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref="P:System.Diagnostics.Process.StandardError" /> stream.- or - The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has been used by a synchronous read operation. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.BeginOutputReadLine">
|
||||
<summary>Startet asynchrone Lesevorgänge im umgeleiteten <see cref="P:System.Diagnostics.Process.StandardOutput" />-Stream der Anwendung.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream.- or - The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has been used by a synchronous read operation. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.CancelErrorRead">
|
||||
<summary>Bricht den asynchronen Lesevorgang im umgeleiteten <see cref="P:System.Diagnostics.Process.StandardError" />-Stream einer Anwendung ab.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardError" /> stream is not enabled for asynchronous read operations. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.CancelOutputRead">
|
||||
<summary>Bricht den asynchronen Lesevorgang im umgeleiteten <see cref="P:System.Diagnostics.Process.StandardOutput" />-Stream einer Anwendung ab.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream is not enabled for asynchronous read operations. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Dispose"></member>
|
||||
<member name="M:System.Diagnostics.Process.Dispose(System.Boolean)">
|
||||
<summary>Gibt alle von diesem Prozess verwendeten Ressourcen frei.</summary>
|
||||
<param name="disposing">true, um sowohl verwaltete als auch nicht verwaltete Ressourcen freizugeben, false, um ausschließlich nicht verwaltete Ressourcen freizugeben. </param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.EnableRaisingEvents">
|
||||
<summary>Ruft ab oder legt fest, ob beim Beenden des Prozesses das <see cref="E:System.Diagnostics.Process.Exited" />-Ereignis ausgelöst werden soll.</summary>
|
||||
<returns>true, wenn das <see cref="E:System.Diagnostics.Process.Exited" />-Ereignis ausgelöst werden soll, wenn der zugeordnete Prozess beendet wird (entweder durch Beenden oder einen Aufruf von <see cref="M:System.Diagnostics.Process.Kill" />); andernfalls false.Die Standardeinstellung ist false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.EnterDebugMode">
|
||||
<summary>Versetzt durch Aktivieren der systemeigenen <see cref="T:System.Diagnostics.Process" />-Eigenschaft für den aktuellen Thread eine SeDebugPrivilege-Komponente in einen Zustand, in dem sie mit Betriebssystemprozessen interagieren kann, die in einem speziellen Modus ausgeführt werden.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.ErrorDataReceived">
|
||||
<summary>Tritt auf, wenn eine Anwendung in seinen umgeleiteten <see cref="P:System.Diagnostics.Process.StandardError" />-Stream schreibt.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ExitCode">
|
||||
<summary>Ruft den Wert ab, der vom zugeordneten Prozess beim Beenden angegeben wurde.</summary>
|
||||
<returns>Der Code, der vom zugeordneten Prozess beim Beenden angegeben wurde.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process has not exited.-or- The process <see cref="P:System.Diagnostics.Process.Handle" /> is not valid. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.ExitCode" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.Exited">
|
||||
<summary>Tritt beim Beenden eines Prozesses ein.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ExitTime">
|
||||
<summary>Ruft den Zeitpunkt ab, zu dem der zugeordnete Prozess beendet wurde.</summary>
|
||||
<returns>Eine <see cref="T:System.DateTime" />, die angibt, wann der zugeordnete Prozess beendet wurde.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.ExitTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetCurrentProcess">
|
||||
<summary>Ruft eine neue <see cref="T:System.Diagnostics.Process" />-Komponente ab und ordnet diese dem gegenwärtig aktiven Prozess zu.</summary>
|
||||
<returns>Eine neue <see cref="T:System.Diagnostics.Process" />-Komponente, die der Prozessressource zugeordnet ist, die die aufrufende Anwendung ausführt.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessById(System.Int32)">
|
||||
<summary>Gibt eine neue <see cref="T:System.Diagnostics.Process" />-Komponente zurück, wenn der Bezeichner eines Prozesses auf dem lokalen Computer angegeben ist.</summary>
|
||||
<returns>Eine <see cref="T:System.Diagnostics.Process" />-Komponente, die der durch den <paramref name="processId" />-Parameter bezeichneten lokalen Prozessressource zugeordnet ist.</returns>
|
||||
<param name="processId">Der systemweit eindeutige Bezeichner einer Prozessressource. </param>
|
||||
<exception cref="T:System.ArgumentException">The process specified by the <paramref name="processId" /> parameter is not running.The identifier might be expired.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process was not started by this object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)">
|
||||
<summary>Gibt eine neue <see cref="T:System.Diagnostics.Process" />-Komponente zurück, wenn die Prozess-ID und der Name des Computers im Netzwerk angegeben sind.</summary>
|
||||
<returns>Eine <see cref="T:System.Diagnostics.Process" />-Komponente, die der durch den <paramref name="processId" />-Parameter bezeichneten Remoteprozessressource zugeordnet ist.</returns>
|
||||
<param name="processId">Der systemweit eindeutige Bezeichner einer Prozessressource. </param>
|
||||
<param name="machineName">Der Name eines Computers im Netzwerk. </param>
|
||||
<exception cref="T:System.ArgumentException">The process specified by the <paramref name="processId" /> parameter is not running.The identifier might be expired.-or- The <paramref name="machineName" /> parameter syntax is invalid.The name might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process was not started by this object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcesses">
|
||||
<summary>Erstellt eine neue <see cref="T:System.Diagnostics.Process" />-Komponente für jede Prozessressource auf dem lokalen Computer.</summary>
|
||||
<returns>Ein Array vom Typ <see cref="T:System.Diagnostics.Process" />, das alle auf dem lokalen Computer ausgeführten Prozessressourcen darstellt.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcesses(System.String)">
|
||||
<summary>Erstellt eine neue <see cref="T:System.Diagnostics.Process" />-Komponente für jede Prozessressource auf dem lokalen Computer.</summary>
|
||||
<returns>Ein Array vom Typ <see cref="T:System.Diagnostics.Process" />, das alle auf dem angegebenen Computer ausgeführten Prozessressourcen darstellt.</returns>
|
||||
<param name="machineName">Der Computer, von dem die Liste der Prozesse gelesen werden soll. </param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="machineName" /> parameter syntax is invalid.It might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The operating system platform does not support this operation on remote computers. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A problem occurred accessing an underlying system API. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessesByName(System.String)">
|
||||
<summary>Erstellt ein Array neuer <see cref="T:System.Diagnostics.Process" />-Komponenten und ordnet diese allen Prozessressourcen auf dem lokalen Computer zu, die den angegebenen Prozessnamen gemeinsam verwenden.</summary>
|
||||
<returns>Ein Array vom Typ <see cref="T:System.Diagnostics.Process" />, das die Prozessressourcen darstellt, die die angegebene Anwendung oder Datei ausführen.</returns>
|
||||
<param name="processName">Der angezeigte Name des Prozesses. </param>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)">
|
||||
<summary>Erstellt ein Array neuer <see cref="T:System.Diagnostics.Process" />-Komponenten und ordnet diese allen Prozessressourcen auf einem Remotecomputer zu, die den angegebenen Prozessnamen gemeinsam verwenden.</summary>
|
||||
<returns>Ein Array vom Typ <see cref="T:System.Diagnostics.Process" />, das die Prozessressourcen darstellt, die die angegebene Anwendung oder Datei ausführen.</returns>
|
||||
<param name="processName">Der angezeigte Name des Prozesses. </param>
|
||||
<param name="machineName">Der Name eines Computers im Netzwerk. </param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="machineName" /> parameter syntax is invalid.It might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The operating system platform does not support this operation on remote computers. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A problem occurred accessing an underlying system API. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.HasExited">
|
||||
<summary>Ruft einen Wert ab, der angibt, ob der zugehörige Prozess beendet wurde.</summary>
|
||||
<returns>true, wenn der Betriebssystemprozess, auf den die <see cref="T:System.Diagnostics.Process" />-Komponente verweist, beendet wurde; andernfalls false.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with the object. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The exit code for the process could not be retrieved. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.HasExited" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Id">
|
||||
<summary>Ruft den eindeutigen Bezeichner für den zugeordneten Prozess ab.</summary>
|
||||
<returns>Der vom System generierte eindeutige Bezeichner des Prozesses, auf den von dieser <see cref="T:System.Diagnostics.Process" />-Instanz verwiesen wird.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process's <see cref="P:System.Diagnostics.Process.Id" /> property has not been set.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Kill">
|
||||
<summary>Hält den zugeordneten Prozess sofort an.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to call <see cref="M:System.Diagnostics.Process.Kill" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has already exited. -or-There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.LeaveDebugMode">
|
||||
<summary>Beendet den Zustand einer <see cref="T:System.Diagnostics.Process" />-Komponente, in dem sie mit Betriebssystemprozessen interagieren kann, die in einem speziellen Modus ausgeführt werden.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MachineName">
|
||||
<summary>Ruft den Namen des Computers ab, auf dem der zugeordnete Prozess ausgeführt wird.</summary>
|
||||
<returns>Der Name des Computers, auf dem der zugeordnete Prozess ausgeführt wird.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MainModule">
|
||||
<summary>Ruft das Hauptmodul für den zugeordneten Prozess ab.</summary>
|
||||
<returns>Das zum Starten des Prozesses verwendete <see cref="T:System.Diagnostics.ProcessModule" />.</returns>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MainModule" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A 32-bit process is trying to access the modules of a 64-bit process.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MaxWorkingSet">
|
||||
<summary>Ruft die maximal zulässige Workingsetgröße für den zugeordneten Prozess ab oder legt diese fest.</summary>
|
||||
<returns>Die im Speicher maximal zulässige Workingsetgröße für den Prozess in Bytes.</returns>
|
||||
<exception cref="T:System.ArgumentException">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MaxWorkingSet" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MinWorkingSet">
|
||||
<summary>Ruft die minimale zulässige Workingsetgröße für den zugeordneten Prozess ab oder legt diese fest.</summary>
|
||||
<returns>Die im Speicher mindestens erforderliche Workingsetgröße für den Prozess in Bytes.</returns>
|
||||
<exception cref="T:System.ArgumentException">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MinWorkingSet" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Modules">
|
||||
<summary>Ruft die Module ab, die vom zugeordneten Prozess geladen wurden.</summary>
|
||||
<returns>Ein Array vom Typ <see cref="T:System.Diagnostics.ProcessModule" />, das die vom zugeordneten Prozess geladenen Module darstellt.</returns>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.Modules" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">You are attempting to access the <see cref="P:System.Diagnostics.Process.Modules" /> property for either the system process or the idle process.These processes do not have modules.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.NonpagedSystemMemorySize64">
|
||||
<summary>Ruft die Menge des für den zugeordneten Prozess belegten nicht ausgelagerten Systemspeichers ab.</summary>
|
||||
<returns>Der Anteil am Systemspeicher in Bytes, der für den zugeordneten Prozess reserviert ist und der nicht in die Auslagerungsdatei des virtuellen Speichers geschrieben werden kann.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.OnExited">
|
||||
<summary>Löst das <see cref="E:System.Diagnostics.Process.Exited" />-Ereignis aus.</summary>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.OutputDataReceived">
|
||||
<summary>Tritt jedes Mal auf, wenn eine Anwendung eine Zeile in ihren umgeleiteten <see cref="P:System.Diagnostics.Process.StandardOutput" />-Stream schreibt.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PagedMemorySize64">
|
||||
<summary>Ruft die Größe des ausgelagerten Speichers ab, der für den zugeordneten Prozess belegt wird.</summary>
|
||||
<returns>Die Größe des Arbeitsspeichers in Bytes, der für den zugeordneten Prozess in der Auslagerungsdatei des virtuellen Arbeitsspeichers belegt wird.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PagedSystemMemorySize64">
|
||||
<summary>Ruft die Menge des für den zugeordneten Prozess belegten auslagerbaren Systemspeichers ab.</summary>
|
||||
<returns>Der Anteil am Systemspeicher in Bytes, der für den zugeordneten Prozess belegt wird und der in die Auslagerungsdatei des virtuellen Speichers geschrieben werden kann.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakPagedMemorySize64">
|
||||
<summary>Ruft die vom zugeordneten Prozess verwendete maximale Speichergröße in der Auslagerungsdatei des virtuellen Arbeitsspeichers ab.</summary>
|
||||
<returns>Die maximale Größe des Arbeitsspeichers in Bytes, der seit dem Starten für den zugeordneten Prozess in der Auslagerungsdatei des virtuellen Arbeitsspeichers belegt wird.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakVirtualMemorySize64">
|
||||
<summary>Ruft die maximale Größe des virtuellen Speichers ab, der vom zugeordneten Prozess verwendet wird.</summary>
|
||||
<returns>Die maximale Größe des virtuellen Arbeitsspeichers in Bytes, der für den zugeordneten Prozess seit dem Starten belegt wird.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakWorkingSet64">
|
||||
<summary>Ruft die maximale Größe des physischen Speichers ab, der vom zugeordneten Prozess verwendet wird.</summary>
|
||||
<returns>Die maximale Größe des physischen Speichers in Bytes, der für den zugeordneten Prozess seit dem Starten belegt wird.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PriorityBoostEnabled">
|
||||
<summary>Ruft einen Wert ab, der angibt, ob die zugeordnete Prozesspriorität durch das Betriebssystem vorübergehend erhöht werden soll, wenn das Hauptfenster den Fokus besitzt, oder legt diesen fest.</summary>
|
||||
<returns>true, wenn die Prozesspriorität eines Prozesses dynamisch erhöht werden soll, wenn dieser den Wartezustand verlässt; andernfalls false.Die Standardeinstellung ist false.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Priority boost information could not be retrieved from the associated process resource. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PriorityBoostEnabled" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PriorityClass">
|
||||
<summary>Ruft die allgemeine Prioritätskategorie für den zugeordneten Prozess ab oder legt diese fest.</summary>
|
||||
<returns>Die Prioritätskategorie für den zugeordneten Prozess, aus der die <see cref="P:System.Diagnostics.Process.BasePriority" /> des Prozesses berechnet wird.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PriorityClass" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">You have set the <see cref="P:System.Diagnostics.Process.PriorityClass" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>
|
||||
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">Priority class cannot be set because it does not use a valid value, as defined in the <see cref="T:System.Diagnostics.ProcessPriorityClass" /> enumeration.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PrivateMemorySize64">
|
||||
<summary>Ruft die Größe des privaten Speichers ab, der für den zugeordneten Prozess belegt wird.</summary>
|
||||
<returns>Die Größe des Speichers in Bytes, der für den zugeordneten Prozess belegt wird und nicht mit anderen Prozessen gemeinsam genutzt werden kann.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PrivilegedProcessorTime">
|
||||
<summary>Ruft die privilegierte Prozessorzeit für diesen Prozess ab.</summary>
|
||||
<returns>Eine <see cref="T:System.TimeSpan" />, die angibt, wie lange der Prozess im Betriebssystemkern Code ausgeführt hat.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PrivilegedProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ProcessName">
|
||||
<summary>Ruft den Namen des Prozesses ab.</summary>
|
||||
<returns>Der Name, mit dem das System den Prozess für den Benutzer kennzeichnet.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process does not have an identifier, or no process is associated with the <see cref="T:System.Diagnostics.Process" />.-or- The associated process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is not on this computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ProcessorAffinity">
|
||||
<summary>Ruft die Prozessoren ab, auf denen die Ausführung der Threads in diesem Prozess geplant werden kann, oder legt diese fest.</summary>
|
||||
<returns>Eine Bitmaske, die angibt, auf welchen Prozessoren die Threads im zugeordneten Prozess ausgeführt werden können.Der Standardwert hängt von der Anzahl der Prozessoren des Computers ab.Der Standardwert ist 2n -1, wobei n die Anzahl der Prozessoren ist.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<see cref="P:System.Diagnostics.Process.ProcessorAffinity" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.ProcessorAffinity" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> was not available.-or- The process has exited. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Refresh">
|
||||
<summary>Verwirft alle Informationen über den zugeordneten Prozess, die in der Prozesskomponente zwischengespeichert waren.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.SafeHandle">
|
||||
<summary>Ruft das systemeigene Handle dieses Prozesses ab.</summary>
|
||||
<returns>Das systemeigene Handle dieses Prozesses.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.SessionId">
|
||||
<summary>Ruft die Terminaldienste-Sitzungs-ID für den zugeordneten Prozess ab.</summary>
|
||||
<returns>Die Terminaldienste-Sitzungs-ID für den zugeordneten Prozess.</returns>
|
||||
<exception cref="T:System.NullReferenceException">There is no session associated with this process.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The <see cref="P:System.Diagnostics.Process.SessionId" /> property is not supported on Windows 98.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardError">
|
||||
<summary>Ruft einen Stream ab, mit dem die Fehlerausgabe der Anwendung gelesen wird.</summary>
|
||||
<returns>Ein <see cref="T:System.IO.StreamReader" /> zum Lesen des Standardfehlerstreams der Anwendung.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has not been defined for redirection; ensure <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> is set to true and <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is set to false.- or - The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has been opened for asynchronous read operations with <see cref="M:System.Diagnostics.Process.BeginErrorReadLine" />. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardInput">
|
||||
<summary>Ruft einen Stream ab, in den die Eingaben der Anwendung geschrieben werden.</summary>
|
||||
<returns>Ein <see cref="T:System.IO.StreamWriter" /> zum Schreiben des Standardeingabestreams der Anwendung.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardInput" /> stream has not been defined because <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" /> is set to false. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardOutput">
|
||||
<summary>Ruft einen Stream ab, der dazu verwendet wird, die Textausgabe der Anwendung zu lesen.</summary>
|
||||
<returns>Ein <see cref="T:System.IO.StreamReader" /> zum Lesen des Standardausgabestreams der Anwendung.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has not been defined for redirection; ensure <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" /> is set to true and <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is set to false.- or - The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has been opened for asynchronous read operations with <see cref="M:System.Diagnostics.Process.BeginOutputReadLine" />. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start">
|
||||
<summary>Startet die von der <see cref="P:System.Diagnostics.Process.StartInfo" />-Eigenschaft dieser <see cref="T:System.Diagnostics.Process" />-Komponente angegebene Prozessressource (oder verwendet sie erneut) und ordnet diese der Komponente zu.</summary>
|
||||
<returns>true, wenn eine Prozessressource gestartet wird. false, wenn keine neue Prozessressource gestartet wird, sondern z. B. eine vorhandene Prozessressource wiederverwendet wird.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified in the <see cref="T:System.Diagnostics.Process" /> component's <see cref="P:System.Diagnostics.Process.StartInfo" />.-or- The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> member of the <see cref="P:System.Diagnostics.Process.StartInfo" /> property is true while <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" />, <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" />, or <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> is true. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">There was an error in opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)">
|
||||
<summary>Startet die Prozessressource, die durch den Parameter mit den Startinformationen für den Prozess angegeben wird (z. B. den Dateinamen des zu startenden Prozesses), und ordnet die Ressource einer neuen <see cref="T:System.Diagnostics.Process" /> -Komponente zu.</summary>
|
||||
<returns>Ein neuer <see cref="T:System.Diagnostics.Process" />, der der Prozessressource zugeordnet ist oder null, wenn keine Prozessressource gestartet wurde.Beachten Sie, dass ein neuer Prozess, der parallel zu bereits ausgeführten Instanzen des gleichen Prozesses gestartet wird, unabhängig von den anderen Instanzen ist.Außerdem gibt „Start“ möglicherweise einen nicht leeren (nicht NULL) Prozess zurück, dessen Eigenschaft <see cref="T:System.Diagnostics.ProcessHasExited" /> bereits auf true festgelegt ist.In diesem Fall hat der gestartete Prozess möglicherweise eine vorhandene Instanz seiner selbst aktiviert und sich dann beendet.</returns>
|
||||
<param name="startInfo">Die <see cref="T:System.Diagnostics.ProcessStartInfo" />, die die Informationen zum Starten des Prozesses enthält, einschließlich Dateiname und Befehlszeilenargumente. </param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified in the <paramref name="startInfo" /> parameter's <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property.-or- The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property of the <paramref name="startInfo" /> parameter is true and the <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" />, <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" />, or <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> property is also true.-or-The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property of the <paramref name="startInfo" /> parameter is true and the <see cref="P:System.Diagnostics.ProcessStartInfo.UserName" /> property is not null or empty or the <see cref="P:System.Diagnostics.ProcessStartInfo.Password" /> property is not null.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="startInfo" /> parameter is null. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The file specified in the <paramref name="startInfo" /> parameter's <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property could not be found.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String)">
|
||||
<summary>Startet eine Prozessressource, indem der Name eines Dokuments oder einer Anwendungsdatei angegeben wird, und ordnet die Ressource einer neuen <see cref="T:System.Diagnostics.Process" />-Komponente zu.</summary>
|
||||
<returns>Ein neuer <see cref="T:System.Diagnostics.Process" />, der der Prozessressource zugeordnet ist oder null, wenn keine Prozessressource gestartet wurde.Beachten Sie, dass ein neuer Prozess, der parallel zu bereits ausgeführten Instanzen des gleichen Prozesses gestartet wird, unabhängig von den anderen Instanzen ist.Außerdem gibt „Start“ möglicherweise einen nicht leeren (nicht NULL) Prozess zurück, dessen Eigenschaft <see cref="T:System.Diagnostics.ProcessHasExited" /> bereits auf true festgelegt ist.In diesem Fall hat der gestartete Prozess möglicherweise eine vorhandene Instanz seiner selbst aktiviert und sich dann beendet.</returns>
|
||||
<param name="fileName">Der Name eines Dokuments oder einer Anwendungsdatei, das bzw. die im Prozess ausgeführt werden soll. </param>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The PATH environment variable has a string containing quotes.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String)">
|
||||
<summary>Startet eine Prozessressource durch Angeben des Namens einer Anwendung und einer Reihe von Befehlszeilenargumenten und ordnet die Ressource einer neuen <see cref="T:System.Diagnostics.Process" />-Komponente zu.</summary>
|
||||
<returns>Ein neuer <see cref="T:System.Diagnostics.Process" />, der der Prozessressource zugeordnet ist oder null, wenn keine Prozessressource gestartet wurde.Beachten Sie, dass ein neuer Prozess, der parallel zu bereits ausgeführten Instanzen des gleichen Prozesses gestartet wird, unabhängig von den anderen Instanzen ist.Außerdem gibt „Start“ möglicherweise einen nicht leeren (nicht NULL) Prozess zurück, dessen Eigenschaft <see cref="T:System.Diagnostics.ProcessHasExited" /> bereits auf true festgelegt ist.In diesem Fall hat der gestartete Prozess möglicherweise eine vorhandene Instanz seiner selbst aktiviert und sich dann beendet.</returns>
|
||||
<param name="fileName">Der Name einer Anwendungsdatei, die in dem Prozess ausgeführt werden soll. </param>
|
||||
<param name="arguments">Befehlszeilenargumente, die beim Starten des Prozesses übergeben werden sollen. </param>
|
||||
<exception cref="T:System.InvalidOperationException">The <paramref name="fileName" /> or <paramref name="arguments" /> parameter is null. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The PATH environment variable has a string containing quotes.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)">
|
||||
<summary>Startet eine Prozessressource durch Angeben des Namens einer Anwendung, eines Benutzernamens und einer Domäne und ordnet die Ressource einer neuen <see cref="T:System.Diagnostics.Process" />-Komponente zu.</summary>
|
||||
<returns>Ein neuer <see cref="T:System.Diagnostics.Process" />, der der Prozessressource zugeordnet ist oder null, wenn keine Prozessressource gestartet wurde.Beachten Sie, dass ein neuer Prozess, der parallel zu bereits ausgeführten Instanzen des gleichen Prozesses gestartet wird, unabhängig von den anderen Instanzen ist.Außerdem gibt „Start“ möglicherweise einen nicht leeren (nicht NULL) Prozess zurück, dessen Eigenschaft <see cref="T:System.Diagnostics.ProcessHasExited" /> bereits auf true festgelegt ist.In diesem Fall hat der gestartete Prozess möglicherweise eine vorhandene Instanz seiner selbst aktiviert und sich dann beendet.</returns>
|
||||
<param name="fileName">Der Name einer Anwendungsdatei, die in dem Prozess ausgeführt werden soll.</param>
|
||||
<param name="userName">Der beim Starten des Prozesses zu verwendende Benutzername.</param>
|
||||
<param name="password">Eine <see cref="T:System.Security.SecureString" />, die das beim Starten des Prozesses zu verwendende Kennwort enthält.</param>
|
||||
<param name="domain">Die Domäne, die beim Starten des Prozesses verwendet werden soll.</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<paramref name="fileName" /> is not an executable (.exe) file.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">There was an error in opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)">
|
||||
<summary>Startet eine Prozessressource durch Angeben des Namens einer Anwendung und einer Reihe von Befehlszeilenargumenten, eines Benutzernamens, eines Kennworts und einer Domäne und ordnet die Ressource einer neuen <see cref="T:System.Diagnostics.Process" />-Komponente zu.</summary>
|
||||
<returns>Ein neuer <see cref="T:System.Diagnostics.Process" />, der der Prozessressource zugeordnet ist oder null, wenn keine Prozessressource gestartet wurde.Beachten Sie, dass ein neuer Prozess, der parallel zu bereits ausgeführten Instanzen des gleichen Prozesses gestartet wird, unabhängig von den anderen Instanzen ist.Außerdem gibt „Start“ möglicherweise einen nicht leeren (nicht NULL) Prozess zurück, dessen Eigenschaft <see cref="T:System.Diagnostics.ProcessHasExited" /> bereits auf true festgelegt ist.In diesem Fall hat der gestartete Prozess möglicherweise eine vorhandene Instanz seiner selbst aktiviert und sich dann beendet.</returns>
|
||||
<param name="fileName">Der Name einer Anwendungsdatei, die in dem Prozess ausgeführt werden soll. </param>
|
||||
<param name="arguments">Befehlszeilenargumente, die beim Starten des Prozesses übergeben werden sollen. </param>
|
||||
<param name="userName">Der beim Starten des Prozesses zu verwendende Benutzername.</param>
|
||||
<param name="password">Eine <see cref="T:System.Security.SecureString" />, die das beim Starten des Prozesses zu verwendende Kennwort enthält.</param>
|
||||
<param name="domain">Die Domäne, die beim Starten des Prozesses verwendet werden soll.</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<paramref name="fileName" /> is not an executable (.exe) file.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StartInfo">
|
||||
<summary>Ruft die Eigenschaften ab, die an die <see cref="M:System.Diagnostics.Process.Start" />-Methode von <see cref="T:System.Diagnostics.Process" /> übergeben werden sollen, oder legt diese fest.</summary>
|
||||
<returns>Die <see cref="T:System.Diagnostics.ProcessStartInfo" />, die die Daten darstellt, mit denen der Prozess gestartet werden soll.Diese Argumente beinhalten den Namen der ausführbaren Datei oder des Dokuments, das zum Starten des Prozesses verwendet wurde.</returns>
|
||||
<exception cref="T:System.ArgumentNullException">The value that specifies the <see cref="P:System.Diagnostics.Process.StartInfo" /> is null. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StartTime">
|
||||
<summary>Ruft die Zeit ab, zu der der zugeordnete Prozess gestartet wurde.</summary>
|
||||
<returns>Ein Objekt, das angibt, wann der zugeordnete Prozess gestartet wurde.Eine Ausnahme wird ausgelöst, wenn der Prozess nicht ausgeführt wird.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.StartTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has exited.-or-The process has not been started.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred in the call to the Windows function.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Threads">
|
||||
<summary>Ruft die Gruppe von Threads ab, die im zugeordneten Prozess ausgeführt werden.</summary>
|
||||
<returns>Ein Array vom Typ <see cref="T:System.Diagnostics.ProcessThread" />, das die Threads des Betriebssystems darstellt, die gegenwärtig im zugeordneten Prozess ausgeführt werden.</returns>
|
||||
<exception cref="T:System.SystemException">The process does not have an <see cref="P:System.Diagnostics.Process.Id" />, or no process is associated with the <see cref="T:System.Diagnostics.Process" /> instance.-or- The associated process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.TotalProcessorTime">
|
||||
<summary>Ruft die gesamte Prozessorzeit für diesen Prozess ab.</summary>
|
||||
<returns>Eine <see cref="T:System.TimeSpan" />, die die Zeitspanne angibt, während der der zugeordnete Prozess die CPU verwendet hat.Dieser Wert ist die Summe von <see cref="P:System.Diagnostics.Process.UserProcessorTime" /> und <see cref="P:System.Diagnostics.Process.PrivilegedProcessorTime" />.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.TotalProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.UserProcessorTime">
|
||||
<summary>Ruft die Benutzerprozessorzeit für diesen Prozess ab.</summary>
|
||||
<returns>Eine <see cref="T:System.TimeSpan" />, die die Zeitspanne angibt, während der der zugeordnete Prozess Code innerhalb der Anwendung des Prozesses (nicht im Betriebssystemkern) ausgeführt hat.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.UserProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.VirtualMemorySize64">
|
||||
<summary>Ruft die Größe des virtuellen Speichers ab, der für den zugeordneten Prozess belegt wird.</summary>
|
||||
<returns>Die Größe des virtuellen Speichers in Bytes, der für den zugeordneten Prozess belegt wird.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.WaitForExit">
|
||||
<summary>Weist die <see cref="T:System.Diagnostics.Process" />-Komponente an, unbestimmte Zeit zu warten, bis der zugeordnete Prozess beendet wird.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The wait setting could not be accessed. </exception>
|
||||
<exception cref="T:System.SystemException">No process <see cref="P:System.Diagnostics.Process.Id" /> has been set, and a <see cref="P:System.Diagnostics.Process.Handle" /> from which the <see cref="P:System.Diagnostics.Process.Id" /> property can be determined does not exist.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.-or- You are attempting to call <see cref="M:System.Diagnostics.Process.WaitForExit" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.WaitForExit(System.Int32)">
|
||||
<summary>Weist die <see cref="T:System.Diagnostics.Process" />-Komponente an, für die Dauer von angegebenen Millisekunden zu warten, bis der zugeordnete Prozess beendet wird.</summary>
|
||||
<returns>true, wenn der zugeordnete Prozess beendet wurde, andernfalls false.</returns>
|
||||
<param name="milliseconds">Die Zeitspanne in Millisekunden, die auf die Beendigung des zugeordneten Prozesses gewartet werden soll.Der Höchstwert ist der größtmögliche Wert einer 32-Bit-Ganzzahl, der für das Betriebssystem unendlich bedeutet.</param>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The wait setting could not be accessed. </exception>
|
||||
<exception cref="T:System.SystemException">No process <see cref="P:System.Diagnostics.Process.Id" /> has been set, and a <see cref="P:System.Diagnostics.Process.Handle" /> from which the <see cref="P:System.Diagnostics.Process.Id" /> property can be determined does not exist.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.-or- You are attempting to call <see cref="M:System.Diagnostics.Process.WaitForExit(System.Int32)" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.WorkingSet64">
|
||||
<summary>Ruft die Größe des physischen Speichers ab, der für den zugeordneten Prozess belegt wird.</summary>
|
||||
<returns>Die Größe des physischen Speichers in Bytes, der für den zugeordneten Prozess belegt wird.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessModule">
|
||||
<summary>Stellt eine DLL- oder EXE-Datei dar, die in einen bestimmten Prozess geladen wird.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.BaseAddress">
|
||||
<summary>Ruft die Speicheradresse ab, an der das Modul geladen wurde.</summary>
|
||||
<returns>Die Ladeadresse des Moduls.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.EntryPointAddress">
|
||||
<summary>Ruft die Speicheradresse für die Funktion ab, die beim Laden und Ausführen des Moduls ausgeführt wird.</summary>
|
||||
<returns>Der Einstiegspunkt des Moduls.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.FileName">
|
||||
<summary>Ruft den vollständigen Pfad des Moduls ab.</summary>
|
||||
<returns>Der voll gekennzeichnete Pfad, der den Speicherort des Moduls definiert.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.ModuleMemorySize">
|
||||
<summary>Ruft den zum Laden des Moduls erforderlichen Speicherplatz ab.</summary>
|
||||
<returns>Die Größe des vom Modul belegten Speicherplatzes in Bytes.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.ModuleName">
|
||||
<summary>Ruft den Namen des Prozessmoduls ab.</summary>
|
||||
<returns>Der Name des Moduls.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModule.ToString">
|
||||
<summary>Konvertiert den Namen des Moduls in eine Zeichenfolge.</summary>
|
||||
<returns>Der Wert der <see cref="P:System.Diagnostics.ProcessModule.ModuleName" />-Eigenschaft.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessModuleCollection">
|
||||
<summary>Stellt eine Auflistung von <see cref="T:System.Diagnostics.ProcessModule" />-Objekten mit starker Typisierung zur Verfügung.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.#ctor">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:System.Diagnostics.ProcessModuleCollection" />-Klasse ohne zugeordnete <see cref="T:System.Diagnostics.ProcessModule" />-Instanzen.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:System.Diagnostics.ProcessModuleCollection" />-Klasse mit dem angegebenen Array von <see cref="T:System.Diagnostics.ProcessModule" />-Instanzen.</summary>
|
||||
<param name="processModules">Ein Array von <see cref="T:System.Diagnostics.ProcessModule" />-Instanzen, mit denen diese <see cref="T:System.Diagnostics.ProcessModuleCollection" />-Instanz initialisiert werden soll. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)">
|
||||
<summary>Bestimmt, ob das angegebene Prozessmodul in der Auflistung vorhanden ist.</summary>
|
||||
<returns>true, wenn das Modul in der Auflistung vorhanden ist, andernfalls false.</returns>
|
||||
<param name="module">Eine <see cref="T:System.Diagnostics.ProcessModule" />-Instanz, die das in dieser Auflistung zu suchende Modul anzeigt. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)">
|
||||
<summary>Kopiert ein Array von <see cref="T:System.Diagnostics.ProcessModule" />-Instanzen am angegebenen Index in die Auflistung.</summary>
|
||||
<param name="array">Ein Array von <see cref="T:System.Diagnostics.ProcessModule" />-Instanzen, das der Auflistung hinzugefügt werden soll. </param>
|
||||
<param name="index">Die Position, an der die neuen Instanzen eingefügt werden sollen. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.Count"></member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.GetEnumerator"></member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)">
|
||||
<summary>Stellt die Position eines angegebenen Moduls in der Auflistung zur Verfügung.</summary>
|
||||
<returns>Der nullbasierte Index, der die Position des Moduls in der <see cref="T:System.Diagnostics.ProcessModuleCollection" /> definiert.</returns>
|
||||
<param name="module">Der <see cref="T:System.Diagnostics.ProcessModule" />, dessen Index abgerufen wird. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)">
|
||||
<summary>Ruft einen Index ab, mit dem die Gruppe von Prozessmodulen durchlaufen werden kann.</summary>
|
||||
<returns>Ein <see cref="T:System.Diagnostics.ProcessModule" />, das die Module in der Auflistung indiziert. </returns>
|
||||
<param name="index">Der nullbasierte Indexwert des Moduls in der Auflistung. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"></member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized"></member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot"></member>
|
||||
<member name="T:System.Diagnostics.ProcessPriorityClass">
|
||||
<summary>Gibt die Priorität an, die das System einem Prozess zuordnet.Dieser Wert bestimmt, gemeinsam mit dem Prioritätswert für jeden Thread des Prozesses, die Basisprioritätsebene jedes Threads.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.AboveNormal">
|
||||
<summary>Gibt an, dass der Prozess eine höhere Priorität als Normal aufweist, aber eine niedrigere als <see cref="F:System.Diagnostics.ProcessPriorityClass.High" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.BelowNormal">
|
||||
<summary>Gibt an, dass der Prozess eine höhere Priorität als Idle aufweist, aber eine niedrigere als Normal.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.High">
|
||||
<summary>Gibt an, dass der Prozess zeitkritische Aufgaben ausführt, die sofort ausgeführt werden müssen, z. B. für das Dialogfeld Task List, das beim Aufruf durch den Benutzer unabhängig von der Last des Betriebssystems schnell angezeigt werden muss.Die Threads des Prozesses haben Vorrang vor den Threads von Prozessen in den Prioritätsklassen mit normaler oder Leerlaufpriorität.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.Idle">
|
||||
<summary>Gibt an, dass die Threads dieses Prozesses nur ausgeführt werden, wenn sich das System im Leerlauf befindet. Trifft z. B. auf einen Bildschirmschoner zu.Vor den Threads dieses Prozesses haben die Threads eines beliebigen Prozesses Vorrang, der mit einer höheren Prioritätsklasse ausgeführt wird.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.Normal">
|
||||
<summary>Gibt an, dass für den Prozess keine besondere Planung erforderlich ist.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.RealTime">
|
||||
<summary>Gibt an, dass der Prozess die höchstmögliche Priorität aufweist.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessStartInfo">
|
||||
<summary>Gibt eine Wertemenge an, die beim Starten eines Prozesses verwendet wird.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:System.Diagnostics.ProcessStartInfo" />-Klasse, ohne einen Dateinamen anzugeben, mit dem der Prozess gestartet werden soll.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:System.Diagnostics.ProcessStartInfo" />-Klasse und gibt einen Dateinamen an, mit dem der Prozess gestartet werden soll, z. B. eine Anwendung oder ein Dokument.</summary>
|
||||
<param name="fileName">Eine Anwendung oder ein Dokument, mit der bzw. dem ein Prozess gestartet wird. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:System.Diagnostics.ProcessStartInfo" />-Klasse und gibt einen Anwendungsdateinamen an, mit dem der Prozess gestartet wird, sowie einen Satz von Befehlszeilenargumenten, die an die Anwendung übergeben werden.</summary>
|
||||
<param name="fileName">Eine Anwendung, mit der ein Prozess gestartet wird. </param>
|
||||
<param name="arguments">Befehlszeilenargumente, die beim Starten des Prozesses an die Anwendung übergeben werden sollen. </param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Arguments">
|
||||
<summary>Ruft den Satz von Befehlszeilenargumenten ab, die beim Starten der Anwendung verwendet werden sollen, oder legt diesen fest.</summary>
|
||||
<returns>Eine einzelne Zeichenfolge, die die Argumente enthält, die an die in der <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" />-Eigenschaft angegebene Zielanwendung übergeben werden sollen.Der Standardwert ist eine leere Zeichenfolge ("").Unter Windows Vista und früheren Versionen des Windows-Betriebssystems muss die Länge der Argumente, die der Länge des vollständigen Pfads des Prozesses hinzugefügt werden, kleiner sein als 2080.Unter Windows 7 und höheren Versionen muss die Länge kleiner als 32699 sein.Argumente werden von der Zielanwendung analysiert und interpretiert und müssen daher den Erwartungen der betreffenden Anwendung entsprechen.Bei .NET-Anwendungen, wie sie in den Beispielen unten dargestellt sind, werden Leerzeichen als Trennzeichen zwischen Argumenten interpretiert.Ein einzelnes Argument, das Leerzeichen enthält, muss in Anführungszeichen eingeschlossen sein, diese Anführungszeichen werden jedoch nicht an die Zielanwendung übergeben.Eingeschlossene Anführungszeichen, die in das endgültige analysierte Argument aufgenommen werden sollen, müssen dreifach escaped werden.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.CreateNoWindow">
|
||||
<summary>Ruft einen Wert ab, der angibt, ob der Prozess in einem neuen Fenster gestartet werden soll, oder legt diesen fest.</summary>
|
||||
<returns>true, wenn der Prozess ohne Erstellung eines neuen, für ihn bestimmten Fensters gestartet werden soll, andernfalls false.Die Standardeinstellung ist false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Domain">
|
||||
<summary>Ruft einen Wert ab, der die Domäne kennzeichnet, die beim Starten des Prozesses verwendet werden soll, oder legt diesen fest. </summary>
|
||||
<returns>Die Active Directory-Domäne, die beim Starten des Prozesses verwendet werden soll.Die Domäneneigenschaft ist hauptsächlich für Benutzer in Unternehmensumgebungen von Interesse, die Active Directory verwenden.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Environment"></member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.FileName">
|
||||
<summary>Ruft die zu startende Anwendung oder das zu startende Dokument ab oder legt die Anwendung bzw. das Dokument fest.</summary>
|
||||
<returns>Der Name der zu startenden Anwendung oder der Dokumentname eines einer Anwendung zugeordneten Dateityps, für den eine Standard-Öffnen-Aktion verfügbar ist.Der Standardwert ist eine leere Zeichenfolge ("").</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.LoadUserProfile">
|
||||
<summary>Ruft einen Wert ab, der angibt, ob das Windows-Benutzerprofil aus der Registrierung geladen werden soll, oder legt diesen fest. </summary>
|
||||
<returns>true, wenn das Windows-Benutzerprofil geladen werden soll; andernfalls false.Die Standardeinstellung ist false.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Password">
|
||||
<summary>Ruft eine sichere Zeichenfolge ab, die das Benutzerkennwort enthält, das beim Starten des Prozesses verwendet werden soll, oder legt diese fest.</summary>
|
||||
<returns>Das beim Starten des Prozesses zu verwendende Kennwort.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError">
|
||||
<summary>Ruft einen Wert ab, der angibt, ob die Fehlerausgabe einer Anwendung in den <see cref="P:System.Diagnostics.Process.StandardError" />-Datenstrom geschrieben wird, oder legt diesen fest.</summary>
|
||||
<returns>true, wenn die Fehlerausgabe in <see cref="P:System.Diagnostics.Process.StandardError" /> geschrieben werden soll; andernfalls false.Die Standardeinstellung ist false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput">
|
||||
<summary>Ruft einen Wert ab, der angibt, ob die Eingabe für eine Anwendung aus dem <see cref="P:System.Diagnostics.Process.StandardInput" />-Datenstrom gelesen wird, oder legt diesen fest.</summary>
|
||||
<returns>true, wenn die Eingabe von <see cref="P:System.Diagnostics.Process.StandardInput" /> gelesen werden soll; andernfalls false.Die Standardeinstellung ist false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput">
|
||||
<summary>Ruft einen Wert ab, der angibt, ob die Textausgabe einer Anwendung in den <see cref="P:System.Diagnostics.Process.StandardOutput" />-Datenstrom geschrieben wird, oder legt diesen fest.</summary>
|
||||
<returns>true, wenn die Ausgabe in <see cref="P:System.Diagnostics.Process.StandardOutput" /> geschrieben werden soll; andernfalls false.Die Standardeinstellung ist false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding">
|
||||
<summary>Ruft die bevorzugte Codierung für die Fehlerausgabe ab oder legt diese fest.</summary>
|
||||
<returns>Ein Objekt, das die bevorzugte Codierung für die Fehlerausgabe darstellt.Die Standardeinstellung ist null.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding">
|
||||
<summary>Ruft die bevorzugte Codierung für die Standardausgabe ab oder legt diese fest.</summary>
|
||||
<returns>Ein Objekt, das die bevorzugte Codierung für die Standardausgabe darstellt.Die Standardeinstellung ist null.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.UserName">
|
||||
<summary>Ruft den beim Starten des Prozesses zu verwendenden Benutzernamen ab oder legt diesen fest.</summary>
|
||||
<returns>Der beim Starten des Prozesses zu verwendende Benutzername.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.UseShellExecute">
|
||||
<summary>Ruft einen Wert ab, der angibt, ob zum Starten des Prozesses die Betriebssystemshell verwendet werden soll, oder legt diesen fest.</summary>
|
||||
<returns>true, wenn beim Starten des Prozesses die Shell verwendet werden soll; false, wenn der Prozess direkt von der ausführbaren Datei aus erstellt werden soll.Die Standardeinstellung ist true.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.WorkingDirectory">
|
||||
<summary>Ruft das Arbeitsverzeichnis für den zu startenden Prozess ab, oder legt es fest, wenn die <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> Eigenschaft false ist.Ruft das Verzeichnis ab, das den zu startenden Prozess enthält, oder legt es fest, wenn <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" />true ist.</summary>
|
||||
<returns>Wenn <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" />true ist, der voll gekennzeichnete Name des Verzeichnisses, das den zu startenden Prozess enthält.Wenn die <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> Eigenschaft false ist, das Arbeitsverzeichnis für den zu startenden Prozess.Der Standardwert ist eine leere Zeichenfolge ("").</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessThread">
|
||||
<summary>Stellt einen Prozessthread für ein Betriebssystem dar.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.BasePriority">
|
||||
<summary>Ruft die Basispriorität des Threads ab.</summary>
|
||||
<returns>Die Basispriorität des Threads, die vom Betriebssystem durch Kombinieren der Prioritätsklasse des Prozesses mit der Prioritätsebene des zugeordneten Threads errechnet wird.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.CurrentPriority">
|
||||
<summary>Ruft die aktuelle Priorität des Threads ab.</summary>
|
||||
<returns>Die aktuelle Priorität des Threads. Abhängig davon, wie das Betriebssystem den Thread plant, kann diese Priorität von der Basispriorität abweichen.Die Priorität kann für einen aktiven Thread vorübergehend erhöht werden.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.Id">
|
||||
<summary>Ruft den eindeutigen Bezeichner des Threads ab.</summary>
|
||||
<returns>Der eindeutige Bezeichner, der dem angegebenen Thread zugeordnet ist.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.IdealProcessor">
|
||||
<summary>Legt den bevorzugten Prozessor fest, auf dem dieser Thread ausgeführt werden soll.</summary>
|
||||
<returns>Der bevorzugte Prozessor für den Thread, der bei der Threadplanung des Systems verwendet wird, die bestimmt, auf welchem Prozessor der Thread ausgeführt werden soll.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Das System konnte die Ausführung des Threads nicht auf den angegebenen Prozessor festlegen. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PriorityBoostEnabled">
|
||||
<summary>Ruft einen Wert ab, der angibt, ob das Betriebssystem die Priorität des zugeordneten Threads vorübergehend erhöhen soll, sobald das Hauptfenster des Threadprozesses den Fokus hat, oder legt diesen Wert fest.</summary>
|
||||
<returns>true, wenn die Priorität des Threads bei Interaktion des Benutzers mit der Schnittstelle erhöht werden soll, andernfalls false.Die Standardeinstellung ist false.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Die Informationen zur Prioritätserhöhung konnten nicht abgerufen werden.- oder -Die Informationen zur Prioritätserhöhung konnten nicht festgelegt werden. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PriorityLevel">
|
||||
<summary>Ruft die Prioritätsebene des Threads ab oder legt diese fest.</summary>
|
||||
<returns>Einer der <see cref="T:System.Diagnostics.ThreadPriorityLevel" />-Werte, der einen Bereich für die Begrenzung der Priorität des Threads angibt.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Die Informationen für die Prioritätsebene des Threads konnten nicht abgerufen werden. - oder -Die Prioritätsebene für den Thread konnte nicht festgelegt werden.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime">
|
||||
<summary>Ruft die Zeit ab, während der der Thread im Betriebssystemkern Code ausgeführt hat.</summary>
|
||||
<returns>Eine <see cref="T:System.TimeSpan" />, die angibt, wie lange der Thread im Betriebssystemkern Code ausgeführt hat.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Die Threadzeit konnte nicht abgerufen werden. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.ProcessorAffinity">
|
||||
<summary>Legt die Prozessoren fest, auf denen der zugeordnete Thread ausgeführt werden kann.</summary>
|
||||
<returns>Ein <see cref="T:System.IntPtr" />, das auf eine Gruppe von Bits zeigt, wovon jedes einzelne einen Prozessor darstellt, auf dem der Thread ausgeführt werden kann.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Die Prozessoraffinität konnte nicht festgelgt werden. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThread.ResetIdealProcessor">
|
||||
<summary>Setzt den für diesen Thread idealen Prozessor zurück, um anzugeben, dass kein einzelner idealer Prozessor vorhanden ist.Das heißt, dass jeder Prozessor ideal sein kann.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Der ideale Prozessor konnte nicht zurückgesetzt werden. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.StartAddress">
|
||||
<summary>Ruft die Speicheradresse der Funktion ab, die vom Betriebssystem aufgerufen wurde, das diesen Thread gestartet hat.</summary>
|
||||
<returns>Die Anfangsadresse des Threads, die auf die vom Thread ausgeführte anwendungsdefinierte Funktion zeigt.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.StartTime">
|
||||
<summary>Ruft die Zeit ab, zu der das Betriebssystem den Thread gestartet hat.</summary>
|
||||
<returns>Eine <see cref="T:System.DateTime" />, die die Zeit auf dem System darstellt, zu der das Betriebssystem den Thread gestartet hat.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Die Threadzeit konnte nicht abgerufen werden. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.ThreadState">
|
||||
<summary>Ruft den aktuellen Zustand dieses Threads ab.</summary>
|
||||
<returns>Ein <see cref="T:System.Diagnostics.ThreadState" />, der die Ausführung des Threads angibt, z. B. wird ausgeführt, wartet oder wurde beendet.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.TotalProcessorTime">
|
||||
<summary>Ruft die gesamte Zeit ab, während der der Thread den Prozessor verwendet hat.</summary>
|
||||
<returns>Eine <see cref="T:System.TimeSpan" />, die die Zeit angibt, während der Thread den Prozessor gesteuert hat.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Die Threadzeit konnte nicht abgerufen werden. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.UserProcessorTime">
|
||||
<summary>Ruft die Zeit ab, während der der zugeordnete Thread in der Anwendung Code ausgeführt hat.</summary>
|
||||
<returns>Eine <see cref="T:System.TimeSpan" />, die angibt, wie lange der Thread Code in der Anwendung (im Gegensatz zum Betriebssystemkern) ausgeführt hat.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Die Threadzeit konnte nicht abgerufen werden. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.WaitReason">
|
||||
<summary>Ruft die Ursache für den Wartezustand des Threads ab.</summary>
|
||||
<returns>Eine <see cref="T:System.Diagnostics.ThreadWaitReason" />, die die Ursache für den Wartezustand des Threads darstellt.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">Der Thread befindet sich nicht im Wartezustand. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessThreadCollection">
|
||||
<summary>Stellt eine Auflistung von <see cref="T:System.Diagnostics.ProcessThread" />-Objekten mit starker Typisierung zur Verfügung.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.#ctor">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:System.Diagnostics.ProcessThreadCollection" />-Klasse ohne zugeordnete <see cref="T:System.Diagnostics.ProcessThread" />-Instanzen.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:System.Diagnostics.ProcessThreadCollection" />-Klasse mit dem angegebenen Array von <see cref="T:System.Diagnostics.ProcessThread" />-Instanzen.</summary>
|
||||
<param name="processThreads">Ein Array von <see cref="T:System.Diagnostics.ProcessThread" />-Instanzen, mit denen diese <see cref="T:System.Diagnostics.ProcessThreadCollection" />-Instanz initialisiert werden soll. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)">
|
||||
<summary>Fügt einen Prozessthread an die Auflistung an.</summary>
|
||||
<returns>Der nullbasierte Index des Threads in der Auflistung.</returns>
|
||||
<param name="thread">Der der Auflistung hinzuzufügende Thread. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)">
|
||||
<summary>Bestimmt, ob der angegebene Prozessthread in der Auflistung enthalten ist.</summary>
|
||||
<returns>true, wenn der Thread in der Auflistung vorhanden ist, andernfalls false.</returns>
|
||||
<param name="thread">Eine <see cref="T:System.Diagnostics.ProcessThread" />-Instanz, die den in dieser Auflistung zu suchenden Thread anzeigt. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)">
|
||||
<summary>Kopiert ein Array von <see cref="T:System.Diagnostics.ProcessThread" />-Instanzen am angegebenen Index in die Auflistung.</summary>
|
||||
<param name="array">Ein Array von <see cref="T:System.Diagnostics.ProcessThread" />-Instanzen, das der Auflistung hinzugefügt werden soll. </param>
|
||||
<param name="index">Die Position, an der die neuen Instanzen eingefügt werden sollen. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.Count"></member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.GetEnumerator"></member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)">
|
||||
<summary>Stellt die Position eines angegebenen Threads in der Auflistung zur Verfügung.</summary>
|
||||
<returns>Der nullbasierte Index, der die Position des Threads in der <see cref="T:System.Diagnostics.ProcessThreadCollection" /> definiert.</returns>
|
||||
<param name="thread">Der <see cref="T:System.Diagnostics.ProcessThread" />, dessen Index abgerufen wird. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)">
|
||||
<summary>Fügt an der angegebenen Position einen Prozessthread in die Auflistung ein.</summary>
|
||||
<param name="index">Der nullbasierte Index, der die Position angibt, an der der Thread eingefügt werden soll. </param>
|
||||
<param name="thread">Der in die Auflistung einzufügende Thread. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)">
|
||||
<summary>Ruft einen Index ab, mit dem die Gruppe von Prozessthreads durchlaufen werden kann.</summary>
|
||||
<returns>Ein <see cref="T:System.Diagnostics.ProcessThread" />, der die Threads in der Auflistung indiziert.</returns>
|
||||
<param name="index">Der nullbasierte Indexwert des Threads in der Auflistung. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)">
|
||||
<summary>Löscht einen Prozessthread aus der Auflistung.</summary>
|
||||
<param name="thread">Der Thread, der aus der Auflistung entfernt werden soll. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"></member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized"></member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot"></member>
|
||||
<member name="T:System.Diagnostics.ThreadPriorityLevel">
|
||||
<summary>Gibt die Prioritätsebene eines Threads an.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.AboveNormal">
|
||||
<summary>Gibt eine Stufe über der normalen Priorität für die zugeordnete <see cref="T:System.Diagnostics.ProcessPriorityClass" /> an.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.BelowNormal">
|
||||
<summary>Gibt eine Stufe unter der normalen Priorität für die zugeordnete <see cref="T:System.Diagnostics.ProcessPriorityClass" /> an.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Highest">
|
||||
<summary>Gibt die höchste Priorität an.Dies ist zwei Stufen über der normalen Priorität für die zugeordnete <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Idle">
|
||||
<summary>Gibt die Leerlaufpriorität an.Dies ist der niedrigste mögliche Prioritätswert aller Threads, unabhängig vom Wert der zugeordneten <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Lowest">
|
||||
<summary>Gibt die niedrigste Priorität an.Dies ist zwei Stufen unter der normalen Priorität für die zugeordnete <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Normal">
|
||||
<summary>Gibt die normale Priorität für die zugeordnete <see cref="T:System.Diagnostics.ProcessPriorityClass" /> an.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.TimeCritical">
|
||||
<summary>Gibt die auf die Ausführungsgeschwindigkeit bezogene Priorität an.Dies ist die höchste Priorität aller Threads, unabhängig vom Wert der zugeordneten <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ThreadState">
|
||||
<summary>Gibt den aktuellen Ausführungszustand des Threads an.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Initialized">
|
||||
<summary>Ein Zustand, der angibt, dass der Thread initialisiert wurde, jedoch noch nicht gestartet ist.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Ready">
|
||||
<summary>Ein Zustand, der anzeigt, dass der Thread auf die Verwendung eines Prozessors wartet, da gegenwärtig kein Prozessor frei ist.Der Thread kann auf dem nächsten verfügbaren Prozessor ausgeführt werden.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Running">
|
||||
<summary>Ein Zustand, der angibt, dass der Thread zurzeit einen Prozessor verwendet.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Standby">
|
||||
<summary>Ein Zustand, der angibt, dass der Thread gerade einen Prozessor verwenden will.In diesem Zustand kann sich jeweils nur ein Thread befinden.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Terminated">
|
||||
<summary>Ein Zustand, der angibt, dass der Thread die Ausführung abgeschlossen hat und beendet wurde.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Transition">
|
||||
<summary>Ein Zustand, der angibt, dass der Thread auf eine andere Ressource als den Prozessor wartet, bevor er ausgeführt werden kann.Er könnte z. B. darauf warten, dass der Ausführungsstapel von der Festplatte gelesen wird.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Unknown">
|
||||
<summary>Der Zustand des Threads ist unbekannt.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Wait">
|
||||
<summary>Ein Zustand, der angibt, dass der Thread den Prozessor nicht verwenden kann, da er auf die Beendigung einer Operation in der Peripherie oder auf das Freiwerden einer Ressource wartet.Wenn der Thread bereit ist, wird der Start neu geplant.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ThreadWaitReason">
|
||||
<summary>Gibt die Ursache für den Wartezustand eines Threads an.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.EventPairHigh">
|
||||
<summary>Der Thread wartet auf das Ereignispaar High.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.EventPairLow">
|
||||
<summary>Der Thread wartet auf das Ereignispaar Low.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.ExecutionDelay">
|
||||
<summary>Die Ausführung des Threads wird verzögert.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Executive">
|
||||
<summary>Der Thread wartet auf den Planer.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.FreePage">
|
||||
<summary>Der Thread wartet auf eine freie Seite im virtuellen Speicher.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.LpcReceive">
|
||||
<summary>Der Thread wartet auf die Ankunft eines Aufrufs einer lokalen Prozedur.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.LpcReply">
|
||||
<summary>Der Thread wartet darauf, dass die Antwort auf den Aufruf einer lokalen Prozedur ankommt.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.PageIn">
|
||||
<summary>Der Thread wartet auf die Ankunft einer Seite des virtuellen Speichers im Arbeitsspeicher.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.PageOut">
|
||||
<summary>Der Thread wartet darauf, dass eine Seite des virtuellen Speichers auf den Datenträger geschrieben wird.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Suspended">
|
||||
<summary>Die Ausführung des Threads wurde unterbrochen.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.SystemAllocation">
|
||||
<summary>Der Thread wartet auf Reservierung durch das System.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Unknown">
|
||||
<summary>Der Thread befindet sich aus unbekannten Gründen im Wartezustand.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.UserRequest">
|
||||
<summary>Der Thread wartet auf eine Benutzeranforderung.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.VirtualMemory">
|
||||
<summary>Der Thread wartet darauf, dass das System virtuellen Speicher belegt.</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
997
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/es/System.Diagnostics.Process.xml
vendored
Normal file
997
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/es/System.Diagnostics.Process.xml
vendored
Normal file
@@ -0,0 +1,997 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Diagnostics.Process</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Win32.SafeHandles.SafeProcessHandle">
|
||||
<summary>[CRÍTICO PARA LA SEGURIDAD] Proporciona un contenedor administrado para un identificador de proceso.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)">
|
||||
<summary>[CRÍTICO PARA LA SEGURIDAD] Inicializa una nueva instancia de la <see cref="T:Microsoft.Win32.SafeHandles.SafeProcessHandle" /> clase a partir del identificador especificado, que indica si se va a liberar el identificador durante la fase de finalización. </summary>
|
||||
<param name="existingHandle">El identificador para ajustarse.</param>
|
||||
<param name="ownsHandle">truepara permitir de forma confiable <see cref="T:Microsoft.Win32.SafeHandles.SafeProcessHandle" /> liberar el identificador durante la fase de finalización; de lo contrario, false.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid"></member>
|
||||
<member name="T:System.Diagnostics.DataReceivedEventArgs">
|
||||
<summary>Proporciona datos para los eventos <see cref="E:System.Diagnostics.Process.OutputDataReceived" /> y <see cref="E:System.Diagnostics.Process.ErrorDataReceived" />.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.DataReceivedEventArgs.Data">
|
||||
<summary>Obtiene la línea de caracteres escrita en un flujo de salida de <see cref="T:System.Diagnostics.Process" /> redirigido.</summary>
|
||||
<returns>Línea escrita por una secuencia <see cref="T:System.Diagnostics.Process" /> asociada en su secuencia <see cref="P:System.Diagnostics.Process.StandardOutput" /> o <see cref="P:System.Diagnostics.Process.StandardError" /> redirigida.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.DataReceivedEventHandler">
|
||||
<summary>Representa el método que controlará los eventos <see cref="E:System.Diagnostics.Process.OutputDataReceived" /> o <see cref="E:System.Diagnostics.Process.ErrorDataReceived" /> de un <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<param name="sender">Origen del evento. </param>
|
||||
<param name="e">Objeto <see cref="T:System.Diagnostics.DataReceivedEventArgs" /> que contiene los datos del evento. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.Process">
|
||||
<summary>Proporciona acceso a procesos locales y remotos, y permite iniciar y detener procesos del sistema local.Para examinar el código fuente de .NET Framework de este tipo, consulte el origen de referencia.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.#ctor">
|
||||
<summary>Inicializa una nueva instancia de la clase <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.BasePriority">
|
||||
<summary>Obtiene la prioridad base del proceso asociado.</summary>
|
||||
<returns>Prioridad base, que se calcula a partir de <see cref="P:System.Diagnostics.Process.PriorityClass" /> del proceso asociado.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has exited.-or- The process has not started, so there is no process ID. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.BeginErrorReadLine">
|
||||
<summary>Inicia las operaciones de lectura asincrónica en la secuencia de <see cref="P:System.Diagnostics.Process.StandardError" /> redirigida de la aplicación.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref="P:System.Diagnostics.Process.StandardError" /> stream.- or - The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has been used by a synchronous read operation. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.BeginOutputReadLine">
|
||||
<summary>Inicia las operaciones de lectura asincrónica en la secuencia de <see cref="P:System.Diagnostics.Process.StandardOutput" /> redirigida de la aplicación.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream.- or - The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has been used by a synchronous read operation. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.CancelErrorRead">
|
||||
<summary>Cancela la operación de lectura asincrónica en la secuencia redirigida de <see cref="P:System.Diagnostics.Process.StandardError" /> de una aplicación.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardError" /> stream is not enabled for asynchronous read operations. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.CancelOutputRead">
|
||||
<summary>Cancela la operación de lectura asincrónica en la secuencia redirigida de <see cref="P:System.Diagnostics.Process.StandardOutput" /> de una aplicación.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream is not enabled for asynchronous read operations. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Dispose"></member>
|
||||
<member name="M:System.Diagnostics.Process.Dispose(System.Boolean)">
|
||||
<summary>Libera todos los recursos utilizados por este proceso.</summary>
|
||||
<param name="disposing">Es true para liberar tanto recursos administrados como no administrados; es false para liberar únicamente recursos no administrados. </param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.EnableRaisingEvents">
|
||||
<summary>Obtiene o establece si el evento <see cref="E:System.Diagnostics.Process.Exited" /> debe provocarse cuando termine el proceso.</summary>
|
||||
<returns>Es true si el evento <see cref="E:System.Diagnostics.Process.Exited" /> debe provocarse cuando termine el proceso asociado (al salir o al llamar a <see cref="M:System.Diagnostics.Process.Kill" />); de lo contrario, es false.De manera predeterminada, es false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.EnterDebugMode">
|
||||
<summary>Coloca un componente <see cref="T:System.Diagnostics.Process" /> en estado de interacción con los procesos del sistema operativo que se ejecutan en un modo especial; para ello, habilita la propiedad nativa SeDebugPrivilege en el subproceso actual.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.ErrorDataReceived">
|
||||
<summary>Se produce cuando una aplicación escribe en su secuencia redirigida de <see cref="P:System.Diagnostics.Process.StandardError" />.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ExitCode">
|
||||
<summary>Obtiene el valor especificado por el proceso asociado al terminar.</summary>
|
||||
<returns>Código especificado por el proceso asociado al terminar.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process has not exited.-or- The process <see cref="P:System.Diagnostics.Process.Handle" /> is not valid. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.ExitCode" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.Exited">
|
||||
<summary>Se produce cuando termina un proceso.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ExitTime">
|
||||
<summary>Obtiene el momento en el que terminó el proceso asociado.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.DateTime" /> que indica cuándo terminó el proceso asociado.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.ExitTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetCurrentProcess">
|
||||
<summary>Obtiene un nuevo componente <see cref="T:System.Diagnostics.Process" /> y lo asocia al proceso que está activo en ese momento.</summary>
|
||||
<returns>Nuevo componente <see cref="T:System.Diagnostics.Process" /> que está asociado al recurso del proceso que se está ejecutando en la aplicación que realiza la llamada.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessById(System.Int32)">
|
||||
<summary>Devuelve un nuevo componente <see cref="T:System.Diagnostics.Process" />, dado un identificador de un proceso en el equipo local.</summary>
|
||||
<returns>Componente <see cref="T:System.Diagnostics.Process" /> asociado al recurso del proceso local que se identifica mediante el parámetro <paramref name="processId" />.</returns>
|
||||
<param name="processId">Identificador de un recurso de proceso único en el sistema. </param>
|
||||
<exception cref="T:System.ArgumentException">The process specified by the <paramref name="processId" /> parameter is not running.The identifier might be expired.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process was not started by this object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)">
|
||||
<summary>Devuelve un nuevo componente <see cref="T:System.Diagnostics.Process" />, dados un identificador de proceso y el nombre de un equipo en la red.</summary>
|
||||
<returns>Componente <see cref="T:System.Diagnostics.Process" /> asociado a un recurso de proceso remoto que se identifica mediante el parámetro <paramref name="processId" />.</returns>
|
||||
<param name="processId">Identificador de un recurso de proceso único en el sistema. </param>
|
||||
<param name="machineName">Nombre de un equipo en la red. </param>
|
||||
<exception cref="T:System.ArgumentException">The process specified by the <paramref name="processId" /> parameter is not running.The identifier might be expired.-or- The <paramref name="machineName" /> parameter syntax is invalid.The name might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process was not started by this object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcesses">
|
||||
<summary>Crea un nuevo componente <see cref="T:System.Diagnostics.Process" /> para cada recurso de proceso del equipo local.</summary>
|
||||
<returns>Matriz de tipo <see cref="T:System.Diagnostics.Process" /> que representa todos los recursos del proceso que se ejecutan en el equipo local.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcesses(System.String)">
|
||||
<summary>Crea un nuevo componente <see cref="T:System.Diagnostics.Process" /> para cada recurso de proceso en el equipo especificado.</summary>
|
||||
<returns>Matriz de tipo <see cref="T:System.Diagnostics.Process" /> que representa todos los recursos del proceso que se ejecutan en el equipo especificado.</returns>
|
||||
<param name="machineName">Equipo desde el que se lee la lista de procesos. </param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="machineName" /> parameter syntax is invalid.It might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The operating system platform does not support this operation on remote computers. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A problem occurred accessing an underlying system API. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessesByName(System.String)">
|
||||
<summary>Crea una matriz de nuevos componentes <see cref="T:System.Diagnostics.Process" /> y los asocia a todos los recursos de proceso del equipo local que comparten el nombre de proceso especificado.</summary>
|
||||
<returns>Matriz de tipo <see cref="T:System.Diagnostics.Process" /> que representa los recursos del proceso que ejecutan la aplicación o el archivo especificado.</returns>
|
||||
<param name="processName">Nombre descriptivo del proceso. </param>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)">
|
||||
<summary>Crea una matriz de nuevos componentes <see cref="T:System.Diagnostics.Process" /> y los asocia a todos los recursos de proceso de un equipo remoto que comparten el nombre del proceso especificado.</summary>
|
||||
<returns>Matriz de tipo <see cref="T:System.Diagnostics.Process" /> que representa los recursos del proceso que ejecutan la aplicación o el archivo especificado.</returns>
|
||||
<param name="processName">Nombre descriptivo del proceso. </param>
|
||||
<param name="machineName">Nombre de un equipo en la red. </param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="machineName" /> parameter syntax is invalid.It might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The operating system platform does not support this operation on remote computers. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A problem occurred accessing an underlying system API. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.HasExited">
|
||||
<summary>Obtiene un valor que indica si el proceso asociado ha finalizado.</summary>
|
||||
<returns>Es true si el proceso del sistema operativo al que hace referencia el componente <see cref="T:System.Diagnostics.Process" /> ha terminado; de lo contrario, es false.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with the object. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The exit code for the process could not be retrieved. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.HasExited" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Id">
|
||||
<summary>Obtiene el identificador único del proceso asociado.</summary>
|
||||
<returns>Identificador único generado por el sistema del proceso al que hace referencia esta instancia de <see cref="T:System.Diagnostics.Process" />.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process's <see cref="P:System.Diagnostics.Process.Id" /> property has not been set.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Kill">
|
||||
<summary>Detiene inmediatamente el proceso asociado.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to call <see cref="M:System.Diagnostics.Process.Kill" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has already exited. -or-There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.LeaveDebugMode">
|
||||
<summary>Recupera un componente <see cref="T:System.Diagnostics.Process" /> del estado que le permite interactuar con procesos del sistema operativo que se ejecuten en un modo especial.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MachineName">
|
||||
<summary>Obtiene el nombre del equipo en el que se está ejecutando el proceso asociado.</summary>
|
||||
<returns>Nombre del equipo en el que se está ejecutando el proceso asociado.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MainModule">
|
||||
<summary>Obtiene el módulo principal del proceso asociado.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.ProcessModule" /> utilizado para iniciar el proceso.</returns>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MainModule" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A 32-bit process is trying to access the modules of a 64-bit process.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MaxWorkingSet">
|
||||
<summary>Obtiene o establece el tamaño máximo permitido para el espacio de trabajo del proceso asociado.</summary>
|
||||
<returns>Tamaño máximo permitido para el espacio de trabajo del proceso en la memoria expresado en bytes.</returns>
|
||||
<exception cref="T:System.ArgumentException">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MaxWorkingSet" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MinWorkingSet">
|
||||
<summary>Obtiene o establece el tamaño mínimo permitido para el espacio de trabajo del proceso asociado.</summary>
|
||||
<returns>Tamaño mínimo necesario para el espacio de trabajo del proceso en la memoria expresado en bytes.</returns>
|
||||
<exception cref="T:System.ArgumentException">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MinWorkingSet" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Modules">
|
||||
<summary>Obtiene los módulos cargados por el proceso asociado.</summary>
|
||||
<returns>Matriz de tipo <see cref="T:System.Diagnostics.ProcessModule" /> que representa los módulos cargados por el proceso asociado.</returns>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.Modules" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">You are attempting to access the <see cref="P:System.Diagnostics.Process.Modules" /> property for either the system process or the idle process.These processes do not have modules.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.NonpagedSystemMemorySize64">
|
||||
<summary>Obtiene el tamaño de la memoria no paginada del sistema que se ha asignado para el proceso asociado.</summary>
|
||||
<returns>El tamaño de la memoria del sistema, expresado en bytes, que se ha asignado para el proceso asociado que no puede escribirse en el archivo de paginación de la memoria virtual.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.OnExited">
|
||||
<summary>Genera el evento <see cref="E:System.Diagnostics.Process.Exited" />.</summary>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.OutputDataReceived">
|
||||
<summary>Se produce cada vez que una aplicación escribe una línea en su secuencia <see cref="P:System.Diagnostics.Process.StandardOutput" /> redirigida.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PagedMemorySize64">
|
||||
<summary>Obtiene el tamaño de la memoria paginada asignada para el proceso asociado.</summary>
|
||||
<returns>El tamaño de la memoria, expresado en bytes, asignada en el archivo de paginación de la memoria virtual para el proceso asociado.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PagedSystemMemorySize64">
|
||||
<summary>Obtiene el tamaño de la memoria paginable del sistema que se ha asignado para el proceso asociado.</summary>
|
||||
<returns>El tamaño de la memoria del sistema, expresado en bytes, que se ha asignado para el proceso asociado que puede escribirse en el archivo de paginación de la memoria virtual.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakPagedMemorySize64">
|
||||
<summary>Obtiene el tamaño de memoria máximo en el archivo de paginación de la memoria virtual que utiliza el proceso asociado.</summary>
|
||||
<returns>El tamaño de memoria máximo, expresado en bytes, asignado en el archivo de paginación de la memoria virtual para el proceso asociado desde su inicio.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakVirtualMemorySize64">
|
||||
<summary>Obtiene el tamaño máximo de la memoria virtual que utiliza el proceso asociado.</summary>
|
||||
<returns>El tamaño máximo de memoria virtual, expresado en bytes, que se ha asignado para el proceso asociado desde su inicio.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakWorkingSet64">
|
||||
<summary>Obtiene el tamaño máximo de la memoria física que utiliza el proceso asociado.</summary>
|
||||
<returns>El tamaño máximo de memoria física, expresado en bytes, que se ha asignado para el proceso asociado desde su inicio.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PriorityBoostEnabled">
|
||||
<summary>Obtiene o establece un valor que indica si el sistema operativo debería aumentar temporalmente la prioridad del proceso asociado cuando la ventana principal tenga el foco.</summary>
|
||||
<returns>Es true si la prioridad del proceso debe aumentarse dinámicamente cuando este salga del estado de espera; de lo contrario, es false.De manera predeterminada, es false.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Priority boost information could not be retrieved from the associated process resource. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PriorityBoostEnabled" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PriorityClass">
|
||||
<summary>Obtiene o establece la categoría de prioridad general del proceso asociado.</summary>
|
||||
<returns>Categoría de prioridad del proceso asociado a partir de la cual se calcula el <see cref="P:System.Diagnostics.Process.BasePriority" /> del proceso.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PriorityClass" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">You have set the <see cref="P:System.Diagnostics.Process.PriorityClass" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>
|
||||
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">Priority class cannot be set because it does not use a valid value, as defined in the <see cref="T:System.Diagnostics.ProcessPriorityClass" /> enumeration.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PrivateMemorySize64">
|
||||
<summary>Obtiene el tamaño de la memoria privada asignada para el proceso asociado.</summary>
|
||||
<returns>El tamaño de la memoria, expresado en bytes, que se ha asignado para el proceso asociado que no puede compartirse con otros procesos.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PrivilegedProcessorTime">
|
||||
<summary>Obtiene el tiempo de procesador con privilegios de este proceso.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.TimeSpan" /> que indica la cantidad de tiempo que el proceso ha invertido en la ejecución de código dentro del núcleo del sistema operativo.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PrivilegedProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ProcessName">
|
||||
<summary>Obtiene el nombre del proceso.</summary>
|
||||
<returns>Nombre que el sistema utiliza para identificar el proceso ante el usuario.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process does not have an identifier, or no process is associated with the <see cref="T:System.Diagnostics.Process" />.-or- The associated process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is not on this computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ProcessorAffinity">
|
||||
<summary>Obtiene o establece los procesadores en los que se puede programar la ejecución de los subprocesos de este proceso.</summary>
|
||||
<returns>Máscara de bits que representa los procesadores en los que pueden ejecutarse los subprocesos del proceso asociado.El valor predeterminado depende del número de procesadores del equipo.El valor predeterminado es 2 n -1, donde n representa el número de procesadores.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<see cref="P:System.Diagnostics.Process.ProcessorAffinity" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.ProcessorAffinity" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> was not available.-or- The process has exited. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Refresh">
|
||||
<summary>Descarta cualquier información acerca del proceso asociado que se haya almacenado en caché en el componente del proceso.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.SafeHandle">
|
||||
<summary>Obtiene el identificador nativo de este proceso.</summary>
|
||||
<returns>Identificador nativo de este proceso.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.SessionId">
|
||||
<summary>Obtiene el identificador de la sesión de Terminal Services para el proceso asociado.</summary>
|
||||
<returns>El identificador de la sesión de Terminal Services para el proceso asociado.</returns>
|
||||
<exception cref="T:System.NullReferenceException">There is no session associated with this process.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The <see cref="P:System.Diagnostics.Process.SessionId" /> property is not supported on Windows 98.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardError">
|
||||
<summary>Obtiene una secuencia utilizada para leer la salida de errores de la aplicación.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.IO.StreamReader" /> que puede utilizarse para leer la secuencia de error estándar de la aplicación.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has not been defined for redirection; ensure <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> is set to true and <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is set to false.- or - The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has been opened for asynchronous read operations with <see cref="M:System.Diagnostics.Process.BeginErrorReadLine" />. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardInput">
|
||||
<summary>Obtiene una secuencia que se utiliza para escribir la entrada de la aplicación.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.IO.StreamWriter" /> que puede utilizarse para escribir la secuencia de entrada estándar de la aplicación.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardInput" /> stream has not been defined because <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" /> is set to false. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardOutput">
|
||||
<summary>Obtiene una secuencia usada para leer la salida de texto de la aplicación.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.IO.StreamReader" /> que puede utilizarse para leer la secuencia de salida estándar de la aplicación.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has not been defined for redirection; ensure <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" /> is set to true and <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is set to false.- or - The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has been opened for asynchronous read operations with <see cref="M:System.Diagnostics.Process.BeginOutputReadLine" />. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start">
|
||||
<summary>Inicia (o reutiliza) el recurso de proceso especificado en la propiedad <see cref="P:System.Diagnostics.Process.StartInfo" /> de este componente <see cref="T:System.Diagnostics.Process" /> y lo asocia al componente.</summary>
|
||||
<returns>Es true si se inicia un recurso de proceso; es false si no se inicia ningún recurso de proceso nuevo (por ejemplo, si se reutiliza un recurso existente).</returns>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified in the <see cref="T:System.Diagnostics.Process" /> component's <see cref="P:System.Diagnostics.Process.StartInfo" />.-or- The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> member of the <see cref="P:System.Diagnostics.Process.StartInfo" /> property is true while <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" />, <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" />, or <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> is true. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">There was an error in opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)">
|
||||
<summary>Inicia el recurso de proceso que se especifica mediante el parámetro que contiene la información de inicio del proceso (por ejemplo, el nombre de archivo del proceso que se va a iniciar) y asocia el recurso a un nuevo componente <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Nuevo <see cref="T:System.Diagnostics.Process" /> que está asociado al recurso del proceso, o null si no se inicia ningún recurso de proceso.Tenga en cuenta que un proceso nuevo que se inicie junto a instancias del mismo proceso ya en ejecución será independiente del resto.Además, Inicio puede devolver un proceso no nulo con su propiedad <see cref="T:System.Diagnostics.ProcessHasExited" /> ya establecida en true.En tal caso, el proceso iniciado puede haber activado una instancia existente de sí mismo y, a continuación, haber salido.</returns>
|
||||
<param name="startInfo">
|
||||
<see cref="T:System.Diagnostics.ProcessStartInfo" /> que contiene la información que se utiliza para iniciar el proceso, incluidos el nombre de archivo y los argumentos de línea de comandos. </param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified in the <paramref name="startInfo" /> parameter's <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property.-or- The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property of the <paramref name="startInfo" /> parameter is true and the <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" />, <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" />, or <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> property is also true.-or-The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property of the <paramref name="startInfo" /> parameter is true and the <see cref="P:System.Diagnostics.ProcessStartInfo.UserName" /> property is not null or empty or the <see cref="P:System.Diagnostics.ProcessStartInfo.Password" /> property is not null.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="startInfo" /> parameter is null. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The file specified in the <paramref name="startInfo" /> parameter's <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property could not be found.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String)">
|
||||
<summary>Inicia un recurso de proceso con la especificación del nombre de un documento o de un archivo de aplicación y asocia el recurso a un nuevo componente <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Nuevo <see cref="T:System.Diagnostics.Process" /> que está asociado al recurso del proceso, o null si no se inicia ningún recurso de proceso.Tenga en cuenta que un proceso nuevo que se inicie junto a instancias del mismo proceso ya en ejecución será independiente del resto.Además, Inicio puede devolver un proceso no nulo con su propiedad <see cref="T:System.Diagnostics.ProcessHasExited" /> ya establecida en true.En tal caso, el proceso iniciado puede haber activado una instancia existente de sí mismo y, a continuación, haber salido.</returns>
|
||||
<param name="fileName">Nombre de un archivo de documento o aplicación que se va a ejecutar en el proceso. </param>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The PATH environment variable has a string containing quotes.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String)">
|
||||
<summary>Inicia un recurso de proceso mediante la especificación del nombre de una aplicación y un conjunto de argumentos de línea de comandos, y asocia el recurso a un nuevo componente <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Nuevo <see cref="T:System.Diagnostics.Process" /> que está asociado al recurso del proceso, o null si no se inicia ningún recurso de proceso.Tenga en cuenta que un proceso nuevo que se inicie junto a instancias del mismo proceso ya en ejecución será independiente del resto.Además, Inicio puede devolver un proceso no nulo con su propiedad <see cref="T:System.Diagnostics.ProcessHasExited" /> ya establecida en true.En tal caso, el proceso iniciado puede haber activado una instancia existente de sí mismo y, a continuación, haber salido.</returns>
|
||||
<param name="fileName">Nombre de un archivo de aplicación que se va a ejecutar en el proceso. </param>
|
||||
<param name="arguments">Argumentos de línea de comandos que se van a pasar al iniciar el proceso. </param>
|
||||
<exception cref="T:System.InvalidOperationException">The <paramref name="fileName" /> or <paramref name="arguments" /> parameter is null. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The PATH environment variable has a string containing quotes.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)">
|
||||
<summary>Inicia un recurso de proceso mediante la especificación del nombre de una aplicación, un nombre de usuario, una contraseña y un dominio, y asocia el recurso a un nuevo componente de <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Nuevo <see cref="T:System.Diagnostics.Process" /> que está asociado al recurso del proceso, o null si no se inicia ningún recurso de proceso.Tenga en cuenta que un proceso nuevo que se inicie junto a instancias del mismo proceso ya en ejecución será independiente del resto.Además, Inicio puede devolver un proceso no nulo con su propiedad <see cref="T:System.Diagnostics.ProcessHasExited" /> ya establecida en true.En tal caso, el proceso iniciado puede haber activado una instancia existente de sí mismo y, a continuación, haber salido.</returns>
|
||||
<param name="fileName">Nombre de un archivo de aplicación que se va a ejecutar en el proceso.</param>
|
||||
<param name="userName">Nombre de usuario que se va a utilizar al iniciarse el proceso.</param>
|
||||
<param name="password">
|
||||
<see cref="T:System.Security.SecureString" /> que contiene la contraseña que se va a utilizar al iniciarse el proceso.</param>
|
||||
<param name="domain">Dominio que se va a utilizar al iniciarse el proceso.</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<paramref name="fileName" /> is not an executable (.exe) file.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">There was an error in opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)">
|
||||
<summary>Inicia un recurso de proceso mediante la especificación del nombre de una aplicación y un conjunto de argumentos de línea de comandos, un nombre de usuario, una contraseña y un dominio, y asocia el recurso a un nuevo componente de <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Nuevo <see cref="T:System.Diagnostics.Process" /> que está asociado al recurso del proceso, o null si no se inicia ningún recurso de proceso.Tenga en cuenta que un proceso nuevo que se inicie junto a instancias del mismo proceso ya en ejecución será independiente del resto.Además, Inicio puede devolver un proceso no nulo con su propiedad <see cref="T:System.Diagnostics.ProcessHasExited" /> ya establecida en true.En tal caso, el proceso iniciado puede haber activado una instancia existente de sí mismo y, a continuación, haber salido.</returns>
|
||||
<param name="fileName">Nombre de un archivo de aplicación que se va a ejecutar en el proceso. </param>
|
||||
<param name="arguments">Argumentos de línea de comandos que se van a pasar al iniciar el proceso. </param>
|
||||
<param name="userName">Nombre de usuario que se va a utilizar al iniciarse el proceso.</param>
|
||||
<param name="password">
|
||||
<see cref="T:System.Security.SecureString" /> que contiene la contraseña que se va a utilizar al iniciarse el proceso.</param>
|
||||
<param name="domain">Dominio que se va a utilizar al iniciarse el proceso.</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<paramref name="fileName" /> is not an executable (.exe) file.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StartInfo">
|
||||
<summary>Obtiene o establece las propiedades que se pasan al método <see cref="M:System.Diagnostics.Process.Start" /> de <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.ProcessStartInfo" /> que representa los datos con los que iniciar el proceso.Estos argumentos incluyen el nombre del archivo ejecutable o del documento que se utilizó para iniciar el proceso.</returns>
|
||||
<exception cref="T:System.ArgumentNullException">The value that specifies the <see cref="P:System.Diagnostics.Process.StartInfo" /> is null. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StartTime">
|
||||
<summary>Obtiene el momento en el que se inició el proceso asociado.</summary>
|
||||
<returns>Objeto que indica cuándo se inició el proceso.Si no se está ejecutando el proceso, se produce una excepción.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.StartTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has exited.-or-The process has not been started.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred in the call to the Windows function.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Threads">
|
||||
<summary>Obtiene el conjunto de subprocesos que se están ejecutando en el proceso asociado.</summary>
|
||||
<returns>Matriz de tipo <see cref="T:System.Diagnostics.ProcessThread" /> que representa los subprocesos del sistema operativo que se están ejecutando actualmente en el proceso asociado.</returns>
|
||||
<exception cref="T:System.SystemException">The process does not have an <see cref="P:System.Diagnostics.Process.Id" />, or no process is associated with the <see cref="T:System.Diagnostics.Process" /> instance.-or- The associated process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.TotalProcessorTime">
|
||||
<summary>Obtiene el tiempo de procesador total de este proceso.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.TimeSpan" /> indica la cantidad de tiempo que el proceso asociado ha empleado en utilizar la CPU.Este valor es la suma de <see cref="P:System.Diagnostics.Process.UserProcessorTime" /> y <see cref="P:System.Diagnostics.Process.PrivilegedProcessorTime" />.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.TotalProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.UserProcessorTime">
|
||||
<summary>Obtiene el tiempo de procesador de usuario de este proceso.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.TimeSpan" /> que indica la cantidad de tiempo que el proceso asociado ha empleado en ejecutar código en la parte de la aplicación que corresponde al proceso (no en el núcleo del sistema operativo).</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.UserProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.VirtualMemorySize64">
|
||||
<summary>Obtiene el tamaño de la memoria virtual que se ha asignado para el proceso asociado.</summary>
|
||||
<returns>El tamaño de memoria virtual, expresado en bytes, que se ha asignado para el proceso asociado.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.WaitForExit">
|
||||
<summary>Indica al componente <see cref="T:System.Diagnostics.Process" /> que espere indefinidamente hasta que el proceso asociado termine.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The wait setting could not be accessed. </exception>
|
||||
<exception cref="T:System.SystemException">No process <see cref="P:System.Diagnostics.Process.Id" /> has been set, and a <see cref="P:System.Diagnostics.Process.Handle" /> from which the <see cref="P:System.Diagnostics.Process.Id" /> property can be determined does not exist.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.-or- You are attempting to call <see cref="M:System.Diagnostics.Process.WaitForExit" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.WaitForExit(System.Int32)">
|
||||
<summary>Indica al componente <see cref="T:System.Diagnostics.Process" /> que espere a que el proceso asociado termine durante el número de milisegundos especificado.</summary>
|
||||
<returns>Es true si el proceso asociado ha terminado; de lo contrario, es false.</returns>
|
||||
<param name="milliseconds">Cantidad de tiempo, en milisegundos, que se esperará hasta que termine el proceso asociado.El valor máximo es el valor mayor posible de un entero de 32 bits, que representa el infinito para el sistema operativo.</param>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The wait setting could not be accessed. </exception>
|
||||
<exception cref="T:System.SystemException">No process <see cref="P:System.Diagnostics.Process.Id" /> has been set, and a <see cref="P:System.Diagnostics.Process.Handle" /> from which the <see cref="P:System.Diagnostics.Process.Id" /> property can be determined does not exist.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.-or- You are attempting to call <see cref="M:System.Diagnostics.Process.WaitForExit(System.Int32)" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.WorkingSet64">
|
||||
<summary>Obtiene el tamaño de la memoria física que se ha asignado para el proceso asociado.</summary>
|
||||
<returns>El tamaño de memoria física, expresado en bytes, que se ha asignado para el proceso asociado.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessModule">
|
||||
<summary>Representa a un archivo .dll o .exe que se carga en un proceso determinado.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.BaseAddress">
|
||||
<summary>Devuelve la dirección de memoria en la que se cargó el módulo.</summary>
|
||||
<returns>Dirección de carga del módulo.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.EntryPointAddress">
|
||||
<summary>Obtiene la dirección de memoria de la función que se ejecuta cuando el sistema carga y ejecuta el módulo.</summary>
|
||||
<returns>Punto de entrada del módulo.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.FileName">
|
||||
<summary>Obtiene la ruta de acceso completa al módulo.</summary>
|
||||
<returns>Ruta de acceso completa que define la ubicación del módulo.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.ModuleMemorySize">
|
||||
<summary>Obtiene la cantidad de memoria necesaria para cargar el módulo.</summary>
|
||||
<returns>Tamaño, en bytes, de la memoria que ocupa el módulo.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.ModuleName">
|
||||
<summary>Obtiene el nombre del módulo del proceso.</summary>
|
||||
<returns>El nombre del módulo.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModule.ToString">
|
||||
<summary>Convierte el nombre del módulo en una cadena.</summary>
|
||||
<returns>Valor de la propiedad <see cref="P:System.Diagnostics.ProcessModule.ModuleName" />.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessModuleCollection">
|
||||
<summary>Proporciona una colección de objetos <see cref="T:System.Diagnostics.ProcessModule" /> fuertemente tipados.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.#ctor">
|
||||
<summary>Inicializa una nueva instancia de la clase <see cref="T:System.Diagnostics.ProcessModuleCollection" />, sin instancias de <see cref="T:System.Diagnostics.ProcessModule" /> asociadas.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])">
|
||||
<summary>Inicializa una nueva instancia de la clase <see cref="T:System.Diagnostics.ProcessModuleCollection" /> utilizando la matriz de instancias de <see cref="T:System.Diagnostics.ProcessModule" /> especificada.</summary>
|
||||
<param name="processModules">Matriz de instancias de <see cref="T:System.Diagnostics.ProcessModule" /> con la que se inicializa esta instancia de <see cref="T:System.Diagnostics.ProcessModuleCollection" />. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)">
|
||||
<summary>Determina si el módulo de proceso especificado se encuentra en la colección.</summary>
|
||||
<returns>Es true si el módulo está en la colección; en caso contrario, es false.</returns>
|
||||
<param name="module">Instancia de <see cref="T:System.Diagnostics.ProcessModule" /> que indica el módulo que se va a buscar en la colección. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)">
|
||||
<summary>Copia una matriz de instancias de <see cref="T:System.Diagnostics.ProcessModule" /> en la colección, en el índice especificado.</summary>
|
||||
<param name="array">Matriz de instancias de <see cref="T:System.Diagnostics.ProcessModule" /> que se va a agregar a la colección. </param>
|
||||
<param name="index">Ubicación en la que se van a agregar las nuevas instancias. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.Count"></member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.GetEnumerator"></member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)">
|
||||
<summary>Proporciona la ubicación de un módulo especificado en la colección.</summary>
|
||||
<returns>Índice de base cero que define la ubicación del módulo en <see cref="T:System.Diagnostics.ProcessModuleCollection" />.</returns>
|
||||
<param name="module">Objeto <see cref="T:System.Diagnostics.ProcessModule" /> cuyo índice se recupera. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)">
|
||||
<summary>Obtiene un índice para recorrer en iteración el conjunto de módulos de proceso.</summary>
|
||||
<returns>Objeto <see cref="T:System.Diagnostics.ProcessModule" /> que indiza los módulos de la colección. </returns>
|
||||
<param name="index">Valor del índice de base cero del módulo de la colección. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"></member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized"></member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot"></member>
|
||||
<member name="T:System.Diagnostics.ProcessPriorityClass">
|
||||
<summary>Indica la prioridad que el sistema asocia a un proceso.Este valor, junto con el valor de prioridad de cada subproceso del proceso, determina el nivel de prioridad base de cada subproceso.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.AboveNormal">
|
||||
<summary>Especifica que el proceso tiene una prioridad superior a Normal pero inferior a <see cref="F:System.Diagnostics.ProcessPriorityClass.High" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.BelowNormal">
|
||||
<summary>Especifica que el proceso tiene una prioridad superior a Idle pero inferior a Normal.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.High">
|
||||
<summary>Especifica que el proceso realiza tareas críticas en el tiempo que deben ejecutarse de inmediato, como el cuadro de diálogo Task List, que debe responder rápidamente cuando el usuario lo llama, independientemente de la carga del sistema operativo.Los subprocesos del proceso tienen prioridad sobre los subprocesos de aquellos procesos de clase de prioridad normal o inactiva.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.Idle">
|
||||
<summary>Especifica que los subprocesos de este proceso se ejecutan solo cuando el sistema está inactivo, como el protector de pantalla.Los subprocesos del proceso tienen menor prioridad que los subprocesos de cualquier proceso que se ejecute en una clase de prioridad más alta.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.Normal">
|
||||
<summary>Especifica que el proceso no tiene necesidades de programación especiales.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.RealTime">
|
||||
<summary>Especifica que el proceso tiene la prioridad más alta posible.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessStartInfo">
|
||||
<summary>Especifica un conjunto de valores que se usa cuando se inicia un proceso. </summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor">
|
||||
<summary>Inicializa una nueva instancia de la clase <see cref="T:System.Diagnostics.ProcessStartInfo" /> sin especificar un nombre de archivo con el que iniciar el proceso.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)">
|
||||
<summary>Inicializa una nueva instancia de la clase <see cref="T:System.Diagnostics.ProcessStartInfo" /> y especifica un nombre de archivo, como una aplicación o un documento, con el que se inicia el proceso.</summary>
|
||||
<param name="fileName">Aplicación o documento con que se inicia un proceso. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)">
|
||||
<summary>Inicializa una nueva instancia de la clase <see cref="T:System.Diagnostics.ProcessStartInfo" /> y especifica un nombre de archivo de aplicación con el que se iniciará el proceso, así como un conjunto de argumentos de línea de comandos que se pasarán a la aplicación.</summary>
|
||||
<param name="fileName">Aplicación con que se inicia un proceso. </param>
|
||||
<param name="arguments">Argumentos de línea de comandos que se van a pasar a la aplicación al iniciar el proceso. </param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Arguments">
|
||||
<summary>Obtiene o establece el conjunto de argumentos de línea de comandos que se van a usar al iniciar la aplicación.</summary>
|
||||
<returns>Cadena única que contiene los argumentos para pasar a la aplicación de destino especificada en la propiedad <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" />.El valor predeterminado es una cadena vacía ("").En Windows Vista y versiones anteriores del sistema operativo Windows, la longitud de los argumentos sumada a la longitud de la ruta de acceso completa al proceso debe ser inferior a 2080.En Windows 7 y versiones posteriores, la longitud debe ser inferior a 32.699.Los argumentos se analizan e interpretan mediante la aplicación de destino, por lo que deben estar en línea con las expectativas de la aplicación.En las aplicaciones .NET, como se muestra en los ejemplos siguientes, los espacios se interpretan como una separación entre varios argumentos.Un solo argumento que incluye espacios debe incluirse entre comillas, pero las comillas no se llevan a cabo en la aplicación de destino.En las comillas incluidas en el argumento final analizado, se elude triplemente cada marca.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.CreateNoWindow">
|
||||
<summary>Obtiene o establece un valor que indica si el proceso se va a iniciar en una nueva ventana.</summary>
|
||||
<returns>true si el proceso se debe iniciar sin crear una nueva ventana que lo contenga; de lo contrario, es false.De manera predeterminada, es false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Domain">
|
||||
<summary>Obtiene o establece un valor que identifica el dominio que se va a usar al iniciarse el proceso. </summary>
|
||||
<returns>El dominio de Active Directory que se va a usar al iniciarse el proceso.La propiedad de dominio es especialmente interesante para los usuarios en entornos de empresa que usan Active Directory.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Environment"></member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.FileName">
|
||||
<summary>Obtiene o establece la aplicación o el documento que se va a iniciar.</summary>
|
||||
<returns>Nombre de la aplicación que se va a iniciar o nombre de un documento que tiene un tipo de archivo asociado a una aplicación que dispone de una acción de apertura predeterminada.El valor predeterminado es una cadena vacía ("").</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.LoadUserProfile">
|
||||
<summary>Obtiene o establece un valor que indica si el perfil de usuario de Windows se va a cargar desde el registro. </summary>
|
||||
<returns>true si el perfil de usuario de Windows se debe cargar; de lo contrario, es false.De manera predeterminada, es false.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Password">
|
||||
<summary>Obtiene o establece una cadena segura que contiene la contraseña del usuario que se va a usar al iniciar el proceso.</summary>
|
||||
<returns>Contraseña de usuario que se va a usar al iniciar el proceso.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError">
|
||||
<summary>Obtiene o establece un valor que indica si la salida de errores de una aplicación se escribe en la secuencia de <see cref="P:System.Diagnostics.Process.StandardError" />.</summary>
|
||||
<returns>true si la salida de errores se debe escribir en <see cref="P:System.Diagnostics.Process.StandardError" />; en caso contrario, es false.De manera predeterminada, es false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput">
|
||||
<summary>Obtiene o establece un valor que indica si la entrada para una aplicación se lee de la secuencia de <see cref="P:System.Diagnostics.Process.StandardInput" />.</summary>
|
||||
<returns>true si la entrada se debe leer desde <see cref="P:System.Diagnostics.Process.StandardInput" />; en caso contrario, es false.De manera predeterminada, es false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput">
|
||||
<summary>Obtiene o establece un valor que indica si la salida de una aplicación se escribe en la secuencia de <see cref="P:System.Diagnostics.Process.StandardOutput" />.</summary>
|
||||
<returns>true si la salida se debe escribir en <see cref="P:System.Diagnostics.Process.StandardOutput" />; de lo contrario, es false.De manera predeterminada, es false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding">
|
||||
<summary>Obtiene o establece la codificación preferente para la salida de errores.</summary>
|
||||
<returns>Objeto que representa la codificación preferente para la salida de errores.De manera predeterminada, es null.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding">
|
||||
<summary>Obtiene o establece la codificación preferente para la salida estándar.</summary>
|
||||
<returns>Objeto que representa la codificación preferente para la salida estándar.De manera predeterminada, es null.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.UserName">
|
||||
<summary>Obtiene o establece el nombre de usuario que se va a usar al iniciar el proceso.</summary>
|
||||
<returns>Nombre de usuario que se va a utilizar al iniciarse el proceso.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.UseShellExecute">
|
||||
<summary>Obtiene o establece un valor que indica si se va a usar el shell del sistema operativo para iniciar el proceso.</summary>
|
||||
<returns>true si el shell se debe usar al iniciar el proceso; false si el proceso debería crearse directamente desde el archivo ejecutable.De manera predeterminada, es true.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.WorkingDirectory">
|
||||
<summary>Cuando la propiedad de <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> es false, obtiene o establece el directorio de trabajo para que el proceso se inicie.Cuando <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> es true, obtiene o establece el directorio que contiene el proceso que se iniciará.</summary>
|
||||
<returns>Cuando <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> es true, el nombre completo del directorio que contiene el proceso que se va a iniciar.Cuando la propiedad de <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> es false, el directorio de trabajo para que el proceso se inicie.El valor predeterminado es una cadena vacía ("").</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessThread">
|
||||
<summary>Representa un subproceso del sistema operativo.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.BasePriority">
|
||||
<summary>Obtiene la prioridad base del subproceso.</summary>
|
||||
<returns>Prioridad base del subproceso, calculada por el sistema operativo mediante la combinación de la clase de prioridad del proceso y el nivel de prioridad del subproceso asociado.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.CurrentPriority">
|
||||
<summary>Obtiene la prioridad actual del subproceso.</summary>
|
||||
<returns>Prioridad actual del subproceso, que puede variar respecto a la prioridad base en función de cómo programe el subproceso el sistema operativo.Es posible aumentar temporalmente la prioridad para un subproceso activo.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.Id">
|
||||
<summary>Obtiene el identificador único del subproceso.</summary>
|
||||
<returns>Identificador único asociado a un subproceso específico.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.IdealProcessor">
|
||||
<summary>Establece el procesador preferido para ejecutar este subproceso.</summary>
|
||||
<returns>Procesador preferido para el subproceso, que se utiliza cuando el sistema programa los subprocesos, con el fin de determinar en qué procesador se ejecutará.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">El sistema no pudo establecer el subproceso para que se iniciara en el procesador especificado. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La plataforma es Windows 98 o Windows Millennium. </exception>
|
||||
<exception cref="T:System.NotSupportedException">El proceso está en un equipo remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PriorityBoostEnabled">
|
||||
<summary>Obtiene o establece un valor que indica si el sistema operativo debe aumentar temporalmente la prioridad del subproceso asociado siempre que la ventana principal del proceso del subproceso reciba el foco.</summary>
|
||||
<returns>Es true para aumentar la prioridad del subproceso cuando el usuario interactúe con la interfaz del proceso; de lo contrario, es false.El valor predeterminado es false.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">No se pudo recuperar la información del aumento de prioridad.O bienNo se pudo establecer la información del aumento de prioridad. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La plataforma es Windows 98 o Windows Millennium. </exception>
|
||||
<exception cref="T:System.NotSupportedException">El proceso está en un equipo remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PriorityLevel">
|
||||
<summary>Obtiene o establece el nivel de prioridad del subproceso.</summary>
|
||||
<returns>Uno de los valores de <see cref="T:System.Diagnostics.ThreadPriorityLevel" />, que especifica un intervalo que limita la prioridad del subproceso.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">No se pudo recuperar la información del nivel de prioridad de subproceso. O bienNo se pudo establecer el nivel de prioridad del subproceso.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La plataforma es Windows 98 o Windows Millennium. </exception>
|
||||
<exception cref="T:System.NotSupportedException">El proceso está en un equipo remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime">
|
||||
<summary>Obtiene el tiempo durante el cual el subproceso ha ejecutado código dentro del núcleo del sistema operativo.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.TimeSpan" /> que indica la cantidad de tiempo que el subproceso ha estado ejecutando código dentro del núcleo del sistema operativo.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">No se pudo recuperar el tiempo del subproceso. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La plataforma es Windows 98 o Windows Millennium. </exception>
|
||||
<exception cref="T:System.NotSupportedException">El proceso está en un equipo remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.ProcessorAffinity">
|
||||
<summary>Establece los procesadores en los que puede ejecutarse el subproceso asociado.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.IntPtr" /> que señala a un conjunto de bits, cada uno de los cuales representa a un procesador en el que puede ejecutarse el subproceso.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">No se pudo establecer la afinidad de procesador. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La plataforma es Windows 98 o Windows Millennium. </exception>
|
||||
<exception cref="T:System.NotSupportedException">El proceso está en un equipo remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThread.ResetIdealProcessor">
|
||||
<summary>Restablece el procesador ideal para este subproceso a fin de indicar que no hay un solo procesador ideal.En otras palabras, cualquier procesador es ideal.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">No se pudo restablecer el procesador ideal. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La plataforma es Windows 98 o Windows Millennium. </exception>
|
||||
<exception cref="T:System.NotSupportedException">El proceso está en un equipo remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.StartAddress">
|
||||
<summary>Obtiene la dirección de memoria de la función a la que llamó el sistema operativo para iniciar este subproceso.</summary>
|
||||
<returns>Dirección inicial del subproceso, que señala a la función definida por la aplicación que el subproceso ejecuta.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La plataforma es Windows 98 o Windows Millennium. </exception>
|
||||
<exception cref="T:System.NotSupportedException">El proceso está en un equipo remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.StartTime">
|
||||
<summary>Obtiene la hora a la que el sistema operativo inició el subproceso.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.DateTime" /> que representa la hora que tenía el sistema cuando el sistema operativo inició el subproceso.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">No se pudo recuperar el tiempo del subproceso. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La plataforma es Windows 98 o Windows Millennium. </exception>
|
||||
<exception cref="T:System.NotSupportedException">El proceso está en un equipo remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.ThreadState">
|
||||
<summary>Obtiene el estado actual de este subproceso.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.ThreadState" /> que indica el estado de ejecución del subproceso; por ejemplo, en ejecución, en espera o terminado.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La plataforma es Windows 98 o Windows Millennium. </exception>
|
||||
<exception cref="T:System.NotSupportedException">El proceso está en un equipo remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.TotalProcessorTime">
|
||||
<summary>Obtiene la cantidad total de tiempo que este subproceso ha estado usando el procesador.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.TimeSpan" /> que indica la cantidad de tiempo que el subproceso ha tenido el control del procesador.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">No se pudo recuperar el tiempo del subproceso. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La plataforma es Windows 98 o Windows Millennium. </exception>
|
||||
<exception cref="T:System.NotSupportedException">El proceso está en un equipo remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.UserProcessorTime">
|
||||
<summary>Obtiene el tiempo durante el cual el subproceso asociado ha ejecutado código dentro de la aplicación.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.TimeSpan" /> que indica la cantidad de tiempo que el subproceso ha estado ejecutando código dentro de la aplicación, en lugar de dentro del núcleo del sistema operativo.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">No se pudo recuperar el tiempo del subproceso. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La plataforma es Windows 98 o Windows Millennium. </exception>
|
||||
<exception cref="T:System.NotSupportedException">El proceso está en un equipo remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.WaitReason">
|
||||
<summary>Obtiene la razón por la que el subproceso está esperando.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.ThreadWaitReason" /> que representa la razón por la cual el subproceso se encuentra en estado de espera.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">El subproceso no se encuentra en estado de espera. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La plataforma es Windows 98 o Windows Millennium. </exception>
|
||||
<exception cref="T:System.NotSupportedException">El proceso está en un equipo remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessThreadCollection">
|
||||
<summary>Proporciona una colección de objetos <see cref="T:System.Diagnostics.ProcessThread" /> fuertemente tipados.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.#ctor">
|
||||
<summary>Inicializa una instancia nueva de la clase <see cref="T:System.Diagnostics.ProcessThreadCollection" />, sin instancias de <see cref="T:System.Diagnostics.ProcessThread" /> asociadas.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])">
|
||||
<summary>Inicializa una instancia nueva de la clase <see cref="T:System.Diagnostics.ProcessThreadCollection" /> utilizando la matriz de instancias de <see cref="T:System.Diagnostics.ProcessThread" /> especificada.</summary>
|
||||
<param name="processThreads">Matriz de instancias de <see cref="T:System.Diagnostics.ProcessThread" /> con la que se inicializa esta instancia de <see cref="T:System.Diagnostics.ProcessThreadCollection" />. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)">
|
||||
<summary>Agrega un subproceso del proceso a la colección.</summary>
|
||||
<returns>Índice de base cero del subproceso de la colección.</returns>
|
||||
<param name="thread">Subproceso que se va a agregar a la colección. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)">
|
||||
<summary>Determina si el subproceso de proceso especificado se encuentra en la colección.</summary>
|
||||
<returns>Es true si el subproceso está en la colección; en caso contrario, es false.</returns>
|
||||
<param name="thread">Instancia de <see cref="T:System.Diagnostics.ProcessThread" /> que indica el subproceso que se va a buscar en la colección. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)">
|
||||
<summary>Copia una matriz de instancias de <see cref="T:System.Diagnostics.ProcessThread" /> en la colección, en el índice especificado.</summary>
|
||||
<param name="array">Matriz de instancias de <see cref="T:System.Diagnostics.ProcessThread" /> que se va a agregar a la colección. </param>
|
||||
<param name="index">Ubicación en la que se van a agregar las nuevas instancias. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.Count"></member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.GetEnumerator"></member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)">
|
||||
<summary>Proporciona la ubicación de un subproceso especificado en la colección.</summary>
|
||||
<returns>Índice de base cero que define la ubicación del subproceso en la <see cref="T:System.Diagnostics.ProcessThreadCollection" />.</returns>
|
||||
<param name="thread">
|
||||
<see cref="T:System.Diagnostics.ProcessThread" /> cuyo índice se recupera. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)">
|
||||
<summary>Inserta un subproceso de proceso en la ubicación especificada de la colección.</summary>
|
||||
<param name="index">Índice de base cero que indica la ubicación en la que se va a insertar el subproceso. </param>
|
||||
<param name="thread">Subproceso que se va a insertar en la colección. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)">
|
||||
<summary>Obtiene un índice para recorrer en iteración el conjunto de subprocesos.</summary>
|
||||
<returns>Objeto <see cref="T:System.Diagnostics.ProcessThread" /> que indiza los subprocesos de la colección.</returns>
|
||||
<param name="index">Valor del índice de base cero del subproceso de la colección. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)">
|
||||
<summary>Elimina un subproceso de proceso de la colección.</summary>
|
||||
<param name="thread">Subproceso que se va a quitar de la colección. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"></member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized"></member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot"></member>
|
||||
<member name="T:System.Diagnostics.ThreadPriorityLevel">
|
||||
<summary>Especifica el nivel de prioridad de un subproceso.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.AboveNormal">
|
||||
<summary>Especifica un paso por encima de la prioridad normal para la clase <see cref="T:System.Diagnostics.ProcessPriorityClass" /> asociada.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.BelowNormal">
|
||||
<summary>Especifica un paso por debajo de la prioridad normal para la clase <see cref="T:System.Diagnostics.ProcessPriorityClass" /> asociada.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Highest">
|
||||
<summary>Especifica la prioridad más alta.En otras palabras, dos pasos por encima de la prioridad normal para la clase <see cref="T:System.Diagnostics.ProcessPriorityClass" /> asociada.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Idle">
|
||||
<summary>Especifica la prioridad de inactividad.Éste es el valor de prioridad más bajo posible para todos los subprocesos, independientemente del valor de la clase <see cref="T:System.Diagnostics.ProcessPriorityClass" /> asociada.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Lowest">
|
||||
<summary>Especifica la prioridad más baja.Es decir, dos pasos por debajo de la prioridad normal para la clase <see cref="T:System.Diagnostics.ProcessPriorityClass" /> asociada.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Normal">
|
||||
<summary>Especifica la prioridad normal para la clase <see cref="T:System.Diagnostics.ProcessPriorityClass" /> asociada.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.TimeCritical">
|
||||
<summary>Especifica la prioridad de tiempo crítico.Éste es el valor de prioridad más alto de todos los subprocesos, independientemente del valor de la clase <see cref="T:System.Diagnostics.ProcessPriorityClass" /> asociada.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ThreadState">
|
||||
<summary>Especifica el estado de ejecución actual del subproceso.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Initialized">
|
||||
<summary>Estado que indica que el subproceso se ha inicializado, pero no se ha iniciado todavía.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Ready">
|
||||
<summary>Estado que indica que el subproceso está esperando para usar un procesador porque no hay ninguno libre.El subproceso está preparado para ejecutarse en el primer procesador que quede disponible.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Running">
|
||||
<summary>Estado que indica que el subproceso está usando un procesador actualmente.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Standby">
|
||||
<summary>Estado que indica que el subproceso va a empezar a usar un procesador.En un momento dado, sólo puede haber un subproceso en este estado.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Terminated">
|
||||
<summary>Estado que indica que el subproceso ha finalizado su ejecución y ha terminado.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Transition">
|
||||
<summary>Estado que indica que el subproceso está esperando un recurso, que no es el procesador, para poder ejecutarse.Por ejemplo, puede estar esperando a que la pila de ejecución se pagine desde el disco.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Unknown">
|
||||
<summary>No se conoce el estado del subproceso.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Wait">
|
||||
<summary>Estado que indica que el subproceso no está listo para usar el procesador porque está esperando a que termine una operación periférica o a que quede libre un recurso.Cuando el subproceso esté listo, se volverá a programar.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ThreadWaitReason">
|
||||
<summary>Especifica la razón por la que el subproceso está esperando.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.EventPairHigh">
|
||||
<summary>El subproceso está esperando un par de eventos alto.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.EventPairLow">
|
||||
<summary>El subproceso está esperando un par de eventos bajo.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.ExecutionDelay">
|
||||
<summary>La ejecución del subproceso está retardada.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Executive">
|
||||
<summary>El subproceso está esperando al programador.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.FreePage">
|
||||
<summary>El subproceso está esperando una página de memoria virtual libre.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.LpcReceive">
|
||||
<summary>El subproceso está esperando a que llegue una llamada a procedimiento local.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.LpcReply">
|
||||
<summary>El subproceso está esperando a que llegue la respuesta a una llamada a procedimiento local.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.PageIn">
|
||||
<summary>El subproceso está esperando a que llegue a la memoria una página de memoria virtual.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.PageOut">
|
||||
<summary>El subproceso está esperando a que se escriba en el disco una página de memoria virtual.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Suspended">
|
||||
<summary>La ejecución del subproceso está suspendida.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.SystemAllocation">
|
||||
<summary>El subproceso está esperando la asignación del sistema.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Unknown">
|
||||
<summary>No se conoce la razón por la que el subproceso está esperando.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.UserRequest">
|
||||
<summary>El subproceso está esperando una solicitud del usuario.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.VirtualMemory">
|
||||
<summary>El subproceso está esperando a que el sistema asigne memoria virtual.</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
1001
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/fr/System.Diagnostics.Process.xml
vendored
Normal file
1001
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/fr/System.Diagnostics.Process.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
981
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/it/System.Diagnostics.Process.xml
vendored
Normal file
981
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/it/System.Diagnostics.Process.xml
vendored
Normal file
@@ -0,0 +1,981 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Diagnostics.Process</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Win32.SafeHandles.SafeProcessHandle">
|
||||
<summary>[SecurityCritical] Fornisce un wrapper gestito per un handle di processo.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)">
|
||||
<summary>[SecurityCritical] Inizializza una nuova istanza della classe <see cref="T:Microsoft.Win32.SafeHandles.SafeProcessHandle" /> dall'handle specificato, indicando se rilasciare l'handle durante la fase di finalizzazione. </summary>
|
||||
<param name="existingHandle">Handle di cui eseguire il wrapping.</param>
|
||||
<param name="ownsHandle">trueper consentire in modo affidabile <see cref="T:Microsoft.Win32.SafeHandles.SafeProcessHandle" /> rilasciare l'handle durante la fase di finalizzazione; in caso contrario, false.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid"></member>
|
||||
<member name="T:System.Diagnostics.DataReceivedEventArgs">
|
||||
<summary>Fornisce i dati per gli eventi <see cref="E:System.Diagnostics.Process.OutputDataReceived" /> e <see cref="E:System.Diagnostics.Process.ErrorDataReceived" />.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.DataReceivedEventArgs.Data">
|
||||
<summary>Ottiene la riga di caratteri che è stata scritta in un flusso di output di <see cref="T:System.Diagnostics.Process" /> reindirizzato.</summary>
|
||||
<returns>Riga scritta da un <see cref="T:System.Diagnostics.Process" /> associato al relativo flusso di <see cref="P:System.Diagnostics.Process.StandardOutput" /> o di <see cref="P:System.Diagnostics.Process.StandardError" /> reindirizzato.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.DataReceivedEventHandler">
|
||||
<summary>Rappresenta il metodo che gestirà l'evento <see cref="E:System.Diagnostics.Process.OutputDataReceived" /> o <see cref="E:System.Diagnostics.Process.ErrorDataReceived" /> di un oggetto <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<param name="sender">Origine dell'evento. </param>
|
||||
<param name="e">Oggetto <see cref="T:System.Diagnostics.DataReceivedEventArgs" /> che contiene i dati dell'evento. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.Process">
|
||||
<summary>Fornisce l'accesso ai processi locali e remoti e permette di avviare e arrestare i processi locali del sistema.Per esaminare il codice sorgente di .NET Framework per questo tipo, vedere Origine riferimento.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.#ctor">
|
||||
<summary>Inizializza una nuova istanza della classe <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.BasePriority">
|
||||
<summary>Ottiene la priorità base del processo associato.</summary>
|
||||
<returns>Priorità base, calcolata dalla proprietà <see cref="P:System.Diagnostics.Process.PriorityClass" /> del processo associato.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has exited.-or- The process has not started, so there is no process ID. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.BeginErrorReadLine">
|
||||
<summary>Inizia le operazioni di lettura asincrona sul flusso <see cref="P:System.Diagnostics.Process.StandardError" /> reindirizzato dell'applicazione.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref="P:System.Diagnostics.Process.StandardError" /> stream.- or - The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has been used by a synchronous read operation. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.BeginOutputReadLine">
|
||||
<summary>Inizia le operazioni di lettura asincrona sul flusso <see cref="P:System.Diagnostics.Process.StandardOutput" /> reindirizzato dell'applicazione.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream.- or - The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has been used by a synchronous read operation. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.CancelErrorRead">
|
||||
<summary>Annulla l'operazione di lettura asincrona sul flusso <see cref="P:System.Diagnostics.Process.StandardError" /> reindirizzato di un'applicazione.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardError" /> stream is not enabled for asynchronous read operations. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.CancelOutputRead">
|
||||
<summary>Annulla l'operazione di lettura asincrona sul flusso <see cref="P:System.Diagnostics.Process.StandardOutput" /> reindirizzato di un'applicazione.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream is not enabled for asynchronous read operations. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Dispose"></member>
|
||||
<member name="M:System.Diagnostics.Process.Dispose(System.Boolean)">
|
||||
<summary>Rilascia tutte le risorse usate dal processo.</summary>
|
||||
<param name="disposing">true per rilasciare sia le risorse gestite sia quelle non gestite; false per rilasciare solo le risorse non gestite. </param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.EnableRaisingEvents">
|
||||
<summary>Ottiene o imposta la generazione dell'evento <see cref="E:System.Diagnostics.Process.Exited" /> quando il processo viene terminato.</summary>
|
||||
<returns>true se l'evento <see cref="E:System.Diagnostics.Process.Exited" /> dovrà essere generato quando il processo associato viene terminato (mediante un'uscita o una chiamata al metodo <see cref="M:System.Diagnostics.Process.Kill" />); in caso contrario, false.Il valore predefinito è false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.EnterDebugMode">
|
||||
<summary>Imposta un componente <see cref="T:System.Diagnostics.Process" /> nello stato che gli permette di interagire con i processi del sistema operativo eseguiti in modalità speciale attivando la proprietà nativa SeDebugPrivilege sul thread corrente.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.ErrorDataReceived">
|
||||
<summary>Si verifica quando un'applicazione scrive nel proprio flusso <see cref="P:System.Diagnostics.Process.StandardError" /> reindirizzato.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ExitCode">
|
||||
<summary>Ottiene il valore specificato dal processo associato quando è stato terminato.</summary>
|
||||
<returns>Codice specificato dal processo associato quando è stato terminato.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process has not exited.-or- The process <see cref="P:System.Diagnostics.Process.Handle" /> is not valid. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.ExitCode" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.Exited">
|
||||
<summary>Si verifica al termine di un processo.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ExitTime">
|
||||
<summary>Ottiene l'ora in cui il processo associato è stato terminato.</summary>
|
||||
<returns>Oggetto <see cref="T:System.DateTime" /> che indica il momento in cui il processo associato è stato terminato.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.ExitTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetCurrentProcess">
|
||||
<summary>Ottiene un nuovo componente <see cref="T:System.Diagnostics.Process" /> e lo associa al processo attivo.</summary>
|
||||
<returns>Nuovo componente <see cref="T:System.Diagnostics.Process" /> associato alla risorsa di processo che sta eseguendo l'applicazione chiamante.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessById(System.Int32)">
|
||||
<summary>Restituisce un nuovo componente <see cref="T:System.Diagnostics.Process" />, dato l'identificatore di un processo nel computer locale.</summary>
|
||||
<returns>Componente <see cref="T:System.Diagnostics.Process" /> associato alla risorsa locale del processo identificata dal parametro <paramref name="processId" />.</returns>
|
||||
<param name="processId">Identificatore univoco nel sistema di una risorsa di processo. </param>
|
||||
<exception cref="T:System.ArgumentException">The process specified by the <paramref name="processId" /> parameter is not running.The identifier might be expired.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process was not started by this object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)">
|
||||
<summary>Restituisce un nuovo componente <see cref="T:System.Diagnostics.Process" />, dato un identificatore di processo e il nome di un computer sulla rete.</summary>
|
||||
<returns>Componente <see cref="T:System.Diagnostics.Process" /> associato a una risorsa di processo remota identificata dal parametro <paramref name="processId" />.</returns>
|
||||
<param name="processId">Identificatore univoco nel sistema di una risorsa di processo. </param>
|
||||
<param name="machineName">Nome di un computer della rete. </param>
|
||||
<exception cref="T:System.ArgumentException">The process specified by the <paramref name="processId" /> parameter is not running.The identifier might be expired.-or- The <paramref name="machineName" /> parameter syntax is invalid.The name might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process was not started by this object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcesses">
|
||||
<summary>Crea un nuovo componente <see cref="T:System.Diagnostics.Process" /> per ciascuna risorsa di processo del computer locale.</summary>
|
||||
<returns>Matrice di tipo <see cref="T:System.Diagnostics.Process" /> che rappresenta tutte le risorse di processo in esecuzione sul computer locale.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcesses(System.String)">
|
||||
<summary>Crea un nuovo componente <see cref="T:System.Diagnostics.Process" /> per ciascuna risorsa di processo nel computer specificato.</summary>
|
||||
<returns>Matrice di tipo <see cref="T:System.Diagnostics.Process" /> che rappresenta tutte le risorse di processo in esecuzione sul computer specificato.</returns>
|
||||
<param name="machineName">Computer da cui leggere l'elenco di processi. </param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="machineName" /> parameter syntax is invalid.It might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The operating system platform does not support this operation on remote computers. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A problem occurred accessing an underlying system API. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessesByName(System.String)">
|
||||
<summary>Crea una matrice di nuovi componenti <see cref="T:System.Diagnostics.Process" /> e li associa a tutte le risorse di processo nel computer locale che condividono il nome di processo specificato.</summary>
|
||||
<returns>Una matrice di tipo <see cref="T:System.Diagnostics.Process" /> che rappresenta le risorse di processo che eseguono l'applicazione o il file specificati.</returns>
|
||||
<param name="processName">Nome descrittivo del processo. </param>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)">
|
||||
<summary>Crea una matrice di nuovi componenti <see cref="T:System.Diagnostics.Process" /> e li associa a tutte le risorse di processo in un computer remoto che condividono il nome di processo specificato.</summary>
|
||||
<returns>Una matrice di tipo <see cref="T:System.Diagnostics.Process" /> che rappresenta le risorse di processo che eseguono l'applicazione o il file specificati.</returns>
|
||||
<param name="processName">Nome descrittivo del processo. </param>
|
||||
<param name="machineName">Nome di un computer della rete. </param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="machineName" /> parameter syntax is invalid.It might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The operating system platform does not support this operation on remote computers. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A problem occurred accessing an underlying system API. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.HasExited">
|
||||
<summary>Ottiene un valore che indica se il processo associato è stato terminato.</summary>
|
||||
<returns>true se il processo del sistema operativo cui fa riferimento il componente <see cref="T:System.Diagnostics.Process" /> è stato terminato; in caso contrario, false.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with the object. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The exit code for the process could not be retrieved. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.HasExited" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Id">
|
||||
<summary>Ottiene l'identificatore univoco per il processo associato.</summary>
|
||||
<returns>Identificatore univoco generato dal sistema relativo al processo cui questa istanza di <see cref="T:System.Diagnostics.Process" /> fa riferimento.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process's <see cref="P:System.Diagnostics.Process.Id" /> property has not been set.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Kill">
|
||||
<summary>Arresta immediatamente il processo associato.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to call <see cref="M:System.Diagnostics.Process.Kill" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has already exited. -or-There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.LeaveDebugMode">
|
||||
<summary>Fa uscire un componente <see cref="T:System.Diagnostics.Process" /> dallo stato che permette di interagire con i processi del sistema operativo eseguiti in modalità speciale.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MachineName">
|
||||
<summary>Ottiene il nome del computer sul quale è in esecuzione il processo associato.</summary>
|
||||
<returns>Nome del computer sul quale è in esecuzione il processo associato.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MainModule">
|
||||
<summary>Ottiene il modulo principale del processo associato.</summary>
|
||||
<returns>Oggetto <see cref="T:System.Diagnostics.ProcessModule" /> usato per avviare il processo.</returns>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MainModule" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A 32-bit process is trying to access the modules of a 64-bit process.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MaxWorkingSet">
|
||||
<summary>Ottiene o imposta la dimensione massima del working set consentita per il processo associato.</summary>
|
||||
<returns>Dimensione massima del working set consentita in memoria per il processo, in byte.</returns>
|
||||
<exception cref="T:System.ArgumentException">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MaxWorkingSet" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MinWorkingSet">
|
||||
<summary>Ottiene o imposta la dimensione minima del working set consentita per il processo associato.</summary>
|
||||
<returns>Dimensione minima del working set richiesta in memoria per il processo, in byte.</returns>
|
||||
<exception cref="T:System.ArgumentException">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MinWorkingSet" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Modules">
|
||||
<summary>Ottiene i moduli che sono stati caricati dal processo associato.</summary>
|
||||
<returns>Matrice di tipo <see cref="T:System.Diagnostics.ProcessModule" /> che rappresenta i moduli caricati dal processo associato.</returns>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.Modules" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">You are attempting to access the <see cref="P:System.Diagnostics.Process.Modules" /> property for either the system process or the idle process.These processes do not have modules.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.NonpagedSystemMemorySize64">
|
||||
<summary>Ottiene la quantità di memoria di sistema non di paging allocata per il processo associato.</summary>
|
||||
<returns>Quantità di memoria di sistema, in byte, allocata per il processo associato che non può essere scritta nel file di paging della memoria virtuale.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.OnExited">
|
||||
<summary>Genera l'evento <see cref="E:System.Diagnostics.Process.Exited" />.</summary>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.OutputDataReceived">
|
||||
<summary>Si verifica quando un'applicazione scrive nel proprio flusso <see cref="P:System.Diagnostics.Process.StandardOutput" /> reindirizzato.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PagedMemorySize64">
|
||||
<summary>Ottiene la quantità di memoria di paging allocata per il processo associato.</summary>
|
||||
<returns>Quantità di memoria, in byte, allocata nel file di paging della memoria virtuale per il processo associato.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PagedSystemMemorySize64">
|
||||
<summary>Ottiene la quantità di memoria di sistema paginabile allocata per il processo associato.</summary>
|
||||
<returns>Quantità di memoria di sistema, in byte, allocata per il processo associato che può essere scritta nel file di paging della memoria virtuale.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakPagedMemorySize64">
|
||||
<summary>Ottiene la quantità massima di memoria nel file di paging della memoria virtuale usata dal processo associato.</summary>
|
||||
<returns>Quantità massima di memoria, in byte, allocata nel file di paging della memoria virtuale per il processo associato da quando è stato avviato.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakVirtualMemorySize64">
|
||||
<summary>Ottiene la quantità massima di memoria virtuale usata dal processo associato.</summary>
|
||||
<returns>Quantità massima di memoria virtuale, in byte, allocata per il processo associato da quando è stato avviato.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakWorkingSet64">
|
||||
<summary>Ottiene la quantità massima di memoria fisica usata dal processo associato.</summary>
|
||||
<returns>Quantità massima di memoria fisica, in byte, allocata per il processo associato da quando è stato avviato.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PriorityBoostEnabled">
|
||||
<summary>Ottiene o imposta un valore che indica se la priorità del processo associato deve essere incrementata temporaneamente dal sistema operativo quando la finestra principale è attiva.</summary>
|
||||
<returns>true se va eseguito l'incremento dinamico della priorità del processo uscito dallo stato di attesa; in caso contrario, false.Il valore predefinito è false.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Priority boost information could not be retrieved from the associated process resource. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PriorityBoostEnabled" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PriorityClass">
|
||||
<summary>Ottiene o imposta la categoria di priorità globale per il processo associato.</summary>
|
||||
<returns>Categoria di priorità del processo associato, dalla quale viene calcolata la proprietà <see cref="P:System.Diagnostics.Process.BasePriority" /> del processo.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PriorityClass" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">You have set the <see cref="P:System.Diagnostics.Process.PriorityClass" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>
|
||||
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">Priority class cannot be set because it does not use a valid value, as defined in the <see cref="T:System.Diagnostics.ProcessPriorityClass" /> enumeration.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PrivateMemorySize64">
|
||||
<summary>Ottiene la quantità di memoria privata allocata per il processo associato.</summary>
|
||||
<returns>Quantità di memoria, in byte, allocata per il processo associato che non può essere condivisa con altri processi.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PrivilegedProcessorTime">
|
||||
<summary>Ottiene il tempo privilegiato del processore per questo processo.</summary>
|
||||
<returns>Valore <see cref="T:System.TimeSpan" /> che indica la quantità di tempo impiegato dal processore nell'eseguire il codice all'interno del nucleo centrale del sistema operativo.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PrivilegedProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ProcessName">
|
||||
<summary>Ottiene il nome del processo.</summary>
|
||||
<returns>Nome usato dal sistema per identificare il processo rispetto all'utente.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process does not have an identifier, or no process is associated with the <see cref="T:System.Diagnostics.Process" />.-or- The associated process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is not on this computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ProcessorAffinity">
|
||||
<summary>Ottiene o imposta i processori nei quali è pianificata l'esecuzione dei thread di questo processo.</summary>
|
||||
<returns>Maschera di bit che rappresenta i processori con cui è possibile eseguire i thread del processo associato.Il valore predefinito dipende dal numero di processori presenti nel computer.Il valore predefinito è 2 n -1, dove n è il numero di processori.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<see cref="P:System.Diagnostics.Process.ProcessorAffinity" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.ProcessorAffinity" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> was not available.-or- The process has exited. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Refresh">
|
||||
<summary>Elimina le informazioni relative al processo associato memorizzate nella cache all'interno del componente del processo.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.SafeHandle">
|
||||
<summary>Ottiene l'handle nativo di questo processo.</summary>
|
||||
<returns>Handle nativo di questo processo.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.SessionId">
|
||||
<summary>Ottiene l'identificatore della sessione di Servizi terminal per il processo associato.</summary>
|
||||
<returns>Identificatore della sessione di Servizi terminal per il processo associato.</returns>
|
||||
<exception cref="T:System.NullReferenceException">There is no session associated with this process.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The <see cref="P:System.Diagnostics.Process.SessionId" /> property is not supported on Windows 98.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardError">
|
||||
<summary>Ottiene un flusso usato per leggere l'output di errore dell'applicazione.</summary>
|
||||
<returns>Oggetto <see cref="T:System.IO.StreamReader" /> che può essere usato per leggere il flusso di errore standard dell'applicazione.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has not been defined for redirection; ensure <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> is set to true and <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is set to false.- or - The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has been opened for asynchronous read operations with <see cref="M:System.Diagnostics.Process.BeginErrorReadLine" />. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardInput">
|
||||
<summary>Ottiene un flusso usato per scrivere l'input dell'applicazione.</summary>
|
||||
<returns>Oggetto <see cref="T:System.IO.StreamWriter" /> che può essere usato per scrivere il flusso di input standard dell'applicazione.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardInput" /> stream has not been defined because <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" /> is set to false. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardOutput">
|
||||
<summary>Ottiene un flusso usato per leggere l'output dell'applicazione.</summary>
|
||||
<returns>Oggetto <see cref="T:System.IO.StreamReader" /> che può essere usato per leggere il flusso di output standard dell'applicazione.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has not been defined for redirection; ensure <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" /> is set to true and <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is set to false.- or - The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has been opened for asynchronous read operations with <see cref="M:System.Diagnostics.Process.BeginOutputReadLine" />. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start">
|
||||
<summary>Avvia (o riutilizza) la risorsa di processo specificata dalla proprietà <see cref="P:System.Diagnostics.Process.StartInfo" /> di questo componente <see cref="T:System.Diagnostics.Process" /> e la associa al componente.</summary>
|
||||
<returns>true se viene avviata una risorsa di processo, false se non viene avviata alcuna risorsa di processo nuova (ad esempio, se è stato riutilizzato un processo esistente).</returns>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified in the <see cref="T:System.Diagnostics.Process" /> component's <see cref="P:System.Diagnostics.Process.StartInfo" />.-or- The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> member of the <see cref="P:System.Diagnostics.Process.StartInfo" /> property is true while <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" />, <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" />, or <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> is true. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">There was an error in opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)">
|
||||
<summary>Avvia la risorsa di processo specificata dal parametro contenente le informazioni di avvio del processo (ad esempio, il nome file del processo da avviare) e associa la risorsa a un nuovo componente <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Nuovo <see cref="T:System.Diagnostics.Process" /> associato alla risorsa di processo o null se non viene avviata alcuna risorsa di processo.Si noti che un nuovo processo avviato parallelamente a istanze dello stesso processo già in esecuzione sarà indipendente dalle altre.Inoltre, l'avvio può restituire un processo non Null con la relativa proprietà <see cref="T:System.Diagnostics.ProcessHasExited" /> già impostata su true.In questo caso, è possibile che il processo avviato abbia attivato un'istanza esistente di se stesso e quindi sia terminato.</returns>
|
||||
<param name="startInfo">Oggetto <see cref="T:System.Diagnostics.ProcessStartInfo" /> che contiene le informazioni usate per avviare il processo, tra cui il nome file e gli eventuali argomenti della riga di comando. </param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified in the <paramref name="startInfo" /> parameter's <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property.-or- The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property of the <paramref name="startInfo" /> parameter is true and the <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" />, <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" />, or <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> property is also true.-or-The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property of the <paramref name="startInfo" /> parameter is true and the <see cref="P:System.Diagnostics.ProcessStartInfo.UserName" /> property is not null or empty or the <see cref="P:System.Diagnostics.ProcessStartInfo.Password" /> property is not null.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="startInfo" /> parameter is null. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The file specified in the <paramref name="startInfo" /> parameter's <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property could not be found.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String)">
|
||||
<summary>Avvia una risorsa di processo specificando il nome di un documento o un file di applicazione e associa la risorsa a un nuovo componente <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Nuovo <see cref="T:System.Diagnostics.Process" /> associato alla risorsa di processo o null se non viene avviata alcuna risorsa di processo.Si noti che un nuovo processo avviato parallelamente a istanze dello stesso processo già in esecuzione sarà indipendente dalle altre.Inoltre, l'avvio può restituire un processo non Null con la relativa proprietà <see cref="T:System.Diagnostics.ProcessHasExited" /> già impostata su true.In questo caso, è possibile che il processo avviato abbia attivato un'istanza esistente di se stesso e quindi sia terminato.</returns>
|
||||
<param name="fileName">Nome di un documento o di un file di applicazione da eseguire nel processo. </param>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The PATH environment variable has a string containing quotes.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String)">
|
||||
<summary>Avvia una risorsa di processo specificando il nome di un'applicazione e un insieme di argomenti della riga di comando e associa la risorsa a un nuovo componente <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Nuovo <see cref="T:System.Diagnostics.Process" /> associato alla risorsa di processo o null se non viene avviata alcuna risorsa di processo.Si noti che un nuovo processo avviato parallelamente a istanze dello stesso processo già in esecuzione sarà indipendente dalle altre.Inoltre, l'avvio può restituire un processo non Null con la relativa proprietà <see cref="T:System.Diagnostics.ProcessHasExited" /> già impostata su true.In questo caso, è possibile che il processo avviato abbia attivato un'istanza esistente di se stesso e quindi sia terminato.</returns>
|
||||
<param name="fileName">Nome di un file di applicazione da eseguire nel processo. </param>
|
||||
<param name="arguments">Argomenti della riga di comando da passare all'avvio del processo. </param>
|
||||
<exception cref="T:System.InvalidOperationException">The <paramref name="fileName" /> or <paramref name="arguments" /> parameter is null. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The PATH environment variable has a string containing quotes.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)">
|
||||
<summary>Avvia una risorsa di processo specificando il nome di un'applicazione, un nome utente, una password e un dominio e associa la risorsa a un nuovo componente <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Nuovo <see cref="T:System.Diagnostics.Process" /> associato alla risorsa di processo o null se non viene avviata alcuna risorsa di processo.Si noti che un nuovo processo avviato parallelamente a istanze dello stesso processo già in esecuzione sarà indipendente dalle altre.Inoltre, l'avvio può restituire un processo non Null con la relativa proprietà <see cref="T:System.Diagnostics.ProcessHasExited" /> già impostata su true.In questo caso, è possibile che il processo avviato abbia attivato un'istanza esistente di se stesso e quindi sia terminato.</returns>
|
||||
<param name="fileName">Nome di un file di applicazione da eseguire nel processo.</param>
|
||||
<param name="userName">Nome utente da usare all'avvio del processo.</param>
|
||||
<param name="password">Classe <see cref="T:System.Security.SecureString" /> contenente la password da usare all'avvio del processo.</param>
|
||||
<param name="domain">Dominio da usare all'avvio del processo.</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<paramref name="fileName" /> is not an executable (.exe) file.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">There was an error in opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)">
|
||||
<summary>Avvia una risorsa di processo specificando il nome di un'applicazione e un insieme di argomenti della riga di comando, un nome utente, una password e un dominio, e associa la risorsa a un nuovo componente <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Nuovo <see cref="T:System.Diagnostics.Process" /> associato alla risorsa di processo o null se non viene avviata alcuna risorsa di processo.Si noti che un nuovo processo avviato parallelamente a istanze dello stesso processo già in esecuzione sarà indipendente dalle altre.Inoltre, l'avvio può restituire un processo non Null con la relativa proprietà <see cref="T:System.Diagnostics.ProcessHasExited" /> già impostata su true.In questo caso, è possibile che il processo avviato abbia attivato un'istanza esistente di se stesso e quindi sia terminato.</returns>
|
||||
<param name="fileName">Nome di un file di applicazione da eseguire nel processo. </param>
|
||||
<param name="arguments">Argomenti della riga di comando da passare all'avvio del processo. </param>
|
||||
<param name="userName">Nome utente da usare all'avvio del processo.</param>
|
||||
<param name="password">Classe <see cref="T:System.Security.SecureString" /> contenente la password da usare all'avvio del processo.</param>
|
||||
<param name="domain">Dominio da usare all'avvio del processo.</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<paramref name="fileName" /> is not an executable (.exe) file.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StartInfo">
|
||||
<summary>Ottiene o imposta le proprietà da passare al metodo <see cref="M:System.Diagnostics.Process.Start" /> del componente <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Oggetto <see cref="T:System.Diagnostics.ProcessStartInfo" /> che rappresenta i dati con i quali avviare il processo.Tra gli argomenti sono compresi il nome del file eseguibile o il documento usato per avviare il processo.</returns>
|
||||
<exception cref="T:System.ArgumentNullException">The value that specifies the <see cref="P:System.Diagnostics.Process.StartInfo" /> is null. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StartTime">
|
||||
<summary>Ottiene l'ora in cui è stato avviato il processo associato.</summary>
|
||||
<returns>Oggetto che indica il momento in cui è stato avviato il processo.Viene generata un eccezione se il processo non è in esecuzione.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.StartTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has exited.-or-The process has not been started.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred in the call to the Windows function.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Threads">
|
||||
<summary>Ottiene il gruppo di thread in esecuzione nel processo associato.</summary>
|
||||
<returns>Matrice di tipo <see cref="T:System.Diagnostics.ProcessThread" /> che rappresenta i thread del sistema operativo attualmente in esecuzione nel processo associato.</returns>
|
||||
<exception cref="T:System.SystemException">The process does not have an <see cref="P:System.Diagnostics.Process.Id" />, or no process is associated with the <see cref="T:System.Diagnostics.Process" /> instance.-or- The associated process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.TotalProcessorTime">
|
||||
<summary>Ottiene il tempo totale del processore per questo processo.</summary>
|
||||
<returns>Valore <see cref="T:System.TimeSpan" /> che indica la quantità di tempo impiegato dal processo associato nell'utilizzo della CPU.Questo valore è la somma delle proprietà <see cref="P:System.Diagnostics.Process.UserProcessorTime" /> e <see cref="P:System.Diagnostics.Process.PrivilegedProcessorTime" />.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.TotalProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.UserProcessorTime">
|
||||
<summary>Ottiene il tempo utente del processore per questo processo.</summary>
|
||||
<returns>Valore <see cref="T:System.TimeSpan" /> che indica la quantità di tempo impiegato dal processo associato nell'esecuzione del codice all'interno della parte di applicazione del processo (non all'interno del nucleo centrale del sistema operativo).</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.UserProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.VirtualMemorySize64">
|
||||
<summary>Ottiene la quantità di memoria virtuale allocata per il processo associato.</summary>
|
||||
<returns>Quantità di memoria virtuale, in byte, allocata per il processo associato.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.WaitForExit">
|
||||
<summary>Indica al componente <see cref="T:System.Diagnostics.Process" /> di attendere in modo indefinito la terminazione del processo associato.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The wait setting could not be accessed. </exception>
|
||||
<exception cref="T:System.SystemException">No process <see cref="P:System.Diagnostics.Process.Id" /> has been set, and a <see cref="P:System.Diagnostics.Process.Handle" /> from which the <see cref="P:System.Diagnostics.Process.Id" /> property can be determined does not exist.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.-or- You are attempting to call <see cref="M:System.Diagnostics.Process.WaitForExit" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.WaitForExit(System.Int32)">
|
||||
<summary>Indica al componente <see cref="T:System.Diagnostics.Process" /> di attendere per il numero specificato di millisecondi che il processo venga terminato.</summary>
|
||||
<returns>true se il processo associato è stato terminato; in caso contrario, false.</returns>
|
||||
<param name="milliseconds">Quantità di tempo, espressa in millisecondi, in base alla quale viene attesa la terminazione del processo associato.Il valore massimo è il valore Integer a 32 bit più alto possibile, che rappresenta l'infinito per il sistema operativo.</param>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The wait setting could not be accessed. </exception>
|
||||
<exception cref="T:System.SystemException">No process <see cref="P:System.Diagnostics.Process.Id" /> has been set, and a <see cref="P:System.Diagnostics.Process.Handle" /> from which the <see cref="P:System.Diagnostics.Process.Id" /> property can be determined does not exist.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.-or- You are attempting to call <see cref="M:System.Diagnostics.Process.WaitForExit(System.Int32)" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.WorkingSet64">
|
||||
<summary>Ottiene la quantità di memoria fisica allocata per il processo associato.</summary>
|
||||
<returns>Quantità di memoria fisica, in byte, allocata per il processo associato.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessModule">
|
||||
<summary>Rappresenta un file DLL o EXE caricato in un particolare processo.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.BaseAddress">
|
||||
<summary>Ottiene l'indirizzo di memoria in cui è stato caricato il modulo.</summary>
|
||||
<returns>L'indirizzo di caricamento del modulo.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.EntryPointAddress">
|
||||
<summary>Ottiene l'indirizzo di memoria della funzione eseguita quando il sistema carica ed esegue il modulo.</summary>
|
||||
<returns>Il punto di ingresso del modulo.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.FileName">
|
||||
<summary>Ottiene il percorso completo del modulo.</summary>
|
||||
<returns>Il percorso completo che definisce la posizione del modulo.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.ModuleMemorySize">
|
||||
<summary>Ottiene la quantità di memoria richiesta per caricare il modulo.</summary>
|
||||
<returns>La dimensione in byte della memoria occupata dal modulo.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.ModuleName">
|
||||
<summary>Ottiene il nome del modulo del processo.</summary>
|
||||
<returns>Nome del modulo.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModule.ToString">
|
||||
<summary>Converte il nome del modulo in una stringa.</summary>
|
||||
<returns>Valore della proprietà <see cref="P:System.Diagnostics.ProcessModule.ModuleName" />.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessModuleCollection">
|
||||
<summary>Fornisce un insieme fortemente tipizzato di oggetti <see cref="T:System.Diagnostics.ProcessModule" />.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.#ctor">
|
||||
<summary>Consente di inizializzare una nuova istanza della classe <see cref="T:System.Diagnostics.ProcessModuleCollection" />, senza istanze di <see cref="T:System.Diagnostics.ProcessModule" /> associate.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])">
|
||||
<summary>Consente di inizializzare una nuova istanza della classe <see cref="T:System.Diagnostics.ProcessModuleCollection" /> utilizzando la matrice specificata di istanze <see cref="T:System.Diagnostics.ProcessModule" />.</summary>
|
||||
<param name="processModules">Matrice di istanze di <see cref="T:System.Diagnostics.ProcessModule" /> con la quale inizializzare questa istanza <see cref="T:System.Diagnostics.ProcessModuleCollection" /> . </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)">
|
||||
<summary>Determina se il modulo di processo specificato è contenuto nell'insieme.</summary>
|
||||
<returns>Restituisce true se il modulo è presente nell'insieme; in caso contrario, false.</returns>
|
||||
<param name="module">Istanza <see cref="T:System.Diagnostics.ProcessModule" /> che indica il modulo da trovare in questo insieme. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)">
|
||||
<summary>Copia una matrice di istanze <see cref="T:System.Diagnostics.ProcessModule" /> nell'insieme, in corrispondenza dell'indice specificato.</summary>
|
||||
<param name="array">Matrice di istanze <see cref="T:System.Diagnostics.ProcessModule" /> da aggiungere all'insieme. </param>
|
||||
<param name="index">Posizione in cui aggiungere le nuove istanze. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.Count"></member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.GetEnumerator"></member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)">
|
||||
<summary>Fornisce la posizione di un modulo specificato nell'insieme.</summary>
|
||||
<returns>Indice a base zero che definisce la posizione del modulo in <see cref="T:System.Diagnostics.ProcessModuleCollection" />.</returns>
|
||||
<param name="module">
|
||||
<see cref="T:System.Diagnostics.ProcessModule" /> il cui indice viene richiamato. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)">
|
||||
<summary>Ottiene un indice per scorrere l'insieme di moduli di processo.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.ProcessModule" /> che indicizza i moduli nell'insieme. </returns>
|
||||
<param name="index">Valore di indice a base zero del modulo dell'insieme. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"></member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized"></member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot"></member>
|
||||
<member name="T:System.Diagnostics.ProcessPriorityClass">
|
||||
<summary>Indica la priorità che il sistema associa a un processo.Questo valore, insieme al valore di priorità di ciascun thread del processo, determina il livello di priorità base di ogni thread.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.AboveNormal">
|
||||
<summary>Specifica che il processo ha una priorità superiore a Normal ma inferiore a <see cref="F:System.Diagnostics.ProcessPriorityClass.High" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.BelowNormal">
|
||||
<summary>Specifica che il processo ha una priorità superiore a Idle ma inferiore a Normal.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.High">
|
||||
<summary>Specifica che il processo svolge attività critiche a livello temporale che richiedono un'immediata esecuzione, come ad esempio la finestra di dialogo Task List, la quale deve essere aperta velocemente in risposta a una chiamata dell'utente, a prescindere dal carico sul sistema operativo.I thread del processo hanno la precedenza sui thread dei processi con classe di priorità normal o idle.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.Idle">
|
||||
<summary>Specifica che i thread di questo processo vengono eseguiti soltanto quando il sistema è inattivo, ad esempio quando è in funzione uno screen saver.I thread del processo hanno la precedenza sui thread di qualsiasi processo con una classe di priorità superiore.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.Normal">
|
||||
<summary>Specifica che il processo non ha particolari esigenze di pianificazione.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.RealTime">
|
||||
<summary>Specifica che la priorità del processo è la più alta possibile.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessStartInfo">
|
||||
<summary>Specifica un insieme di valori usati all'avvio di un processo.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor">
|
||||
<summary>Inizializza una nuova istanza della classe <see cref="T:System.Diagnostics.ProcessStartInfo" /> senza specificare un nome file con il quale avviare il processo.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)">
|
||||
<summary>Inizializza una nuova istanza della classe <see cref="T:System.Diagnostics.ProcessStartInfo" /> e specifica un nome file, ad esempio un'applicazione o un documento, con il quale avviare il processo.</summary>
|
||||
<param name="fileName">Un'applicazione o un documento con il quale avviare un processo. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)">
|
||||
<summary>Inizializza una nuova istanza della classe <see cref="T:System.Diagnostics.ProcessStartInfo" />, specifica il nome file di un'applicazione con cui avviare il processo e determina un insieme di argomenti della riga di comando da passare all'applicazione.</summary>
|
||||
<param name="fileName">Un'applicazione con la quale avviare un processo. </param>
|
||||
<param name="arguments">Argomenti della riga di comando da passare all'applicazione all'avvio del processo. </param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Arguments">
|
||||
<summary>Ottiene o imposta l'insieme di argomenti della riga di comando da usare all'avvio dell'applicazione.</summary>
|
||||
<returns>Una singola stringa contenente gli argomenti da passare all'applicazione di destinazione specificata nella proprietà <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" />.Il valore predefinito è una stringa vuota ("").In Windows Vista e nelle versioni precedenti del sistema operativo Windows, la lunghezza degli argomenti aggiunta alla lunghezza del percorso completo del processo deve essere minore di 2080.In Windows 7 e versioni successive la lunghezza deve essere minore di 32699.Gli argomenti vengono analizzati e interpretati dall'applicazione di destinazione, pertanto devono essere allineati con le aspettative dell'applicazione.Per le applicazioni .NET, come illustrato negli esempi seguenti, gli spazi vengono interpretati come un separatore tra più argomenti.Un singolo argomento che include spazi deve essere racchiuso tra virgolette, ma tali virgolette non vengono riportate nell'applicazione di destinazione.Nelle virgolette incluse nell'argomento analizzato finale, aggiungere tre caratteri di escape a ogni virgoletta.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.CreateNoWindow">
|
||||
<summary>Ottiene o imposta un valore che indica se avviare il processo in una nuova finestra.</summary>
|
||||
<returns>true se il processo deve essere avviato senza creare una nuova finestra; in caso contrario, false.Il valore predefinito è false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Domain">
|
||||
<summary>Ottiene o imposta un valore che identifica il dominio da usare all'avvio del processo. </summary>
|
||||
<returns>Il dominio di Active Directory da usare all'avvio del processo.La proprietà del dominio interessa principalmente gli utenti in ambienti aziendali che usano Active Directory.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Environment"></member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.FileName">
|
||||
<summary>Ottiene o imposta l'applicazione o il documento da avviare.</summary>
|
||||
<returns>Il nome dell'applicazione da avviare oppure il nome di un documento di un tipo di file associato a un'applicazione con un'azione Open predefinita.Il valore predefinito è una stringa vuota ("").</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.LoadUserProfile">
|
||||
<summary>Ottiene o imposta un valore che indica se deve essere caricato il profilo utente di Windows dal Registro di sistema. </summary>
|
||||
<returns>true se il profilo utente Windows deve essere caricato; in caso contrario, false.Il valore predefinito è false.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Password">
|
||||
<summary>Ottiene o imposta una stringa sicura che contiene la password utente da usare all'avvio del processo.</summary>
|
||||
<returns>La password utente da usare all'avvio del processo.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError">
|
||||
<summary>Ottiene o imposta un valore che indica se l'output di errore di un'applicazione viene scritto nel flusso <see cref="P:System.Diagnostics.Process.StandardError" />.</summary>
|
||||
<returns>true se l'output di errore deve essere scritto in <see cref="P:System.Diagnostics.Process.StandardError" />; in caso contrario, false.Il valore predefinito è false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput">
|
||||
<summary>Ottiene o imposta un valore che indica se l'input per un'applicazione viene letto dal flusso <see cref="P:System.Diagnostics.Process.StandardInput" />.</summary>
|
||||
<returns>true se l'input deve essere letto da <see cref="P:System.Diagnostics.Process.StandardInput" />; in caso contrario, false.Il valore predefinito è false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput">
|
||||
<summary>Ottiene o imposta un valore che indica se l'output testuale di un'applicazione viene scritto nel flusso <see cref="P:System.Diagnostics.Process.StandardOutput" />.</summary>
|
||||
<returns>true se l'output deve essere scritto in <see cref="P:System.Diagnostics.Process.StandardOutput" />; in caso contrario, false.Il valore predefinito è false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding">
|
||||
<summary>Ottiene o imposta la codifica preferita per l'output di errore.</summary>
|
||||
<returns>Oggetto che rappresenta la codifica preferita per l'output di errore.Il valore predefinito è null.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding">
|
||||
<summary>Ottiene o imposta la codifica preferita per l'output standard.</summary>
|
||||
<returns>Oggetto che rappresenta la codifica preferita per l'output standard.Il valore predefinito è null.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.UserName">
|
||||
<summary>Ottiene o imposta il nome utente da usare all'avvio del processo.</summary>
|
||||
<returns>Nome utente da usare all'avvio del processo.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.UseShellExecute">
|
||||
<summary>Ottiene o imposta un valore che indica se usare la shell del sistema operativo per avviare il processo.</summary>
|
||||
<returns>true se la shell deve essere usata all'avvio del processo; false se il processo deve essere creato direttamente dal file eseguibile.Il valore predefinito è true.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.WorkingDirectory">
|
||||
<summary>Quando la proprietà <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> è false, ottiene o imposta la directory di lavoro per il processo da avviare.Quando la proprietà <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> è true, ottiene o imposta la directory che contiene il processo da avviare.</summary>
|
||||
<returns>Quando <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> è true, il nome completo della directory contenente il processo da avviare.Quando la proprietà <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> è false, la directory di lavoro per il processo da avviare.Il valore predefinito è una stringa vuota ("").</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessThread">
|
||||
<summary>Rappresenta un thread di processo del sistema operativo.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.BasePriority">
|
||||
<summary>Ottiene la priorità base del thread.</summary>
|
||||
<returns>La priorità base del thread, calcolata dal sistema operativo combinando la classe di priorità del processo con il livello di priorità del thread associato.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.CurrentPriority">
|
||||
<summary>Ottiene la priorità corrente del thread.</summary>
|
||||
<returns>La priorità corrente del thread, che potrebbe essere diversa da quella di base a seconda del modo in cui il sistema operativo pianifica il thread.La priorità può essere temporaneamente aumentata per un thread attivo.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.Id">
|
||||
<summary>Ottiene l'identificatore univoco del thread.</summary>
|
||||
<returns>L'identificatore univoco associato a uno specifico thread.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.IdealProcessor">
|
||||
<summary>Imposta il processore preferenziale su cui eseguire questo thread.</summary>
|
||||
<returns>Il processore preferenziale del thread, utilizzato quando il sistema pianifica i thread, per determinare il processore su cui eseguirlo.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Il sistema non è stato in grado di impostare l'avvio del thread sul processore specificato. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Il processo è eseguito su un computer remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PriorityBoostEnabled">
|
||||
<summary>Ottiene o imposta un valore che indica se il sistema operativo deve incrementare temporaneamente la priorità del thread associato ogni volta che la finestra principale del processo del thread diventa attiva.</summary>
|
||||
<returns>true per incrementare la priorità del thread quando l'utente interagisce con l'interfaccia del processo; in caso contrario, false .Il valore predefinito è false.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Non è possibile recuperare le informazioni sull'incremento di priorità.- oppure -Non è possibile impostare le informazioni sull'incremento di priorità. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Il processo è eseguito su un computer remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PriorityLevel">
|
||||
<summary>Ottiene o imposta il livello di priorità del thread.</summary>
|
||||
<returns>Uno dei valori di <see cref="T:System.Diagnostics.ThreadPriorityLevel" />, che specifica un intervallo nel quale rientra la priorità del thread.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Non è possibile recuperare le informazioni sul livello di priorità del thread. - oppure -Non è possibile impostare il livello di priorità del thread.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Il processo è eseguito su un computer remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime">
|
||||
<summary>Ottiene l'intervallo di tempo che il thread ha impiegato nell'esecuzione del codice all'interno del nucleo centrale del sistema operativo.</summary>
|
||||
<returns>Valore <see cref="T:System.TimeSpan" /> che indica l'intervallo di tempo impiegato dal thread nell'esecuzione del codice all'interno del nucleo centrale del sistema operativo.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Non è possibile recuperare l'intervallo di tempo del thread. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Il processo è eseguito su un computer remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.ProcessorAffinity">
|
||||
<summary>Imposta il processore sul quale può essere eseguito il thread associato.</summary>
|
||||
<returns>Un oggetto <see cref="T:System.IntPtr" /> che punta a un insieme di bit, ciascuno dei quali rappresenta un processore sul quale può essere eseguito il thread.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Non è stato possibile impostare l'affinità dei processori. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Il processo è eseguito su un computer remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThread.ResetIdealProcessor">
|
||||
<summary>Reimposta il processore ideale di questo thread a indicare che non è presente un singolo processore ideale.In altre parole, ogni altro processore può essere ideale.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Non è possibile reimpostare il processore ideale. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Il processo è eseguito su un computer remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.StartAddress">
|
||||
<summary>Ottiene l'indirizzo di memoria della funzione chiamata dal sistema operativo per l'avvio di questo thread.</summary>
|
||||
<returns>L'indirizzo iniziale del thread, che punta alla funzione definita dall'applicazione eseguita dal thread.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Il processo è eseguito su un computer remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.StartTime">
|
||||
<summary>Ottiene l'ora in cui il sistema operativo ha iniziato il thread.</summary>
|
||||
<returns>Un oggetto <see cref="T:System.DateTime" /> che rappresenta l'ora di sistema al momento dell'avvio del thread da parte del sistema operativo.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Non è possibile recuperare l'intervallo di tempo del thread. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Il processo è eseguito su un computer remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.ThreadState">
|
||||
<summary>Ottiene lo stato corrente di questo thread.</summary>
|
||||
<returns>Un oggetto <see cref="T:System.Diagnostics.ThreadState" /> che indica lo stato del thread, ad esempio in esecuzione, in attesa o completato.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Il processo è eseguito su un computer remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.TotalProcessorTime">
|
||||
<summary>Ottiene la quantità totale di tempo impiegata da questo thread nell'utilizzo del processore.</summary>
|
||||
<returns>Un oggetto <see cref="T:System.TimeSpan" /> che indica la quantità di tempo in base alla quale il thread ha avuto il controllo del processore.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Non è possibile recuperare l'intervallo di tempo del thread. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Il processo è eseguito su un computer remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.UserProcessorTime">
|
||||
<summary>Ottiene la quantità di tempo che il thread associato ha impiegato nell'esecuzione del codice all'interno dell'applicazione.</summary>
|
||||
<returns>Valore <see cref="T:System.TimeSpan" /> che indica la quantità di tempo impiegato dal thread nell'esecuzione del codice all'interno dell'applicazione, rispetto all'esecuzione all'interno del nucleo centrale del sistema operativo.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Non è possibile recuperare l'intervallo di tempo del thread. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Il processo è eseguito su un computer remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.WaitReason">
|
||||
<summary>Ottiene il motivo per cui il thread è in attesa.</summary>
|
||||
<returns>Un oggetto <see cref="T:System.Diagnostics.ThreadWaitReason" /> che rappresenta il motivo per il quale il thread è nello stato di attesa.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">Il thread non è nello stato di attesa. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Il processo è eseguito su un computer remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessThreadCollection">
|
||||
<summary>Fornisce un insieme fortemente tipizzato di oggetti <see cref="T:System.Diagnostics.ProcessThread" />.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.#ctor">
|
||||
<summary>Consente di inizializzare una nuova istanza della classe <see cref="T:System.Diagnostics.ProcessThreadCollection" />, senza istanze di <see cref="T:System.Diagnostics.ProcessThread" /> associate.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])">
|
||||
<summary>Consente di inizializzare una nuova istanza della classe <see cref="T:System.Diagnostics.ProcessThreadCollection" /> utilizzando la matrice specificata di istanze <see cref="T:System.Diagnostics.ProcessThread" />.</summary>
|
||||
<param name="processThreads">Matrice di istanze di <see cref="T:System.Diagnostics.ProcessThread" /> con la quale inizializzare questa istanza <see cref="T:System.Diagnostics.ProcessThreadCollection" /> . </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)">
|
||||
<summary>Accoda un thread di processo all'insieme.</summary>
|
||||
<returns>Indice a base zero del thread contenuto nell'insieme.</returns>
|
||||
<param name="thread">Thread da aggiungere all'insieme. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)">
|
||||
<summary>Determina se il thread di processo specificato è contenuto nell'insieme.</summary>
|
||||
<returns>Restituisce true se il thread è presente nell'insieme; in caso contrario, false.</returns>
|
||||
<param name="thread">Istanza <see cref="T:System.Diagnostics.ProcessThread" /> che indica il thread da trovare in questo insieme. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)">
|
||||
<summary>Copia una matrice di istanze <see cref="T:System.Diagnostics.ProcessThread" /> nell'insieme, in corrispondenza dell'indice specificato.</summary>
|
||||
<param name="array">Matrice di istanze <see cref="T:System.Diagnostics.ProcessThread" /> da aggiungere all'insieme. </param>
|
||||
<param name="index">Posizione in cui aggiungere le nuove istanze. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.Count"></member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.GetEnumerator"></member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)">
|
||||
<summary>Fornisce la posizione di un thread specificato nell'insieme.</summary>
|
||||
<returns>Indice a base zero che definisce la posizione del thread all'interno di <see cref="T:System.Diagnostics.ProcessThreadCollection" />.</returns>
|
||||
<param name="thread">
|
||||
<see cref="T:System.Diagnostics.ProcessThread" /> il cui indice viene richiamato. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)">
|
||||
<summary>Inserisce un thread di processo nella posizione specificata dell'insieme.</summary>
|
||||
<param name="index">Indice a base zero che indica la posizione in cui inserire il thread. </param>
|
||||
<param name="thread">Thread da inserire nell'insieme. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)">
|
||||
<summary>Ottiene un indice per scorrere l'insieme di thread di processo.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.ProcessThread" /> che indicizza i thread nell'insieme.</returns>
|
||||
<param name="index">Valore dell'indice a base zero del thread dell'insieme. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)">
|
||||
<summary>Elimina un thread di processo dall'insieme.</summary>
|
||||
<param name="thread">Thread da rimuovere dall'insieme. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"></member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized"></member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot"></member>
|
||||
<member name="T:System.Diagnostics.ThreadPriorityLevel">
|
||||
<summary>Specifica il livello di priorità di un thread.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.AboveNormal">
|
||||
<summary>Specifica un livello superiore alla priorità normale della classe <see cref="T:System.Diagnostics.ProcessPriorityClass" /> associata.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.BelowNormal">
|
||||
<summary>Specifica un livello inferiore alla priorità normale della classe <see cref="T:System.Diagnostics.ProcessPriorityClass" /> associata.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Highest">
|
||||
<summary>Specifica la massima priorità.Questa è di due livelli superiore alla priorità normale della classe <see cref="T:System.Diagnostics.ProcessPriorityClass" /> associata.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Idle">
|
||||
<summary>Specifica la priorità idle.Questo è il minimo valore possibile di priorità di tutti i thread, indipendentemente dal valore della classe <see cref="T:System.Diagnostics.ProcessPriorityClass" /> associata.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Lowest">
|
||||
<summary>Specifica la minima priorità.Questa è di due livelli inferiore alla priorità normale della classe <see cref="T:System.Diagnostics.ProcessPriorityClass" /> associata.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Normal">
|
||||
<summary>Specifica la priorità normale della classe <see cref="T:System.Diagnostics.ProcessPriorityClass" /> associata.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.TimeCritical">
|
||||
<summary>Specifica la priorità critica a livello temporale.Questo è il massimo valore di priorità di tutti i thread, indipendentemente dal valore della classe <see cref="T:System.Diagnostics.ProcessPriorityClass" /> associata.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ThreadState">
|
||||
<summary>Specifica lo stato di esecuzione corrente del thread.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Initialized">
|
||||
<summary>Uno stato che indica che il thread è stato inizializzato ma non è stato ancora avviato.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Ready">
|
||||
<summary>Uno stato che indica che il thread è in attesa di utilizzare un processore in quanto nessun processore è disponibile.Il thread è pronto per essere eseguito sul prossimo processore disponibile.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Running">
|
||||
<summary>Uno stato che indica che il thread utilizza attualmente un processore.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Standby">
|
||||
<summary>Uno stato che indica che il thread sta per utilizzare un processore.Un solo thread alla volta può trovarsi in questo stato.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Terminated">
|
||||
<summary>Uno stato che indica che il thread ha completato l'esecuzione ed è uscito.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Transition">
|
||||
<summary>Uno stato che indica che il thread è in attesa di una risorsa, diversa dal processore, prima di poter essere eseguito.Può essere ad esempio in attesa che il proprio stack di esecuzione venga paginato dal disco.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Unknown">
|
||||
<summary>Lo stato del thread è sconosciuto.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Wait">
|
||||
<summary>Uno stato che indica che il thread non è pronto per essere utilizzato dal processore in quanto è in attesa che un'operazione secondaria venga completata o che una risorsa venga resa disponibile.Quando il thread è pronto, viene ripianificato.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ThreadWaitReason">
|
||||
<summary>Specifica il motivo per il quale un thread è in attesa.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.EventPairHigh">
|
||||
<summary>Il thread è in attesa di Event Pair High.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.EventPairLow">
|
||||
<summary>Il thread è in attesa di Event Pair Low.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.ExecutionDelay">
|
||||
<summary>L'esecuzione del thread è stata rinviata.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Executive">
|
||||
<summary>Il thread è in attesa della pianificazione.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.FreePage">
|
||||
<summary>Il thread è in attesa di una pagina di memoria virtuale libera.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.LpcReceive">
|
||||
<summary>Il thread è in attesa di una chiamata alla routine locale.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.LpcReply">
|
||||
<summary>Il thread è in attesa di una risposta a una chiamata di routine locale.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.PageIn">
|
||||
<summary>Il thread è in attesa di una pagina di memoria virtuale nella memoria.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.PageOut">
|
||||
<summary>Il thread è in attesa di una pagina di memoria virtuale da scrivere nel disco.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Suspended">
|
||||
<summary>L'esecuzione del thread è stata sospesa.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.SystemAllocation">
|
||||
<summary>Il thread è in attesa dell'allocazione di sistema.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Unknown">
|
||||
<summary>Il thread è in attesa per un motivo sconosciuto.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.UserRequest">
|
||||
<summary>Il thread è in attesa di una richiesta dell'utente.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.VirtualMemory">
|
||||
<summary>Il thread è in attesa che il sistema allochi la memoria virtuale.</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
1000
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/ja/System.Diagnostics.Process.xml
vendored
Normal file
1000
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/ja/System.Diagnostics.Process.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1003
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/ko/System.Diagnostics.Process.xml
vendored
Normal file
1003
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/ko/System.Diagnostics.Process.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
977
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/ru/System.Diagnostics.Process.xml
vendored
Normal file
977
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/ru/System.Diagnostics.Process.xml
vendored
Normal file
@@ -0,0 +1,977 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Diagnostics.Process</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Win32.SafeHandles.SafeProcessHandle">
|
||||
<summary>[SECURITY CRITICAL] Предоставляет управляемую оболочку для дескриптора процесса.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)">
|
||||
<summary>[SECURITY CRITICAL] Инициализирует новый экземпляр класса <see cref="T:Microsoft.Win32.SafeHandles.SafeProcessHandle" /> класса для указанного дескриптора, указывающее, следует ли освободить дескриптор на стадии завершения. </summary>
|
||||
<param name="existingHandle">Инкапсулируемый дескриптор.</param>
|
||||
<param name="ownsHandle">trueЧтобы надежно <see cref="T:Microsoft.Win32.SafeHandles.SafeProcessHandle" /> освободить дескриптор на стадии завершения; в противном случае — false.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid"></member>
|
||||
<member name="T:System.Diagnostics.DataReceivedEventArgs">
|
||||
<summary>Предоставляет данные для событий <see cref="E:System.Diagnostics.Process.OutputDataReceived" /> и <see cref="E:System.Diagnostics.Process.ErrorDataReceived" />.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.DataReceivedEventArgs.Data">
|
||||
<summary>Возвращает строку символов, записанную в перенаправленный поток вывода <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Строка, записанная соответствующим процессом <see cref="T:System.Diagnostics.Process" /> в перенаправленный поток <see cref="P:System.Diagnostics.Process.StandardOutput" /> или <see cref="P:System.Diagnostics.Process.StandardError" />.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.DataReceivedEventHandler">
|
||||
<summary>Представляет метод, обрабатывающий событие <see cref="E:System.Diagnostics.Process.OutputDataReceived" /> или событие <see cref="E:System.Diagnostics.Process.ErrorDataReceived" /> объекта <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<param name="sender">Источник события. </param>
|
||||
<param name="e">Объект <see cref="T:System.Diagnostics.DataReceivedEventArgs" />, содержащий данные, которые относятся к событию. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.Process">
|
||||
<summary>Предоставляет доступ к локальным и удаленным процессам и позволяет запускать и останавливать локальные системные процессы.Исходный код .NET Framework для этого типа см. в указанном источнике.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.#ctor">
|
||||
<summary>Инициализирует новый экземпляр класса <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.BasePriority">
|
||||
<summary>Получает базовый приоритет связанного процесса.</summary>
|
||||
<returns>Базовый приоритет, который вычисляется свойством <see cref="P:System.Diagnostics.Process.PriorityClass" /> связанного процесса.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has exited.-or- The process has not started, so there is no process ID. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.BeginErrorReadLine">
|
||||
<summary>Начинает операции асинхронного чтения с перенаправленного потока <see cref="P:System.Diagnostics.Process.StandardError" /> приложения.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref="P:System.Diagnostics.Process.StandardError" /> stream.- or - The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has been used by a synchronous read operation. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.BeginOutputReadLine">
|
||||
<summary>Начинает операции асинхронного чтения с перенаправленного потока <see cref="P:System.Diagnostics.Process.StandardOutput" /> приложения.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream.- or - The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has been used by a synchronous read operation. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.CancelErrorRead">
|
||||
<summary>Отменяет операцию асинхронного чтения в перенаправленном потоке <see cref="P:System.Diagnostics.Process.StandardError" /> приложения.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardError" /> stream is not enabled for asynchronous read operations. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.CancelOutputRead">
|
||||
<summary>Отменяет операцию асинхронного чтения в перенаправленном потоке <see cref="P:System.Diagnostics.Process.StandardOutput" /> приложения.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream is not enabled for asynchronous read operations. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Dispose"></member>
|
||||
<member name="M:System.Diagnostics.Process.Dispose(System.Boolean)">
|
||||
<summary>Освобождает все ресурсы, используемые этим процессом.</summary>
|
||||
<param name="disposing">Значение true позволяет освободить как управляемые, так и неуправляемые ресурсы; значение false освобождает только неуправляемые ресурсы. </param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.EnableRaisingEvents">
|
||||
<summary>Получает или задает значение, указывающее, следует ли вызывать событие <see cref="E:System.Diagnostics.Process.Exited" /> при прекращении процесса.</summary>
|
||||
<returns>Значение true, если событие <see cref="E:System.Diagnostics.Process.Exited" /> должно быть вызвано при завершении связанного процесса (выход или вызов метода <see cref="M:System.Diagnostics.Process.Kill" />); в противном случае — значение false.Значение по умолчанию — false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.EnterDebugMode">
|
||||
<summary>Помещает компонент <see cref="T:System.Diagnostics.Process" /> в состояние взаимодействия с работающим системным процессом, выполняющимся в специальном режиме путем включения встроенного свойства SeDebugPrivilege в данном потоке.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.ErrorDataReceived">
|
||||
<summary>Происходит, когда приложение выполняет запись в свой перенаправленный поток <see cref="P:System.Diagnostics.Process.StandardError" />.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ExitCode">
|
||||
<summary>Получает значение, заданное связанным процессом при завершении.</summary>
|
||||
<returns>Код, который задал связанный процесс при завершении.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process has not exited.-or- The process <see cref="P:System.Diagnostics.Process.Handle" /> is not valid. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.ExitCode" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.Exited">
|
||||
<summary>Происходит при завершении процесса.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ExitTime">
|
||||
<summary>Получает время завершения связанного процесса.</summary>
|
||||
<returns>Класс <see cref="T:System.DateTime" />, показывающий время завершения связанного процесса.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.ExitTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetCurrentProcess">
|
||||
<summary>Получает новый компонент <see cref="T:System.Diagnostics.Process" /> и связывает его с активным в данный момент процессом.</summary>
|
||||
<returns>Новый компонент <see cref="T:System.Diagnostics.Process" />, связанный с ресурсом выполняющегося процесса в приложении.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessById(System.Int32)">
|
||||
<summary>Возвращает новый компонент <see cref="T:System.Diagnostics.Process" />, по заданному идентификатору процесса на локальном компьютере.</summary>
|
||||
<returns>Компонент <see cref="T:System.Diagnostics.Process" />, связанный с локальным ресурсом процесса, определенного параметром <paramref name="processId" />.</returns>
|
||||
<param name="processId">Уникальный в системе идентификатор ресурса процесса. </param>
|
||||
<exception cref="T:System.ArgumentException">The process specified by the <paramref name="processId" /> parameter is not running.The identifier might be expired.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process was not started by this object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)">
|
||||
<summary>Возвращает новый компонент <see cref="T:System.Diagnostics.Process" />, по заданному идентификатору процесса и имени компьютера в сети.</summary>
|
||||
<returns>Компонент <see cref="T:System.Diagnostics.Process" />, связанный с удаленным ресурсом процесса, определенного параметром <paramref name="processId" />.</returns>
|
||||
<param name="processId">Уникальный в системе идентификатор ресурса процесса. </param>
|
||||
<param name="machineName">Имя компьютера в сети. </param>
|
||||
<exception cref="T:System.ArgumentException">The process specified by the <paramref name="processId" /> parameter is not running.The identifier might be expired.-or- The <paramref name="machineName" /> parameter syntax is invalid.The name might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process was not started by this object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcesses">
|
||||
<summary>Создает новый компонент <see cref="T:System.Diagnostics.Process" /> для каждого ресурса процесса на локальном компьютере.</summary>
|
||||
<returns>Массив типа <see cref="T:System.Diagnostics.Process" />, представляющий все ресурсы процесса, выполняющегося на локальном компьютере.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcesses(System.String)">
|
||||
<summary>Создает новый компонент <see cref="T:System.Diagnostics.Process" /> для каждого ресурса процесса на указанном компьютере.</summary>
|
||||
<returns>Массив типа <see cref="T:System.Diagnostics.Process" />, представляющий все ресурсы процесса, выполняющегося на указанном компьютере.</returns>
|
||||
<param name="machineName">Компьютер, из которого читается список процессов. </param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="machineName" /> parameter syntax is invalid.It might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The operating system platform does not support this operation on remote computers. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A problem occurred accessing an underlying system API. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessesByName(System.String)">
|
||||
<summary>Создает массив из новых компонентов <see cref="T:System.Diagnostics.Process" /> и связывает их со всеми ресурсами процесса на локальном компьютере, для которых заданное имя процесса является общедоступным.</summary>
|
||||
<returns>Массив типа <see cref="T:System.Diagnostics.Process" />, представляющий ресурсы процесса, выполняющего указанное приложение или файл.</returns>
|
||||
<param name="processName">Понятное имя процесса. </param>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)">
|
||||
<summary>Создает массив из новых компонентов <see cref="T:System.Diagnostics.Process" /> и связывает их со всеми ресурсами процесса на удаленном компьютере, для которых заданное имя процесса является общедоступным.</summary>
|
||||
<returns>Массив типа <see cref="T:System.Diagnostics.Process" />, представляющий ресурсы процесса, выполняющего указанное приложение или файл.</returns>
|
||||
<param name="processName">Понятное имя процесса. </param>
|
||||
<param name="machineName">Имя компьютера в сети. </param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="machineName" /> parameter syntax is invalid.It might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The operating system platform does not support this operation on remote computers. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A problem occurred accessing an underlying system API. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.HasExited">
|
||||
<summary>Получает значение, определяющее завершение связанного процесса.</summary>
|
||||
<returns>Значение true, если процесс операционной системы, на который ссылается компонент <see cref="T:System.Diagnostics.Process" />, был завершен; в противном случае — значение false.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with the object. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The exit code for the process could not be retrieved. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.HasExited" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Id">
|
||||
<summary>Получает уникальный идентификатор связанного процесса.</summary>
|
||||
<returns>Созданный системой уникальный идентификатор, на который ссылается этот экземпляр <see cref="T:System.Diagnostics.Process" />.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process's <see cref="P:System.Diagnostics.Process.Id" /> property has not been set.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Kill">
|
||||
<summary>Немедленно останавливает связанный процесс.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to call <see cref="M:System.Diagnostics.Process.Kill" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has already exited. -or-There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.LeaveDebugMode">
|
||||
<summary>Выбирает компонент <see cref="T:System.Diagnostics.Process" /> из состояния, позволяющего ему взаимодействовать с процессами операционной системы, запущенными в специальном режиме.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MachineName">
|
||||
<summary>Получает имя компьютера, на котором выполняется связанный процесс.</summary>
|
||||
<returns>Имя компьютера, на котором выполняется связанный процесс.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MainModule">
|
||||
<summary>Получает главный модуль связанного процесса.</summary>
|
||||
<returns>Модуль <see cref="T:System.Diagnostics.ProcessModule" />, который был использован для запуска процесса.</returns>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MainModule" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A 32-bit process is trying to access the modules of a 64-bit process.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MaxWorkingSet">
|
||||
<summary>Возвращает или задает максимальный размер доступного рабочего множества для связанного процесса.</summary>
|
||||
<returns>Максимальный размер рабочего множества в байтах, доступного в памяти для процесса.</returns>
|
||||
<exception cref="T:System.ArgumentException">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MaxWorkingSet" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MinWorkingSet">
|
||||
<summary>Возвращает или задает минимальный размер доступного рабочего множества для связанного процесса.</summary>
|
||||
<returns>Минимальный размер рабочего множества в байтах, требуемый в памяти для процесса.</returns>
|
||||
<exception cref="T:System.ArgumentException">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MinWorkingSet" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Modules">
|
||||
<summary>Получает модули, которые были загружены связанным процессом.</summary>
|
||||
<returns>Массив объектов типа <see cref="T:System.Diagnostics.ProcessModule" />, который предоставляет модули, загруженные связанным процессом.</returns>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.Modules" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">You are attempting to access the <see cref="P:System.Diagnostics.Process.Modules" /> property for either the system process or the idle process.These processes do not have modules.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.NonpagedSystemMemorySize64">
|
||||
<summary>Получает количество невыгружаемой системной памяти, выделенной для связанного процесса.</summary>
|
||||
<returns>Количество системной памяти в байтах, выделенной для связанного процесса, которую нельзя записать в файл подкачки виртуальной памяти.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.OnExited">
|
||||
<summary>Вызывает событие <see cref="E:System.Diagnostics.Process.Exited" />.</summary>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.OutputDataReceived">
|
||||
<summary>Происходит, когда приложение записывает строку в свой перенаправленный поток <see cref="P:System.Diagnostics.Process.StandardOutput" />.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PagedMemorySize64">
|
||||
<summary>Получает количество выгружаемой системной памяти, выделенной для связанного процесса.</summary>
|
||||
<returns>Количество памяти в байтах, выделенной в файле подкачки виртуальной памяти для связанного процесса.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PagedSystemMemorySize64">
|
||||
<summary>Возвращает объем выгружаемой системной памяти, выделенной для связанного процесса.</summary>
|
||||
<returns>Количество системной памяти в байтах, выделенной для связанного процесса, которую можно записать в файл подкачки виртуальной памяти.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakPagedMemorySize64">
|
||||
<summary>Получает максимальное количество памяти в файле подкачки виртуальной памяти, используемой связанным процессом.</summary>
|
||||
<returns>Максимальное количество памяти в байтах, выделенной в файле подкачки виртуальной памяти для связанного процесса с момента его запуска.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakVirtualMemorySize64">
|
||||
<summary>Получает максимальное количество виртуальной памяти, используемой связанным процессом.</summary>
|
||||
<returns>Максимальное количество виртуальной памяти в байтах, выделенной для связанного процесса с момента его запуска.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakWorkingSet64">
|
||||
<summary>Получает максимальное количество физической памяти, используемой связанным процессом.</summary>
|
||||
<returns>Максимальное количество физической памяти в байтах, выделенной для связанного процесса с момента его запуска.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PriorityBoostEnabled">
|
||||
<summary>Возвращает или задает значение, указывающее, должна ли операционная система временно увеличить приоритет связанного процесса, когда основное окно процесса получит фокус.</summary>
|
||||
<returns>Значение true, если требуется динамическое увеличение приоритета процесса, когда процесс выходит из состояния ожидания; в противном случае — значение false.Значение по умолчанию — false.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Priority boost information could not be retrieved from the associated process resource. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PriorityBoostEnabled" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PriorityClass">
|
||||
<summary>Возвращает или задает общую категорию приоритета для процесса.</summary>
|
||||
<returns>Категория приоритета для связанного процесса, из которой вычисляется свойство <see cref="P:System.Diagnostics.Process.BasePriority" />.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PriorityClass" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">You have set the <see cref="P:System.Diagnostics.Process.PriorityClass" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>
|
||||
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">Priority class cannot be set because it does not use a valid value, as defined in the <see cref="T:System.Diagnostics.ProcessPriorityClass" /> enumeration.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PrivateMemorySize64">
|
||||
<summary>Получает количество закрытой памяти, выделенной для связанного процесса.</summary>
|
||||
<returns>Количество памяти в байтах, выделенное для связанного процесса, который не может быть доступен другим процессам.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PrivilegedProcessorTime">
|
||||
<summary>Получает права доступа на время процессора для этого процесса.</summary>
|
||||
<returns>Класс <see cref="T:System.TimeSpan" />, показывающий количество времени, которое процесс потратил на выполнение кода внутри ядра операционной системы.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PrivilegedProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ProcessName">
|
||||
<summary>Получает имя процесса.</summary>
|
||||
<returns>Имя, которое использует система для идентификации процесса для пользователя.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process does not have an identifier, or no process is associated with the <see cref="T:System.Diagnostics.Process" />.-or- The associated process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is not on this computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ProcessorAffinity">
|
||||
<summary>Возвращает или задает процессоры, на которых может быть запланировано выполнение потоков данного процесса.</summary>
|
||||
<returns>Битовая маска, представляющая процессоры, на которых могут выполняться потоки связанного процесса.По умолчанию маска зависит от числа процессоров в компьютере.Значение по умолчанию равно 2 n -1, где n — число процессоров.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<see cref="P:System.Diagnostics.Process.ProcessorAffinity" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.ProcessorAffinity" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> was not available.-or- The process has exited. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Refresh">
|
||||
<summary>Удаляет любые кэшированные внутри компонента процесса сведения о связанном процессе.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.SafeHandle">
|
||||
<summary>Возвращает собственный дескриптор процесса.</summary>
|
||||
<returns>Собственный дескриптор процесса.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.SessionId">
|
||||
<summary>Получает идентификатор сеанса служб терминалов для связанного процесса.</summary>
|
||||
<returns>Идентификатор сеанса служба терминалов для связанного процесса.</returns>
|
||||
<exception cref="T:System.NullReferenceException">There is no session associated with this process.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The <see cref="P:System.Diagnostics.Process.SessionId" /> property is not supported on Windows 98.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardError">
|
||||
<summary>Получает поток, используемый для чтения вывода ошибок приложения.</summary>
|
||||
<returns>Объект <see cref="T:System.IO.StreamReader" />, используемый для чтения стандартного потока ошибок приложения.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has not been defined for redirection; ensure <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> is set to true and <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is set to false.- or - The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has been opened for asynchronous read operations with <see cref="M:System.Diagnostics.Process.BeginErrorReadLine" />. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardInput">
|
||||
<summary>Получает поток, используемый для записи ввода приложения.</summary>
|
||||
<returns>Объект <see cref="T:System.IO.StreamWriter" />, используемый для записи стандартного входного потока приложения.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardInput" /> stream has not been defined because <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" /> is set to false. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardOutput">
|
||||
<summary>Получает поток, используемый для чтения текстовых выходных данных приложения.</summary>
|
||||
<returns>Объект <see cref="T:System.IO.StreamReader" />, используемый для чтения стандартного потока вывода приложения.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has not been defined for redirection; ensure <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" /> is set to true and <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is set to false.- or - The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has been opened for asynchronous read operations with <see cref="M:System.Diagnostics.Process.BeginOutputReadLine" />. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start">
|
||||
<summary>Запускает (или повторно использует) ресурс процесса, определенный свойством <see cref="P:System.Diagnostics.Process.StartInfo" /> этого компонента <see cref="T:System.Diagnostics.Process" />, и связывает его с компонентом.</summary>
|
||||
<returns>Значение true, если ресурс процесса запущен; значение false, если новый ресурс процесса не был запущен (например, при повторном использовании существующего процесса).</returns>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified in the <see cref="T:System.Diagnostics.Process" /> component's <see cref="P:System.Diagnostics.Process.StartInfo" />.-or- The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> member of the <see cref="P:System.Diagnostics.Process.StartInfo" /> property is true while <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" />, <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" />, or <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> is true. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">There was an error in opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)">
|
||||
<summary>Запускает ресурс процесса, определенный параметром, содержащим стартовую информацию процесса (например, имя файла запускаемого процесса), и связывает ресурс с новым компонентом <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Новый процесс <see cref="T:System.Diagnostics.Process" />, связанный с ресурсом процесса, или null, если ресурс процесса не запущен.Обратите внимание, что новый процесс, запущенный с уже выполняющимися экземплярами того же процесса, будет независимым от других.Кроме того, метод Start может вернуть ненулевой тип Process, свойство <see cref="T:System.Diagnostics.ProcessHasExited" /> которого равно true.В этом случае запущенный процесс может активировать существующий экземпляр самого себя, а затем завершить работу.</returns>
|
||||
<param name="startInfo">Объект <see cref="T:System.Diagnostics.ProcessStartInfo" />, который содержит информацию, использующуюся для запуска процесса, включая имя файла и все аргументы командной строки. </param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified in the <paramref name="startInfo" /> parameter's <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property.-or- The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property of the <paramref name="startInfo" /> parameter is true and the <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" />, <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" />, or <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> property is also true.-or-The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property of the <paramref name="startInfo" /> parameter is true and the <see cref="P:System.Diagnostics.ProcessStartInfo.UserName" /> property is not null or empty or the <see cref="P:System.Diagnostics.ProcessStartInfo.Password" /> property is not null.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="startInfo" /> parameter is null. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The file specified in the <paramref name="startInfo" /> parameter's <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property could not be found.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String)">
|
||||
<summary>Запускает ресурс процесса путем указания имени документа или файла приложения и связывает ресурс с новым компонентом <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Новый процесс <see cref="T:System.Diagnostics.Process" />, связанный с ресурсом процесса, или null, если ресурс процесса не запущен.Обратите внимание, что новый процесс, запущенный наряду с уже выполняющимися экземплярами того же процесса, будет независимым от других.Кроме того, метод Start может вернуть ненулевой тип Process, свойство <see cref="T:System.Diagnostics.ProcessHasExited" /> которого равно true.В этом случае запущенный процесс может активировать существующий экземпляр самого себя, а затем завершить работу.</returns>
|
||||
<param name="fileName">Имя документа или файла приложения для запуска в процессе. </param>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The PATH environment variable has a string containing quotes.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String)">
|
||||
<summary>Запускает ресурс процесса путем указания имени приложения и набора аргументов командной строки и связывает ресурс с новым компонентом <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Новый процесс <see cref="T:System.Diagnostics.Process" />, связанный с ресурсом процесса, или null, если ресурс процесса не запущен.Обратите внимание, что новый процесс, запущенный наряду с уже выполняющимися экземплярами того же процесса, будет независимым от других.Кроме того, метод Start может вернуть ненулевой тип Process, свойство <see cref="T:System.Diagnostics.ProcessHasExited" /> которого равно true.В этом случае запущенный процесс может активировать существующий экземпляр самого себя, а затем завершить работу.</returns>
|
||||
<param name="fileName">Имя файла приложения для запуска в процессе. </param>
|
||||
<param name="arguments">Аргументы командной строки для передачи при запуске процесса. </param>
|
||||
<exception cref="T:System.InvalidOperationException">The <paramref name="fileName" /> or <paramref name="arguments" /> parameter is null. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The PATH environment variable has a string containing quotes.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)">
|
||||
<summary>Запускает ресурс процесса путем указания имени приложения, имени пользователя, пароля и домена и связывает ресурс с новым компонентом <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Новый процесс <see cref="T:System.Diagnostics.Process" />, связанный с ресурсом процесса, или null, если ресурс процесса не запущен.Обратите внимание, что новый процесс, запущенный наряду с уже выполняющимися экземплярами того же процесса, будет независимым от других.Кроме того, метод Start может вернуть ненулевой тип Process, свойство <see cref="T:System.Diagnostics.ProcessHasExited" /> которого равно true.В этом случае запущенный процесс может активировать существующий экземпляр самого себя, а затем завершить работу.</returns>
|
||||
<param name="fileName">Имя файла приложения для запуска в процессе.</param>
|
||||
<param name="userName">Имя пользователя, используемое при запуске процесса.</param>
|
||||
<param name="password">Объект <see cref="T:System.Security.SecureString" />, содержащий пароль для использования при запуске процесса.</param>
|
||||
<param name="domain">Домен, используемый при запуске процесса.</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<paramref name="fileName" /> is not an executable (.exe) file.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">There was an error in opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)">
|
||||
<summary>Запускает ресурс процесса путем указания имени приложения, набора аргументов командной строки, имени пользователя, пароля и домена и связывает ресурс с новым компонентом <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Новый процесс <see cref="T:System.Diagnostics.Process" />, связанный с ресурсом процесса, или null, если ресурс процесса не запущен.Обратите внимание, что новый процесс, запущенный наряду с уже выполняющимися экземплярами того же процесса, будет независимым от других.Кроме того, метод Start может вернуть ненулевой тип Process, свойство <see cref="T:System.Diagnostics.ProcessHasExited" /> которого равно true.В этом случае запущенный процесс может активировать существующий экземпляр самого себя, а затем завершить работу.</returns>
|
||||
<param name="fileName">Имя файла приложения для запуска в процессе. </param>
|
||||
<param name="arguments">Аргументы командной строки для передачи при запуске процесса. </param>
|
||||
<param name="userName">Имя пользователя, используемое при запуске процесса.</param>
|
||||
<param name="password">Объект <see cref="T:System.Security.SecureString" />, содержащий пароль для использования при запуске процесса.</param>
|
||||
<param name="domain">Домен, используемый при запуске процесса.</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<paramref name="fileName" /> is not an executable (.exe) file.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StartInfo">
|
||||
<summary>Получает или задает свойства для передачи их методу <see cref="M:System.Diagnostics.Process.Start" /> объекта <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Класс <see cref="T:System.Diagnostics.ProcessStartInfo" />, который представляет данные для запуска процесса.Эти аргументы включают имя исполняемого файла или документа, использованного для запуска процесса.</returns>
|
||||
<exception cref="T:System.ArgumentNullException">The value that specifies the <see cref="P:System.Diagnostics.Process.StartInfo" /> is null. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StartTime">
|
||||
<summary>Получает время запуска связанного процесса.</summary>
|
||||
<returns>Объект, показывающий время запуска процесса.Если процесс не выполняется, возникает исключение.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.StartTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has exited.-or-The process has not been started.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred in the call to the Windows function.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Threads">
|
||||
<summary>Получает множество потоков, выполняющихся в связанном процессе.</summary>
|
||||
<returns>Массив объектов типа <see cref="T:System.Diagnostics.ProcessThread" />, представляющий потоки операционной системы, которые в настоящий момент выполняются в связанном процессе.</returns>
|
||||
<exception cref="T:System.SystemException">The process does not have an <see cref="P:System.Diagnostics.Process.Id" />, or no process is associated with the <see cref="T:System.Diagnostics.Process" /> instance.-or- The associated process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.TotalProcessorTime">
|
||||
<summary>Получает полное время процессора для этого процесса.</summary>
|
||||
<returns>Объект <see cref="T:System.TimeSpan" />, указывающий количество времени, потраченного процессом на загрузку ЦП.Это значение является суммой значений свойств <see cref="P:System.Diagnostics.Process.UserProcessorTime" /> и <see cref="P:System.Diagnostics.Process.PrivilegedProcessorTime" />.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.TotalProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.UserProcessorTime">
|
||||
<summary>Получает пользовательское время процессора для этого процесса.</summary>
|
||||
<returns>Класс <see cref="T:System.TimeSpan" />, показывающий количество времени, которое связанный процесс потратил на выполнение кода внутри приложения (не внутри ядра операционной системы).</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.UserProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.VirtualMemorySize64">
|
||||
<summary>Получает количество виртуальной памяти, выделенной для связанного процесса.</summary>
|
||||
<returns>Возвращает количество виртуальной памяти в байтах, выделенной для связанного процесса.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.WaitForExit">
|
||||
<summary>Дает компоненту <see cref="T:System.Diagnostics.Process" /> команду ожидать завершения связанного процесса в течение неограниченного времени.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The wait setting could not be accessed. </exception>
|
||||
<exception cref="T:System.SystemException">No process <see cref="P:System.Diagnostics.Process.Id" /> has been set, and a <see cref="P:System.Diagnostics.Process.Handle" /> from which the <see cref="P:System.Diagnostics.Process.Id" /> property can be determined does not exist.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.-or- You are attempting to call <see cref="M:System.Diagnostics.Process.WaitForExit" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.WaitForExit(System.Int32)">
|
||||
<summary>Дает компоненту <see cref="T:System.Diagnostics.Process" /> команду ожидать завершения связанного процесса в течение указанного времени в миллисекундах.</summary>
|
||||
<returns>Значение true, если связанный процесс завершился; в противном случае — значение false.</returns>
|
||||
<param name="milliseconds">Количество времени в миллисекундах для ожидания завершения связанного процесса.Максимальным является наибольшее возможное 32-битное целое число, которое представляет для операционной системы бесконечность.</param>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The wait setting could not be accessed. </exception>
|
||||
<exception cref="T:System.SystemException">No process <see cref="P:System.Diagnostics.Process.Id" /> has been set, and a <see cref="P:System.Diagnostics.Process.Handle" /> from which the <see cref="P:System.Diagnostics.Process.Id" /> property can be determined does not exist.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.-or- You are attempting to call <see cref="M:System.Diagnostics.Process.WaitForExit(System.Int32)" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.WorkingSet64">
|
||||
<summary>Получает количество физической памяти, выделенной для связанного процесса.</summary>
|
||||
<returns>Количество физической памяти в байтах, выделенной для связанного процесса.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessModule">
|
||||
<summary>Представляет файл с расширением .dll или .exe, загруженный в определенный процесс.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.BaseAddress">
|
||||
<summary>Возвращает адрес в памяти, куда был загружен модуль.</summary>
|
||||
<returns>Адрес загрузки модуля.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.EntryPointAddress">
|
||||
<summary>Возвращает адрес памяти для функции, выполняющейся при загрузке и выполнении модуля системой.</summary>
|
||||
<returns>Точка входа модуля.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.FileName">
|
||||
<summary>Возвращает полный путь к модулю.</summary>
|
||||
<returns>Полный путь, который определяет место модуля.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.ModuleMemorySize">
|
||||
<summary>Возвращает объем памяти, необходимый для загрузки модуля.</summary>
|
||||
<returns>Размер памяти в байтах, которую занимает модуль.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.ModuleName">
|
||||
<summary>Возвращает имя модуля процесса.</summary>
|
||||
<returns>Имя модуля.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModule.ToString">
|
||||
<summary>Преобразует имя модуля в строку.</summary>
|
||||
<returns>Значение свойства <see cref="P:System.Diagnostics.ProcessModule.ModuleName" />.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessModuleCollection">
|
||||
<summary>Предоставляет строго типизированную коллекцию объектов <see cref="T:System.Diagnostics.ProcessModule" />.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.#ctor">
|
||||
<summary>Инициализирует новый экземпляр класса <see cref="T:System.Diagnostics.ProcessModuleCollection" /> без использования связанных экземпляров <see cref="T:System.Diagnostics.ProcessModule" />.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])">
|
||||
<summary>Инициализирует новый экземпляр класса <see cref="T:System.Diagnostics.ProcessModuleCollection" />, используя указанный массив экземпляров <see cref="T:System.Diagnostics.ProcessModule" />.</summary>
|
||||
<param name="processModules">Массив экземпляров <see cref="T:System.Diagnostics.ProcessModule" />, с помощью которого инициализируется экземпляр <see cref="T:System.Diagnostics.ProcessModuleCollection" />. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)">
|
||||
<summary>Определяет, существует ли в коллекции указанный модуль процесса.</summary>
|
||||
<returns>Значение true, если модуль присутствует в коллекции; в противном случае — значение false.</returns>
|
||||
<param name="module">Экземпляр <see cref="T:System.Diagnostics.ProcessModule" />, указывающий на искомый модуль в коллекции. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)">
|
||||
<summary>Копирует в коллекцию массив экземпляров <see cref="T:System.Diagnostics.ProcessModule" /> по указанному индексу.</summary>
|
||||
<param name="array">Массив экземпляров <see cref="T:System.Diagnostics.ProcessModule" /> для добавления в коллекцию. </param>
|
||||
<param name="index">Место, куда добавляются новые экземпляры. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.Count"></member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.GetEnumerator"></member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)">
|
||||
<summary>Предоставляет расположение указанного модуля в коллекции.</summary>
|
||||
<returns>Отсчитываемый от нуля индекс, по которому определяется место модуля в коллекции <see cref="T:System.Diagnostics.ProcessModuleCollection" />.</returns>
|
||||
<param name="module">Класс <see cref="T:System.Diagnostics.ProcessModule" />, чей индекс извлекается. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)">
|
||||
<summary>Возвращает индекс для выполнения итерации по набору модулей процесса.</summary>
|
||||
<returns>Класс <see cref="T:System.Diagnostics.ProcessModule" />, который индексирует модули в коллекции. </returns>
|
||||
<param name="index">Отсчитываемое от нуля индексное значение модуля в коллекции. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"></member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized"></member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot"></member>
|
||||
<member name="T:System.Diagnostics.ProcessPriorityClass">
|
||||
<summary>Указывает приоритет, который система связывает с процессом.Это значение вместе со значением приоритета каждого потока процесса определяет базовый уровень приоритета каждого потока.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.AboveNormal">
|
||||
<summary>Указывает, что значение приоритета процесса находится между Normal и <see cref="F:System.Diagnostics.ProcessPriorityClass.High" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.BelowNormal">
|
||||
<summary>Указывает, что значение приоритета процесса находится между Idle и Normal.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.High">
|
||||
<summary>Указывает, что процесс выполняет срочные задачи, которые должны быть выполнены немедленно, например диалоговое окно Task List, которое должно быстро отвечать при вызове пользователя независимо от загрузки операционной системы.Потоки процесса выгружают потоки процессов с нормальными или низкими приоритетами.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.Idle">
|
||||
<summary>Указывает, что потоки этого процесса выполняются, только когда система не занята. Примером может служить программа-заставка.Потоки данного процесса выгружаются потоками любых процессов с более высоким приоритетом.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.Normal">
|
||||
<summary>Указывает, что у процесса нет особых запланированных потребностей.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.RealTime">
|
||||
<summary>Указывает, что процесс обладает максимально высоким приоритетом.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessStartInfo">
|
||||
<summary>Задает набор значений, используемых при запуске процесса.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor">
|
||||
<summary>Инициализирует новый экземпляр класса <see cref="T:System.Diagnostics.ProcessStartInfo" />, не указывая имени файла, вместе с которым должен запускаться процесс.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)">
|
||||
<summary>Инициализирует новый экземпляр класса <see cref="T:System.Diagnostics.ProcessStartInfo" /> и задает имя файла, например приложение или документ, вместе с которым должен запускаться процесс.</summary>
|
||||
<param name="fileName">Приложение или документ, вместе с которыми должен запускаться процесс. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)">
|
||||
<summary>Инициализирует новый экземпляр класса <see cref="T:System.Diagnostics.ProcessStartInfo" />, задает имя файла приложения, вместе с которым должен запускаться процесс, и указывает передаваемые в приложение аргументы командной строки.</summary>
|
||||
<param name="fileName">Приложение, с которым должен запускаться процесс. </param>
|
||||
<param name="arguments">Аргументы командной строки, передаваемые в приложение при запуске процесса. </param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Arguments">
|
||||
<summary>Возвращает или задает набор аргументов командной строки, используемых при запуске приложения.</summary>
|
||||
<returns>Одна строка, содержащая аргументы для передачи в целевое приложение, указанное в свойстве <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" />.Значение по умолчанию — пустая строка ("").В Windows Vista и более ранних версиях операционной системы Windows длина аргументов, добавляемых к длине полного пути к процессу, должна быть меньше 2080.В Windows 7 и более поздних версиях длина должна быть меньше 32699.Аргументы анализируются и интерпретируются целевым приложением, поэтому они должны соответствовать ожидаемым аргументам приложения.Как показано в примерах ниже, для приложений .NET пробелы считаются разделителями между несколькими аргументами.Одиночный аргумент, включающий пробелы, должен быть заключен в кавычки, но кавычки не указываются в целевом приложении.В финальном проанализированном аргументе при включении кавычек к каждому знаку следует добавить escape-символ.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.CreateNoWindow">
|
||||
<summary>Возвращает или задает значение, позволяющее определить, нужно ли запускать процесс в новом окне.</summary>
|
||||
<returns>Значение true, если процесс должен быть запущен без создания для него нового окна; в противном случае — значение false.Значение по умолчанию — false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Domain">
|
||||
<summary>Возвращает или задает значение, позволяющее идентифицировать домен, используемый при запуске процесса. </summary>
|
||||
<returns>Домен Active Directory, используемый при запуске процесса.Свойство домена актуально преимущественно для пользователей, работающих в корпоративной среде и использующих службу Active Directory.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Environment"></member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.FileName">
|
||||
<summary>Возвращает или задает приложение или документ для запуска.</summary>
|
||||
<returns>Имя запускаемого приложения или имя документа, тип файла которого связан с приложением и для которого доступно действие открытия по умолчанию.Значение по умолчанию — пустая строка ("").</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.LoadUserProfile">
|
||||
<summary>Возвращает или задает значение, позволяющее определить, следует ли загружать профиль пользователя Windows из реестра. </summary>
|
||||
<returns>Значение true, если должен быть загружен профиль пользователя Windows; в противном случае — значение false.Значение по умолчанию — false.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Password">
|
||||
<summary>Возвращает или задает параметр безопасности, в котором содержится пароль пользователя, используемый при запуске процесса.</summary>
|
||||
<returns>Пароль пользователя, используемый при запуске процесса.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError">
|
||||
<summary>Возвращает или задает значение, позволяющее определить, записываются ли выходные данные об ошибках приложения в поток <see cref="P:System.Diagnostics.Process.StandardError" />.</summary>
|
||||
<returns>Значение true, если выходные данные должны записываться в <see cref="P:System.Diagnostics.Process.StandardError" />; в противном случае — значение false.Значение по умолчанию — false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput">
|
||||
<summary>Возвращает или задает значение, позволяющее определить, будут ли считываться входные данные приложения из потока <see cref="P:System.Diagnostics.Process.StandardInput" />.</summary>
|
||||
<returns>Значение true, если входные данные должны считываться из <see cref="P:System.Diagnostics.Process.StandardInput" />; в противном случае — значение false.Значение по умолчанию — false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput">
|
||||
<summary>Возвращает или задает значение, позволяющее определить, записываются ли текстовые выходные данные приложения в поток <see cref="P:System.Diagnostics.Process.StandardOutput" />.</summary>
|
||||
<returns>Значение true, если выходные данные должны записываться в <see cref="P:System.Diagnostics.Process.StandardOutput" />; в противном случае — значение false.Значение по умолчанию — false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding">
|
||||
<summary>Возвращает или задает предпочтительную кодировку для вывода ошибок.</summary>
|
||||
<returns>Объект, представляющий предпочтительную кодировку для вывода ошибок.Значение по умолчанию — null.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding">
|
||||
<summary>Возвращает или задает предпочтительную кодировку для стандартного вывода.</summary>
|
||||
<returns>Объект, представляющий предпочтительную кодировку для стандартного вывода.Значение по умолчанию — null.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.UserName">
|
||||
<summary>Возвращает или задает имя пользователя, которое следует использовать при запуске процесса.</summary>
|
||||
<returns>Имя пользователя, используемое при запуске процесса.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.UseShellExecute">
|
||||
<summary>Возвращает или задает значение, позволяющее определить, нужно ли использовать оболочку операционной системы для запуска процесса.</summary>
|
||||
<returns>Значение true, если оболочка должна использоваться при запуске процесса; значение false, если процесс должен создаваться непосредственно из исполняемого файла.Значение по умолчанию — true.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.WorkingDirectory">
|
||||
<summary>Если свойство <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> имеет значение false, возвращает или задает рабочую папку для процесса для запуска.Если параметру <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> присвоено значение true, возвращает или задает каталог, содержащий процесс, который требуется запустить.</summary>
|
||||
<returns>Если <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> имеет значение true, полное имя каталога, в котором содержится запускаемый процесс.Если свойство <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> имеет значение false, рабочая папка для запускаемого процесса.Значение по умолчанию — пустая строка ("").</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessThread">
|
||||
<summary>Представляет поток процесса операционной системы.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.BasePriority">
|
||||
<summary>Возвращает базовый приоритет потока.</summary>
|
||||
<returns>Базовый приоритет потока, вычисляемый операционной системой путем совмещения класса приоритета процесса с уровнем приоритета соответствующего потока.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.CurrentPriority">
|
||||
<summary>Возвращает текущий приоритет потока.</summary>
|
||||
<returns>Текущий приоритет потока, который может отклоняться от базового, в зависимости от способа планирования потока в операционной системе.Для активного потока приоритет может быть временно увеличен.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.Id">
|
||||
<summary>Возвращает уникальный идентификатор потока.</summary>
|
||||
<returns>Уникальный идентификатор связан с конкретным потоком.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.IdealProcessor">
|
||||
<summary>Устанавливает предпочтительный процессор для выполнения этого потока.</summary>
|
||||
<returns>Предпочтительный процессор для потока, используемый при планировании потока системой для определения процессора, на котором будет выполняться поток.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Системе не удалось задать поток для запуска на указанном процессоре. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Используется платформа Windows 98 или Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Данный процесс выполняется на удаленном компьютере.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PriorityBoostEnabled">
|
||||
<summary>Возвращает или задает значение, указывающее, должна ли операционная система временно увеличивать приоритет соответствующего потока всякий раз, когда основное окно процесса, которому принадлежит данный поток, получает фокус.</summary>
|
||||
<returns>Значение true для увеличения приоритета потока при взаимодействии пользователя с интерфейсом процесса или значение false в противном случае.Значение по умолчанию — false.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Не удается извлечь информацию о повышении приоритета.– или –Не удается задать информацию о повышении приоритета. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Используется платформа Windows 98 или Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Данный процесс выполняется на удаленном компьютере.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PriorityLevel">
|
||||
<summary>Возвращает или задает уровень приоритета потока.</summary>
|
||||
<returns>Одно из значений <see cref="T:System.Diagnostics.ThreadPriorityLevel" />, задающих диапазон, который ограничивает приоритет потока.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Не удается извлечь информацию об уровне приоритета потока. – или –Не удается задать информацию об уровне приоритета потока.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Используется платформа Windows 98 или Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Данный процесс выполняется на удаленном компьютере.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime">
|
||||
<summary>Возвращает количество времени, затрачиваемое потоком на выполнение кода внутри ядра операционной системы.</summary>
|
||||
<returns>Объект <see cref="T:System.TimeSpan" />, указывающий количество времени, которое поток потратил на выполнение кода внутри ядра операционной системы.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Не удалось извлечь затраченное потоком время. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Используется платформа Windows 98 или Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Данный процесс выполняется на удаленном компьютере.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.ProcessorAffinity">
|
||||
<summary>Задает процессоры, на которых может выполняться соответствующий поток.</summary>
|
||||
<returns>Объект <see cref="T:System.IntPtr" />, указывающий на набор битов, каждый из которых представляет процессор, где может выполняться поток.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Не удается задать сходство процессоров. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Используется платформа Windows 98 или Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Данный процесс выполняется на удаленном компьютере.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThread.ResetIdealProcessor">
|
||||
<summary>Отменяет идеальный процессор для данного потока, указывая тем самым на отсутствие единственного идеального процессора.Другими словами, для потока идеален любой процессор.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Не удается сбросить идеальный процессор. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Используется платформа Windows 98 или Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Данный процесс выполняется на удаленном компьютере.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.StartAddress">
|
||||
<summary>Возвращает адрес функции в памяти, которая была вызвана операционной системой и запустила этот поток.</summary>
|
||||
<returns>Начальный адрес потока, указывающий на определенную приложением функцию, которую выполняет данный поток.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Используется платформа Windows 98 или Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Данный процесс выполняется на удаленном компьютере.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.StartTime">
|
||||
<summary>Возвращает время запуска потока операционной системой.</summary>
|
||||
<returns>Класс <see cref="T:System.DateTime" />, представляющий системное время запуска потока операционной системой.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Не удалось извлечь затраченное потоком время. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Используется платформа Windows 98 или Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Данный процесс выполняется на удаленном компьютере.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.ThreadState">
|
||||
<summary>Возвращает текущее состояние данного потока.</summary>
|
||||
<returns>Объект <see cref="T:System.Diagnostics.ThreadState" />, указывающий на состояние выполнения потока, например, выполняется, ожидает или прекращен.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Используется платформа Windows 98 или Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Данный процесс выполняется на удаленном компьютере.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.TotalProcessorTime">
|
||||
<summary>Возвращает общее количество времени, которое потратил поток на обработку процессором.</summary>
|
||||
<returns>Объект <see cref="T:System.TimeSpan" />, указывающий количество времени, на протяжении которого поток контролировал процессор.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Не удалось извлечь затраченное потоком время. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Используется платформа Windows 98 или Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Данный процесс выполняется на удаленном компьютере.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.UserProcessorTime">
|
||||
<summary>Возвращает количество времени, которое поток потратил на выполнение кода внутри приложения.</summary>
|
||||
<returns>Объект <see cref="T:System.TimeSpan" />, указывающий количество времени, которое поток потратил на выполнение кода внутри приложения, в отличие от выполнения в ядре операционной системы.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Не удалось извлечь затраченное потоком время. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Используется платформа Windows 98 или Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Данный процесс выполняется на удаленном компьютере.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.WaitReason">
|
||||
<summary>Возвращает причину, по которой поток находится в состоянии ожидания.</summary>
|
||||
<returns>Объект <see cref="T:System.Diagnostics.ThreadWaitReason" />, представляющий причину нахождения потока в состоянии ожидания.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">Поток не находится в состоянии ожидания. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Используется платформа Windows 98 или Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Данный процесс выполняется на удаленном компьютере.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessThreadCollection">
|
||||
<summary>Содержит строго типизированную коллекцию объектов <see cref="T:System.Diagnostics.ProcessThread" />.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.#ctor">
|
||||
<summary>Инициализирует новый экземпляр класса <see cref="T:System.Diagnostics.ProcessThreadCollection" /> без использования связанных экземпляров <see cref="T:System.Diagnostics.ProcessThread" />.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])">
|
||||
<summary>Инициализирует новый экземпляр класса <see cref="T:System.Diagnostics.ProcessThreadCollection" />, используя указанный массив экземпляров <see cref="T:System.Diagnostics.ProcessThread" />.</summary>
|
||||
<param name="processThreads">Массив экземпляров <see cref="T:System.Diagnostics.ProcessThread" />, с помощью которого инициализируется экземпляр <see cref="T:System.Diagnostics.ProcessThreadCollection" />. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)">
|
||||
<summary>Добавляет поток процесса в коллекцию.</summary>
|
||||
<returns>Отсчитываемый с нуля индекс потока в коллекции.</returns>
|
||||
<param name="thread">Поток, который требуется добавить в коллекцию. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)">
|
||||
<summary>Определяет, существует ли указанный поток процесса в коллекции.</summary>
|
||||
<returns>Значение true, если поток присутствует в коллекции; в противном случае — значение false.</returns>
|
||||
<param name="thread">Экземпляр <see cref="T:System.Diagnostics.ProcessThread" />, указывающий на искомый поток в коллекции. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)">
|
||||
<summary>Копирует в коллекцию массив экземпляров <see cref="T:System.Diagnostics.ProcessThread" /> по указанному индексу.</summary>
|
||||
<param name="array">Массив экземпляров <see cref="T:System.Diagnostics.ProcessThread" /> для добавления в коллекцию. </param>
|
||||
<param name="index">Место, куда добавляются новые экземпляры. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.Count"></member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.GetEnumerator"></member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)">
|
||||
<summary>Предоставляет место указанного потока в коллекции.</summary>
|
||||
<returns>Отсчитываемый с нуля индекс, который определяет место потока в коллекции <see cref="T:System.Diagnostics.ProcessThreadCollection" />.</returns>
|
||||
<param name="thread">Класс <see cref="T:System.Diagnostics.ProcessThread" />, чей индекс извлекается. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)">
|
||||
<summary>Вставляет поток процесса в указанное место в коллекции.</summary>
|
||||
<param name="index">Отсчитываемый с нуля индекс, указывающий на место, в которое должен быть вставлен поток. </param>
|
||||
<param name="thread">Поток, вставляемый в коллекцию. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)">
|
||||
<summary>Получает индекс для итерационного перебора набора потоков процесса.</summary>
|
||||
<returns>Класс <see cref="T:System.Diagnostics.ProcessThread" />, который индексирует потоки в коллекции.</returns>
|
||||
<param name="index">Отсчитываемое с нуля значение потока в коллекции. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)">
|
||||
<summary>Удаляет поток процесса из коллекции.</summary>
|
||||
<param name="thread">Поток, который нужно удалить из коллекции. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"></member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized"></member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot"></member>
|
||||
<member name="T:System.Diagnostics.ThreadPriorityLevel">
|
||||
<summary>Задает уровень приоритета потока.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.AboveNormal">
|
||||
<summary>Задает приоритет на один уровень выше нормального для связанного <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.BelowNormal">
|
||||
<summary>Задает приоритет на один уровень ниже нормального для связанного <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Highest">
|
||||
<summary>Задает высший приоритет.Он на два уровня выше нормального приоритета для связанного <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Idle">
|
||||
<summary>Задает приоритет простоя.Это самое низкое из возможных значений приоритета всех потоков, независимо от значения связанного <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Lowest">
|
||||
<summary>Задает низший приоритет.Он на два уровня ниже нормального приоритета для связанного <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Normal">
|
||||
<summary>Задает нормальный приоритет для связанного <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.TimeCritical">
|
||||
<summary>Задает критичный по времени приоритет.Это самый высокий приоритет всех потоков, независимо от значения связанного <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ThreadState">
|
||||
<summary>Задает текущее состояние выполнения потока.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Initialized">
|
||||
<summary>Состояние, указывающее, что поток инициализирован, но еще не запущен.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Ready">
|
||||
<summary>Состояние, указывающее, что поток ожидает освобождения процессора.Поток готов к выполнению на следующем доступном процессоре.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Running">
|
||||
<summary>Состояние, указывающее, что поток в данный момент использует процессор.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Standby">
|
||||
<summary>Состояние, указывающее, что поток приступает к использованию процессора.В каждый момент времени в этом состоянии может быть только один поток.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Terminated">
|
||||
<summary>Состояние, указывающее, что выполнение потока завершено и он выполнил выход.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Transition">
|
||||
<summary>Состояние, указывающее, что поток ожидает ресурс (не процессор), необходимый для его выполнения.Например, он может ожидать считывания с диска стека его выполнения.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Unknown">
|
||||
<summary>Состояние потока неизвестно.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Wait">
|
||||
<summary>Состояние, указывающее, что поток не готов использовать процессор, поскольку ожидает завершения внешней операции или освобождения ресурса.Когда поток становится готовым, его выполнение планируется повторно.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ThreadWaitReason">
|
||||
<summary>Указывает причину, по которой поток находится в состоянии ожидания.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.EventPairHigh">
|
||||
<summary>Поток ожидает старшую составляющую пары события.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.EventPairLow">
|
||||
<summary>Поток ожидает младшую составляющую пары события.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.ExecutionDelay">
|
||||
<summary>Выполнение потока отложено.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Executive">
|
||||
<summary>Поток ожидает планировщик.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.FreePage">
|
||||
<summary>Поток ожидает свободную страницу виртуальной памяти.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.LpcReceive">
|
||||
<summary>Поток ожидает поступления вызова локальной процедуры.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.LpcReply">
|
||||
<summary>Поток ожидает поступления ответа на вызов локальной процедуры.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.PageIn">
|
||||
<summary>Поток ожидает поступления страницы виртуальной памяти в память.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.PageOut">
|
||||
<summary>Поток ожидает записи страницы виртуальной памяти на диск.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Suspended">
|
||||
<summary>Выполнение потока приостановлено.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.SystemAllocation">
|
||||
<summary>Поток ожидает системных ресурсов.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Unknown">
|
||||
<summary>Причина ожидания потока неизвестна.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.UserRequest">
|
||||
<summary>Поток ожидает запроса пользователя.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.VirtualMemory">
|
||||
<summary>Поток ожидает выделения системой виртуальной памяти.</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
997
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml
vendored
Normal file
997
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml
vendored
Normal file
@@ -0,0 +1,997 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Diagnostics.Process</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Win32.SafeHandles.SafeProcessHandle">
|
||||
<summary>[SECURITY CRITICAL] 为一个进程句柄提供托管包装。</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)">
|
||||
<summary>[SECURITY CRITICAL] 初始化的新实例<see cref="T:Microsoft.Win32.SafeHandles.SafeProcessHandle" />从,该值指示是否在终结阶段释放该句柄指定的句柄的类。</summary>
|
||||
<param name="existingHandle">要包装的句柄。</param>
|
||||
<param name="ownsHandle">true若要可靠地让<see cref="T:Microsoft.Win32.SafeHandles.SafeProcessHandle" />在终结阶段 ; 释放该句柄否则为false。</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid"></member>
|
||||
<member name="T:System.Diagnostics.DataReceivedEventArgs">
|
||||
<summary>为 <see cref="E:System.Diagnostics.Process.OutputDataReceived" /> 和 <see cref="E:System.Diagnostics.Process.ErrorDataReceived" /> 事件提供数据。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.DataReceivedEventArgs.Data">
|
||||
<summary>获取写入到重定向 <see cref="T:System.Diagnostics.Process" /> 输出流的字符行。</summary>
|
||||
<returns>由关联的 <see cref="T:System.Diagnostics.Process" /> 写入到其重定向 <see cref="P:System.Diagnostics.Process.StandardOutput" /> 或 <see cref="P:System.Diagnostics.Process.StandardError" /> 流中的行。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.DataReceivedEventHandler">
|
||||
<summary>表示将要处理 <see cref="T:System.Diagnostics.Process" /> 的 <see cref="E:System.Diagnostics.Process.OutputDataReceived" /> 事件或 <see cref="E:System.Diagnostics.Process.ErrorDataReceived" /> 事件的方法。</summary>
|
||||
<param name="sender">事件源。</param>
|
||||
<param name="e">包含事件数据的 <see cref="T:System.Diagnostics.DataReceivedEventArgs" />。 </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.Process">
|
||||
<summary>提供对本地和远程进程的访问权限并使你能够启动和停止本地系统进程。若要浏览此类型的 .NET Framework 源代码,请参阅引用源。</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.#ctor">
|
||||
<summary>初始化 <see cref="T:System.Diagnostics.Process" /> 类的新实例。</summary>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.BasePriority">
|
||||
<summary>获取关联进程的基本优先级。</summary>
|
||||
<returns>基本优先级别,它从关联进程的 <see cref="P:System.Diagnostics.Process.PriorityClass" /> 计算。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has exited.-or- The process has not started, so there is no process ID. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.BeginErrorReadLine">
|
||||
<summary>在应用程序的重定向 <see cref="P:System.Diagnostics.Process.StandardError" /> 流上开始进行异步读取操作。</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref="P:System.Diagnostics.Process.StandardError" /> stream.- or - The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has been used by a synchronous read operation. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.BeginOutputReadLine">
|
||||
<summary>在应用程序的重定向 <see cref="P:System.Diagnostics.Process.StandardOutput" /> 流上开始进行异步读取操作。</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream.- or - The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has been used by a synchronous read operation. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.CancelErrorRead">
|
||||
<summary>取消在应用程序的重定向 <see cref="P:System.Diagnostics.Process.StandardError" /> 流上执行的异步读取操作。</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardError" /> stream is not enabled for asynchronous read operations. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.CancelOutputRead">
|
||||
<summary>取消在应用程序的重定向 <see cref="P:System.Diagnostics.Process.StandardOutput" /> 流上执行的异步读取操作。</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream is not enabled for asynchronous read operations. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Dispose"></member>
|
||||
<member name="M:System.Diagnostics.Process.Dispose(System.Boolean)">
|
||||
<summary>释放此进程使用的所有资源。</summary>
|
||||
<param name="disposing">若要释放托管资源和非托管资源,则为 true;若仅释放非托管资源,则为 false。</param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.EnableRaisingEvents">
|
||||
<summary>获取或设置在进程终止时是否应激发 <see cref="E:System.Diagnostics.Process.Exited" /> 事件。</summary>
|
||||
<returns>如果关联的进程终止(通过退出或者调用 <see cref="M:System.Diagnostics.Process.Kill" />)时应引发 <see cref="E:System.Diagnostics.Process.Exited" /> 事件,则为 true;否则为 false。默认值为 false。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.EnterDebugMode">
|
||||
<summary>通过启用当前线程的本机属性 SeDebugPrivilege,将 <see cref="T:System.Diagnostics.Process" /> 组件置于与以特殊模式运行的操作系统进程交互的状态。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.ErrorDataReceived">
|
||||
<summary>当应用程序写入其重定向 <see cref="P:System.Diagnostics.Process.StandardError" /> 流中时发生。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ExitCode">
|
||||
<summary>获取关联进程终止时指定的值。</summary>
|
||||
<returns>关联进程终止时指定的代码。</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process has not exited.-or- The process <see cref="P:System.Diagnostics.Process.Handle" /> is not valid. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.ExitCode" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.Exited">
|
||||
<summary>在进程退出时发生。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ExitTime">
|
||||
<summary>获取关联进程退出的时间。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.DateTime" />,它指示关联进程终止的时间。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.ExitTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetCurrentProcess">
|
||||
<summary>获取新的 <see cref="T:System.Diagnostics.Process" /> 组件并将其与当前活动的进程关联。</summary>
|
||||
<returns>与运行调用应用程序的进程资源关联的新的 <see cref="T:System.Diagnostics.Process" /> 组件。</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessById(System.Int32)">
|
||||
<summary>返回新的 <see cref="T:System.Diagnostics.Process" /> 组件(给定本地计算机上某个进程的标识符)。</summary>
|
||||
<returns>一个与 <paramref name="processId" /> 参数标识的本地进程资源关联的 <see cref="T:System.Diagnostics.Process" /> 组件。</returns>
|
||||
<param name="processId">进程资源的系统唯一标识符。</param>
|
||||
<exception cref="T:System.ArgumentException">The process specified by the <paramref name="processId" /> parameter is not running.The identifier might be expired.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process was not started by this object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)">
|
||||
<summary>返回新的 <see cref="T:System.Diagnostics.Process" /> 组件(给定进程标识符和网络中计算机的名称)。</summary>
|
||||
<returns>一个与 <paramref name="processId" /> 参数标识的远程进程资源关联的 <see cref="T:System.Diagnostics.Process" /> 组件。</returns>
|
||||
<param name="processId">进程资源的系统唯一标识符。</param>
|
||||
<param name="machineName">网络上计算机的名称。</param>
|
||||
<exception cref="T:System.ArgumentException">The process specified by the <paramref name="processId" /> parameter is not running.The identifier might be expired.-or- The <paramref name="machineName" /> parameter syntax is invalid.The name might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process was not started by this object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcesses">
|
||||
<summary>为本地计算机上的每个进程资源创建一个新的 <see cref="T:System.Diagnostics.Process" /> 组件。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.Process" /> 类型的数组,它表示本地计算机上运行的所有进程资源。</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcesses(System.String)">
|
||||
<summary>为指定计算机上的每个进程资源创建一个新的 <see cref="T:System.Diagnostics.Process" /> 组件。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.Process" /> 类型的数组,表示指定计算机上运行的所有进程资源。</returns>
|
||||
<param name="machineName">从其中读取进程列表的计算机。</param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="machineName" /> parameter syntax is invalid.It might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The operating system platform does not support this operation on remote computers. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A problem occurred accessing an underlying system API. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessesByName(System.String)">
|
||||
<summary>创建新的 <see cref="T:System.Diagnostics.Process" /> 组件的数组,并将它们与本地计算机上共享指定的进程名称的所有进程资源关联。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.Process" /> 类型的数组,表示运行指定应用程序或文件的进程资源。</returns>
|
||||
<param name="processName">该进程的友好名称。</param>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)">
|
||||
<summary>创建新的 <see cref="T:System.Diagnostics.Process" /> 组件的数组,并将它们与远程计算机上共享指定进程名称的所有进程资源关联。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.Process" /> 类型的数组,表示运行指定应用程序或文件的进程资源。</returns>
|
||||
<param name="processName">该进程的友好名称。</param>
|
||||
<param name="machineName">网络上计算机的名称。</param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="machineName" /> parameter syntax is invalid.It might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The operating system platform does not support this operation on remote computers. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A problem occurred accessing an underlying system API. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.HasExited">
|
||||
<summary>获取指示关联进程是否已终止的值。</summary>
|
||||
<returns>如果 <see cref="T:System.Diagnostics.Process" /> 组件引用的操作系统进程已终止,则为 true;否则为 false。</returns>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with the object. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The exit code for the process could not be retrieved. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.HasExited" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Id">
|
||||
<summary>获取关联进程的唯一标识符。</summary>
|
||||
<returns>此 <see cref="T:System.Diagnostics.Process" /> 实例引用的、由系统生成的进程的唯一标识符。</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process's <see cref="P:System.Diagnostics.Process.Id" /> property has not been set.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Kill">
|
||||
<summary>立即停止关联的进程。</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to call <see cref="M:System.Diagnostics.Process.Kill" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has already exited. -or-There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.LeaveDebugMode">
|
||||
<summary>使 <see cref="T:System.Diagnostics.Process" /> 组件离开允许它与以特殊模式运行的操作系统进程交互的状态。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MachineName">
|
||||
<summary>获取关联进程正在其上运行的计算机的名称。</summary>
|
||||
<returns>关联进程正在其上运行的计算机的名称。</returns>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MainModule">
|
||||
<summary>获取关联进程的主模块。</summary>
|
||||
<returns>用于启动进程的 <see cref="T:System.Diagnostics.ProcessModule" />。</returns>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MainModule" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A 32-bit process is trying to access the modules of a 64-bit process.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MaxWorkingSet">
|
||||
<summary>获取或设置关联进程的允许的最大工作集大小。</summary>
|
||||
<returns>内存中允许的进程的最大工作集大小(以字节为单位)。</returns>
|
||||
<exception cref="T:System.ArgumentException">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MaxWorkingSet" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MinWorkingSet">
|
||||
<summary>获取或设置关联进程的允许的最小工作集大小。</summary>
|
||||
<returns>内存中进程所需的最小工作集大小(以字节为单位)。</returns>
|
||||
<exception cref="T:System.ArgumentException">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MinWorkingSet" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Modules">
|
||||
<summary>获取已由关联进程加载的模块。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.ProcessModule" /> 类型的数组,它表示已由关联进程加载的模块。</returns>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.Modules" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">You are attempting to access the <see cref="P:System.Diagnostics.Process.Modules" /> property for either the system process or the idle process.These processes do not have modules.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.NonpagedSystemMemorySize64">
|
||||
<summary>获取为关联的进程分配的非分页系统内存量。</summary>
|
||||
<returns>为关联的进程分配的、不能写入虚拟内存分页文件中的系统内存量(以字节为单位)。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.OnExited">
|
||||
<summary>引发 <see cref="E:System.Diagnostics.Process.Exited" /> 事件。</summary>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.OutputDataReceived">
|
||||
<summary>每次应用程序向其重定向 <see cref="P:System.Diagnostics.Process.StandardOutput" /> 流中写入行时发生。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PagedMemorySize64">
|
||||
<summary>获取为关联的进程分配的分页内存量。</summary>
|
||||
<returns>在虚拟内存分页文件中为关联进程分配的内存量(以字节为单位)。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PagedSystemMemorySize64">
|
||||
<summary>获取为关联进程分配的可分页系统内存量。</summary>
|
||||
<returns>为可写入虚拟内存分页文件的关联内存分配的系统内存量(以字节为单位)。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakPagedMemorySize64">
|
||||
<summary>获取关联的进程使用的虚拟内存分页文件中的最大内存量。</summary>
|
||||
<returns>从启动关联的进程以来在为虚拟内存分页文件中关联进程分配的最大内存量(以字节为单位)。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakVirtualMemorySize64">
|
||||
<summary>获取关联进程使用的最大虚拟内存量。</summary>
|
||||
<returns>从关联进程启动以来为关联进程分配的最大虚拟内存量(以字节为单位)。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakWorkingSet64">
|
||||
<summary>获取关联进程使用的最大物理内存量。</summary>
|
||||
<returns>从启动关联进程以来为关联进程分配的最大物理内存量(以字节为单位)。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PriorityBoostEnabled">
|
||||
<summary>获取或设置一个值,该值指示主窗口拥有焦点时是否应由操作系统暂时提升关联进程优先级。</summary>
|
||||
<returns>如果进程离开等待状态时应动态提升进程优先级别,则为 true;否则为 false。默认值为 false。</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Priority boost information could not be retrieved from the associated process resource. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PriorityBoostEnabled" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PriorityClass">
|
||||
<summary>获取或设置关联进程的总体优先级类别。</summary>
|
||||
<returns>关联进程的优先级别类别,可从该类别计算进程的 <see cref="P:System.Diagnostics.Process.BasePriority" />。</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PriorityClass" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">You have set the <see cref="P:System.Diagnostics.Process.PriorityClass" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>
|
||||
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">Priority class cannot be set because it does not use a valid value, as defined in the <see cref="T:System.Diagnostics.ProcessPriorityClass" /> enumeration.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PrivateMemorySize64">
|
||||
<summary>获取为关联进程分配的专用内存量。</summary>
|
||||
<returns>为关联进程分配的不能与其他进程共享的内存量(以字节为单位)。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PrivilegedProcessorTime">
|
||||
<summary>获取此进程的特权处理器时间。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.TimeSpan" />,它指示进程在操作系统内核中运行代码所用的时间。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PrivilegedProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ProcessName">
|
||||
<summary>获取该进程的名称。</summary>
|
||||
<returns>系统用以向用户标识该进程的名称。</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process does not have an identifier, or no process is associated with the <see cref="T:System.Diagnostics.Process" />.-or- The associated process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is not on this computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ProcessorAffinity">
|
||||
<summary>获取或设置一些处理器,此进程中的线程可以按计划在这些处理器上运行。</summary>
|
||||
<returns>位掩码,表示关联进程内的线程可以在其上运行的处理器。默认值取决于计算机上的处理器数。默认值为 2 n -1,其中 n 是处理器数。</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<see cref="P:System.Diagnostics.Process.ProcessorAffinity" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.ProcessorAffinity" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> was not available.-or- The process has exited. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Refresh">
|
||||
<summary>放弃已缓存到进程组件的关联仅存的任何相关信息。</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.SafeHandle">
|
||||
<summary>获取此进程的本机句柄。</summary>
|
||||
<returns>此进程的本机句柄。</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.SessionId">
|
||||
<summary>获取关联进程的终端服务会话标识符。</summary>
|
||||
<returns>关联进程的终端服务会话标识符。</returns>
|
||||
<exception cref="T:System.NullReferenceException">There is no session associated with this process.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The <see cref="P:System.Diagnostics.Process.SessionId" /> property is not supported on Windows 98.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardError">
|
||||
<summary>获取用于读取应用程序错误输出的流。</summary>
|
||||
<returns>一个 <see cref="T:System.IO.StreamReader" />,可用于读取应用程序的标准错误流。</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has not been defined for redirection; ensure <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> is set to true and <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is set to false.- or - The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has been opened for asynchronous read operations with <see cref="M:System.Diagnostics.Process.BeginErrorReadLine" />. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardInput">
|
||||
<summary>获取用于写入应用程序输入的流。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.IO.StreamWriter" />,可用于写入应用程序的标准输入流。</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardInput" /> stream has not been defined because <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" /> is set to false. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardOutput">
|
||||
<summary>获取用于读取应用程序文本输出的流。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.IO.StreamReader" />,可用于读取应用程序的标准输出流。</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has not been defined for redirection; ensure <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" /> is set to true and <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is set to false.- or - The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has been opened for asynchronous read operations with <see cref="M:System.Diagnostics.Process.BeginOutputReadLine" />. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start">
|
||||
<summary>启动(或重用)此 <see cref="T:System.Diagnostics.Process" /> 组件的 <see cref="P:System.Diagnostics.Process.StartInfo" /> 属性指定的进程资源,并将其与该组件关联。</summary>
|
||||
<returns>如果启动了进程资源,则为 true;如果没有启动新的进程资源(例如,如果重用了现有进程),则为 false。</returns>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified in the <see cref="T:System.Diagnostics.Process" /> component's <see cref="P:System.Diagnostics.Process.StartInfo" />.-or- The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> member of the <see cref="P:System.Diagnostics.Process.StartInfo" /> property is true while <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" />, <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" />, or <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> is true. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">There was an error in opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)">
|
||||
<summary>启动由包含进程启动信息(例如,要启动的进程的文件名)的参数指定的进程资源,并将该资源与新的 <see cref="T:System.Diagnostics.Process" /> 组件关联。</summary>
|
||||
<returns>一个与进程资源关联的新 <see cref="T:System.Diagnostics.Process" />,如果未启动进程资源,则为 null。请注意,随着同一进程已在运行的实例启动的新进程将独立于其他进程。此外,启动可能返回一个 <see cref="T:System.Diagnostics.ProcessHasExited" /> 属性已设置为 true 的非 null 进程。在这种情况下,启动的进程可能已激活现有实例自身,然后退出。</returns>
|
||||
<param name="startInfo">
|
||||
<see cref="T:System.Diagnostics.ProcessStartInfo" />,包含用于启动进程的信息(包括文件名和任何命令行参数)。</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified in the <paramref name="startInfo" /> parameter's <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property.-or- The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property of the <paramref name="startInfo" /> parameter is true and the <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" />, <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" />, or <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> property is also true.-or-The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property of the <paramref name="startInfo" /> parameter is true and the <see cref="P:System.Diagnostics.ProcessStartInfo.UserName" /> property is not null or empty or the <see cref="P:System.Diagnostics.ProcessStartInfo.Password" /> property is not null.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="startInfo" /> parameter is null. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The file specified in the <paramref name="startInfo" /> parameter's <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property could not be found.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String)">
|
||||
<summary>通过指定文档或应用程序文件的名称来启动进程资源,并将资源与新的 <see cref="T:System.Diagnostics.Process" /> 组件关联。</summary>
|
||||
<returns>一个与进程资源关联的新 <see cref="T:System.Diagnostics.Process" />,如果未启动进程资源,则为 null。请注意,随着同一进程已在运行的实例启动的新进程将独立于其他进程。此外,启动可能返回一个 <see cref="T:System.Diagnostics.ProcessHasExited" /> 属性已设置为 true 的非 null 进程。在这种情况下,启动的进程可能已激活现有实例自身,然后退出。</returns>
|
||||
<param name="fileName">要在进程中运行的文档或应用程序文件的名称。</param>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The PATH environment variable has a string containing quotes.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String)">
|
||||
<summary>通过指定应用程序的名称和一组命令行参数来启动一个进程资源,并将该资源与新的 <see cref="T:System.Diagnostics.Process" /> 组件相关联。</summary>
|
||||
<returns>一个与进程资源关联的新 <see cref="T:System.Diagnostics.Process" />,如果未启动进程资源,则为 null。请注意,随着同一进程已在运行的实例启动的新进程将独立于其他进程。此外,启动可能返回一个 <see cref="T:System.Diagnostics.ProcessHasExited" /> 属性已设置为 true 的非 null 进程。在这种情况下,启动的进程可能已激活现有实例自身,然后退出。</returns>
|
||||
<param name="fileName">要在进程中运行的应用程序文件的名称。</param>
|
||||
<param name="arguments">启动该进程时传递的命令行参数。</param>
|
||||
<exception cref="T:System.InvalidOperationException">The <paramref name="fileName" /> or <paramref name="arguments" /> parameter is null. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The PATH environment variable has a string containing quotes.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)">
|
||||
<summary>通过指定应用程序的名称、用户名、密码和域来启动一个进程资源,并将该资源与新的 <see cref="T:System.Diagnostics.Process" /> 组件关联起来。</summary>
|
||||
<returns>一个与进程资源关联的新 <see cref="T:System.Diagnostics.Process" />,如果未启动进程资源,则为 null。请注意,随着同一进程已在运行的实例启动的新进程将独立于其他进程。此外,启动可能返回一个 <see cref="T:System.Diagnostics.ProcessHasExited" /> 属性已设置为 true 的非 null 进程。在这种情况下,启动的进程可能已激活现有实例自身,然后退出。</returns>
|
||||
<param name="fileName">要在进程中运行的应用程序文件的名称。</param>
|
||||
<param name="userName">启动进程时使用的用户名。</param>
|
||||
<param name="password">一个 <see cref="T:System.Security.SecureString" />,它包含启动进程时要使用的密码。</param>
|
||||
<param name="domain">启动进程时要使用的域。</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<paramref name="fileName" /> is not an executable (.exe) file.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">There was an error in opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)">
|
||||
<summary>通过指定应用程序的名称、一组命令行参数、用户名、密码和域来启动一个进程资源,并将该资源与新的 <see cref="T:System.Diagnostics.Process" /> 组件关联起来。</summary>
|
||||
<returns>一个与进程资源关联的新 <see cref="T:System.Diagnostics.Process" />,如果未启动进程资源,则为 null。请注意,随着同一进程已在运行的实例启动的新进程将独立于其他进程。此外,启动可能返回一个 <see cref="T:System.Diagnostics.ProcessHasExited" /> 属性已设置为 true 的非 null 进程。在这种情况下,启动的进程可能已激活现有实例自身,然后退出。</returns>
|
||||
<param name="fileName">要在进程中运行的应用程序文件的名称。</param>
|
||||
<param name="arguments">启动该进程时传递的命令行参数。</param>
|
||||
<param name="userName">启动进程时使用的用户名。</param>
|
||||
<param name="password">一个 <see cref="T:System.Security.SecureString" />,它包含启动进程时要使用的密码。</param>
|
||||
<param name="domain">启动进程时要使用的域。</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<paramref name="fileName" /> is not an executable (.exe) file.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StartInfo">
|
||||
<summary>获取或设置要传递给 <see cref="T:System.Diagnostics.Process" /> 的 <see cref="M:System.Diagnostics.Process.Start" /> 方法的属性。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.ProcessStartInfo" />,它表示启动该进程时要使用的数据。这些参数包括用于启动该进程的可执行文件或文档的名称。</returns>
|
||||
<exception cref="T:System.ArgumentNullException">The value that specifies the <see cref="P:System.Diagnostics.Process.StartInfo" /> is null. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StartTime">
|
||||
<summary>获取关联进程启动的时间。</summary>
|
||||
<returns>指示进程启动的时间的对象。如果进程未运行,将会引发异常。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.StartTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has exited.-or-The process has not been started.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred in the call to the Windows function.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Threads">
|
||||
<summary>获取在关联进程中运行的一组线程。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.ProcessThread" /> 类型的数组,它表示当前在关联进程中运行的操作系统线程。</returns>
|
||||
<exception cref="T:System.SystemException">The process does not have an <see cref="P:System.Diagnostics.Process.Id" />, or no process is associated with the <see cref="T:System.Diagnostics.Process" /> instance.-or- The associated process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.TotalProcessorTime">
|
||||
<summary>获取此进程的总的处理器时间。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.TimeSpan" />,它指示关联进程使用 CPU 的时间。此值是 <see cref="P:System.Diagnostics.Process.UserProcessorTime" /> 和 <see cref="P:System.Diagnostics.Process.PrivilegedProcessorTime" /> 的和。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.TotalProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.UserProcessorTime">
|
||||
<summary>获取此进程的用户处理器时间。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.TimeSpan" />,它指示关联进程在该进程的应用程序部分内(而不是在操作系统内核中)运行代码所用的时间。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.UserProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.VirtualMemorySize64">
|
||||
<summary>获取为关联进程分配的虚拟内存量。</summary>
|
||||
<returns>为关联进程分配的虚拟内存量(以字节为单位)。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.WaitForExit">
|
||||
<summary>指示 <see cref="T:System.Diagnostics.Process" /> 组件无限期地等待关联进程退出。</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The wait setting could not be accessed. </exception>
|
||||
<exception cref="T:System.SystemException">No process <see cref="P:System.Diagnostics.Process.Id" /> has been set, and a <see cref="P:System.Diagnostics.Process.Handle" /> from which the <see cref="P:System.Diagnostics.Process.Id" /> property can be determined does not exist.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.-or- You are attempting to call <see cref="M:System.Diagnostics.Process.WaitForExit" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.WaitForExit(System.Int32)">
|
||||
<summary>指示 <see cref="T:System.Diagnostics.Process" /> 组件在指定的毫秒数内等待关联进程退出。</summary>
|
||||
<returns>如果关联进程已退出,则为 true;否则为 false。</returns>
|
||||
<param name="milliseconds">等待关联进程退出的时间(以毫秒为单位)。最大值为 32 位整数的最大可能值,这对于操作系统而言表示无限大。</param>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The wait setting could not be accessed. </exception>
|
||||
<exception cref="T:System.SystemException">No process <see cref="P:System.Diagnostics.Process.Id" /> has been set, and a <see cref="P:System.Diagnostics.Process.Handle" /> from which the <see cref="P:System.Diagnostics.Process.Id" /> property can be determined does not exist.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.-or- You are attempting to call <see cref="M:System.Diagnostics.Process.WaitForExit(System.Int32)" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.WorkingSet64">
|
||||
<summary>获取为关联进程分配的物理内存量。</summary>
|
||||
<returns>为关的进程分配的物理内存量(以字节为单位)。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessModule">
|
||||
<summary>表示加载到特定进程中的 .dll 或 .exe 文件。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.BaseAddress">
|
||||
<summary>获取加载模块的内存地址。</summary>
|
||||
<returns>模块的加载地址。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.EntryPointAddress">
|
||||
<summary>获取在系统加载和运行模块时运行的函数的内存地址。</summary>
|
||||
<returns>模块的入口点。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.FileName">
|
||||
<summary>获取模块的完整路径。</summary>
|
||||
<returns>定义模块位置的完全限定路径。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.ModuleMemorySize">
|
||||
<summary>获取加载模块所需内存量。</summary>
|
||||
<returns>模块占用的内存大小(以字节为单位)。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.ModuleName">
|
||||
<summary>获取进程模块的名称。</summary>
|
||||
<returns>模块的名称。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModule.ToString">
|
||||
<summary>将模块的名称转换为字符串。</summary>
|
||||
<returns>
|
||||
<see cref="P:System.Diagnostics.ProcessModule.ModuleName" /> 属性的值。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessModuleCollection">
|
||||
<summary>提供 <see cref="T:System.Diagnostics.ProcessModule" /> 对象的强类型集合。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.#ctor">
|
||||
<summary>在没有关联的 <see cref="T:System.Diagnostics.ProcessModule" /> 实例的情况下,初始化 <see cref="T:System.Diagnostics.ProcessModuleCollection" /> 类的新实例。</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])">
|
||||
<summary>使用指定的 <see cref="T:System.Diagnostics.ProcessModule" /> 实例数组来初始化 <see cref="T:System.Diagnostics.ProcessModuleCollection" /> 类的新实例。</summary>
|
||||
<param name="processModules">用来初始化该 <see cref="T:System.Diagnostics.ProcessModuleCollection" /> 实例的 <see cref="T:System.Diagnostics.ProcessModule" /> 实例的数组。</param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)">
|
||||
<summary>确定集合中是否存在指定的进程模块。</summary>
|
||||
<returns>如果集合中存在该模块,则为 true;否则为 false。</returns>
|
||||
<param name="module">一个 <see cref="T:System.Diagnostics.ProcessModule" /> 实例,它指示要该集合中查找的模块。</param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)">
|
||||
<summary>将 <see cref="T:System.Diagnostics.ProcessModule" /> 实例的数组复制到集合的指定索引处。</summary>
|
||||
<param name="array">要添加到集合的 <see cref="T:System.Diagnostics.ProcessModule" /> 实例的数组。</param>
|
||||
<param name="index">要添加新实例的位置。</param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.Count"></member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.GetEnumerator"></member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)">
|
||||
<summary>提供指定模块在集合中的位置。</summary>
|
||||
<returns>从零开始的索引,它定义模块在 <see cref="T:System.Diagnostics.ProcessModuleCollection" /> 中的位置。</returns>
|
||||
<param name="module">检索其索引的 <see cref="T:System.Diagnostics.ProcessModule" />。</param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)">
|
||||
<summary>获取用于循环访问进程模块集的索引。</summary>
|
||||
<returns>一个 <see cref="T:System.Diagnostics.ProcessModule" />,它对集合中的模块进行索引</returns>
|
||||
<param name="index">集合中该模块的从零开始的索引值。</param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"></member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized"></member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot"></member>
|
||||
<member name="T:System.Diagnostics.ProcessPriorityClass">
|
||||
<summary>指示系统将与进程关联的优先级。此值与进程的每个线程的优先级值一起来确定每个线程的基本优先级别。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.AboveNormal">
|
||||
<summary>指定进程的优先级在 Normal 之上,但在 <see cref="F:System.Diagnostics.ProcessPriorityClass.High" /> 之下。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.BelowNormal">
|
||||
<summary>指定进程的优先级在 Idle 之上,但在 Normal 之下。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.High">
|
||||
<summary>指定进程执行必须立即执行的时间关键任务,如 Task List 对话框,不管操作系统的负荷如何,用户调用该对话框后均必须迅速响应。该进程的线程优先于普通或空闲优先级类进程的线程。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.Idle">
|
||||
<summary>指定此进程的线程只能在系统空闲时运行,如屏幕保护程序。更高优先级类中运行的任何进程的线程都优先于此进程的线程。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.Normal">
|
||||
<summary>指定进程没有特殊的安排需求。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.RealTime">
|
||||
<summary>指定进程拥有可能的最高优先级。</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessStartInfo">
|
||||
<summary>指定启动进程时使用的一组值。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor">
|
||||
<summary>初始化 <see cref="T:System.Diagnostics.ProcessStartInfo" /> 类的新实例,而不指定启动进程时使用的文件名。</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)">
|
||||
<summary>初始化 <see cref="T:System.Diagnostics.ProcessStartInfo" /> 类的新实例,并指定启动进程时使用的诸如应用程序或文档的文件名。</summary>
|
||||
<param name="fileName">启动进程时使用的应用程序或文档。</param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)">
|
||||
<summary>初始化 <see cref="T:System.Diagnostics.ProcessStartInfo" /> 类的新实例,指定启动该进程时使用的应用程序文件名以及要传递给该应用程序的一组命令行参数。</summary>
|
||||
<param name="fileName">启动进程时使用的应用程序。</param>
|
||||
<param name="arguments">进程启动时要传递给应用程序的命令行参数。</param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Arguments">
|
||||
<summary>获取或设置启动应用程序时要使用的一组命令行参数。</summary>
|
||||
<returns>单个字符串包含要传递给在 <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> 属性中指定的目标应用程序的参数。默认值为空字符串 ("")。在 Windows Vista 和早期的 Windows 操作系统上,添加至进程全径的长度的参数长度必须小于 2080。在 Windows 7 和更高版本,此长度必须小于 32699。参数由目标应用程序进行分析和解释,因此必须与该应用程序的预期保持一致。对于以下示例中所演示的 .NET 的应用程序,空格被解释为多个参数之间的分隔符。包含空格的单个参数必须用引号引起来,但这些引号不会传递到目标应用程序。在包括引号在内的最终已分析的参数中,每个标记均会进行三重转义。</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.CreateNoWindow">
|
||||
<summary>获取或设置指示是否在新窗口中启动该进程的值。</summary>
|
||||
<returns>如果应启动该进程而不创建包含它的新窗口,则为 true;否则为 false。默认值为 false。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Domain">
|
||||
<summary>获取或设置一个值,该值标识要在启动进程时使用的域。</summary>
|
||||
<returns>要在启动进程时使用的 Active Directory 域。域属性主要与使用 Active Directory 的企业级环境内的用户相关。</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Environment"></member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.FileName">
|
||||
<summary>获取或设置要启动的应用程序或文档。</summary>
|
||||
<returns>要启动的应用程序的名称或某文件类型的文档的名称,该文件类型与应用程序关联并且拥有可用的默认打开操作。默认值为空字符串 ("")。</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.LoadUserProfile">
|
||||
<summary>获取或设置一个值,该值指示是否从注册表加载 Windows 用户配置文件。</summary>
|
||||
<returns>如果应加载 Windows 用户概况,则为 true;否则为 false。默认值为 false。</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Password">
|
||||
<summary>获取或设置一个安全字符串,其中包含要在启动进程时使用的用户密码。</summary>
|
||||
<returns>启动进程时使用的用户密码。</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError">
|
||||
<summary>获取或设置一个值,该值指示是否将应用程序的错误输出写入 <see cref="P:System.Diagnostics.Process.StandardError" /> 流中。</summary>
|
||||
<returns>如果错误输出应写入 <see cref="P:System.Diagnostics.Process.StandardError" />,则为 true;否则为 false。默认值为 false。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput">
|
||||
<summary>获取或设置一个值,该值指示应用程序的输入是否从 <see cref="P:System.Diagnostics.Process.StandardInput" /> 流中读取。</summary>
|
||||
<returns>如果应从 <see cref="P:System.Diagnostics.Process.StandardInput" /> 读取输入,则为 true;否则为 false。默认值为 false。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput">
|
||||
<summary>获取或设置一个值,该值指示是否将应用程序的输出写入 <see cref="P:System.Diagnostics.Process.StandardOutput" /> 流中。</summary>
|
||||
<returns>如果输出应写入 <see cref="P:System.Diagnostics.Process.StandardOutput" />,则为 true;否则为 false。默认值为 false。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding">
|
||||
<summary>获取或设置错误输出的首选编码。</summary>
|
||||
<returns>一个对象,表示错误输出的首选编码。默认值为 null。</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding">
|
||||
<summary>获取或设置标准输出的首选编码。</summary>
|
||||
<returns>一个对象,表示标准输出的首选编码。默认值为 null。</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.UserName">
|
||||
<summary>获取或设置在启动进程时使用的用户名。</summary>
|
||||
<returns>启动进程时使用的用户名。</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.UseShellExecute">
|
||||
<summary>获取或设置一个值,该值指示是否使用操作系统 shell 启动进程。</summary>
|
||||
<returns>如果应在启动进程时使用 shell,则为 true;如果直接从可执行文件创建进程,则为 false。默认值为 true。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.WorkingDirectory">
|
||||
<summary>当 <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> 属性为 false 时,将获取或设置要启动的进程的工作目录。当 <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> 为 true 时,获取或设置包含要启动的进程的目录。</summary>
|
||||
<returns>当 <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> 为 true 时,是包含要启动的进程的目录的完全限定名。当 <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> 属性为 false 时,则为要启动的进程的工作目录。默认值为空字符串 ("")。</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessThread">
|
||||
<summary>表示操作系统进程线程。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.BasePriority">
|
||||
<summary>获取线程的基本优先级。</summary>
|
||||
<returns>线程的基本优先级,它由操作系统通过将进程优先级类与关联线程的优先级别相结合进行计算。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.CurrentPriority">
|
||||
<summary>获取线程的当前优先级。</summary>
|
||||
<returns>线程的当前优先级,可根据操作系统如何安排该线程而偏离基本优先级。可为活动线程暂时提升优先级。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.Id">
|
||||
<summary>获取线程的唯一标识符。</summary>
|
||||
<returns>与指定线程关联的唯一标识符。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.IdealProcessor">
|
||||
<summary>设置让此线程在其上运行的首选处理器。</summary>
|
||||
<returns>线程的首选处理器,用来在系统安排线程时确定在哪个处理器上运行线程。</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">系统未能设置线程在指定的处理器上启动。</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">平台为 Windows 98 或 Windows Millennium Edition。</exception>
|
||||
<exception cref="T:System.NotSupportedException">进程在远程计算机上。</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PriorityBoostEnabled">
|
||||
<summary>获取或设置一个值,该值指示每当关联线程的进程主窗口接收焦点时,操作系统是否暂时提升该线程的优先级。</summary>
|
||||
<returns>若要在用户与进程的界面交互时提升线程的优先级,则为 true;否则为 false。默认值为 false。</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">未能检索到优先级提升信息。- 或 -未能设置优先级提升信息。</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">平台为 Windows 98 或 Windows Millennium Edition。</exception>
|
||||
<exception cref="T:System.NotSupportedException">进程在远程计算机上。</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PriorityLevel">
|
||||
<summary>获取或设置线程的优先级别。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.ThreadPriorityLevel" /> 值之一,它指定限制线程优先级的范围。</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">未能检索到线程优先级别信息。- 或 -未能设置线程优先级别。</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">平台为 Windows 98 或 Windows Millennium Edition。</exception>
|
||||
<exception cref="T:System.NotSupportedException">进程在远程计算机上。</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime">
|
||||
<summary>获取线程在操作系统内核中运行代码所用的时间。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.TimeSpan" />,它指示线程在操作系统内核中运行代码所用的时间。</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">未能检索到线程时间。</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">平台为 Windows 98 或 Windows Millennium Edition。</exception>
|
||||
<exception cref="T:System.NotSupportedException">进程在远程计算机上。</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.ProcessorAffinity">
|
||||
<summary>设置关联线程可以在其上运行的处理器。</summary>
|
||||
<returns>指向一组位的 <see cref="T:System.IntPtr" />,每个位表示该线程可在其上运行的一个处理器。</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">未能设置处理器关联。</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">平台为 Windows 98 或 Windows Millennium Edition。</exception>
|
||||
<exception cref="T:System.NotSupportedException">进程在远程计算机上。</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThread.ResetIdealProcessor">
|
||||
<summary>重置此线程的理想处理器,以指示没有单个的理想处理器。换言之,任何处理器都是理想处理器。</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">未能重置理想处理器。</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">平台为 Windows 98 或 Windows Millennium Edition。</exception>
|
||||
<exception cref="T:System.NotSupportedException">进程在远程计算机上。</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.StartAddress">
|
||||
<summary>获取操作系统调用的、启动此线程的函数的内存地址。</summary>
|
||||
<returns>线程的起始地址,它指向线程执行的应用程序定义的函数。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">平台为 Windows 98 或 Windows Millennium Edition。</exception>
|
||||
<exception cref="T:System.NotSupportedException">进程在远程计算机上。</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.StartTime">
|
||||
<summary>获取操作系统启动该线程的时间。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.DateTime" />,它表示操作系统启动该线程时系统上的时间。</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">未能检索到线程时间。</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">平台为 Windows 98 或 Windows Millennium Edition。</exception>
|
||||
<exception cref="T:System.NotSupportedException">进程在远程计算机上。</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.ThreadState">
|
||||
<summary>获取此线程的当前状态。</summary>
|
||||
<returns>指示线程执行情况的 <see cref="T:System.Diagnostics.ThreadState" />(例如运行、等待或终止)。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">平台为 Windows 98 或 Windows Millennium Edition。</exception>
|
||||
<exception cref="T:System.NotSupportedException">进程在远程计算机上。</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.TotalProcessorTime">
|
||||
<summary>获取此线程使用处理器的时间总量。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.TimeSpan" />,它指示线程控制处理器的时间。</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">未能检索到线程时间。</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">平台为 Windows 98 或 Windows Millennium Edition。</exception>
|
||||
<exception cref="T:System.NotSupportedException">进程在远程计算机上。</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.UserProcessorTime">
|
||||
<summary>获取关联的线程在应用程序内运行代码所用的时间。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.TimeSpan" />,它指示线程在应用程序内(相对于在操作系统内核中)运行代码所用的时间。</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">未能检索到线程时间。</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">平台为 Windows 98 或 Windows Millennium Edition。</exception>
|
||||
<exception cref="T:System.NotSupportedException">进程在远程计算机上。</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.WaitReason">
|
||||
<summary>获取线程等待的原因。</summary>
|
||||
<returns>一个 <see cref="T:System.Diagnostics.ThreadWaitReason" />,表示线程处于等待状态的原因。</returns>
|
||||
<exception cref="T:System.InvalidOperationException">线程不在等待状态。</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">平台为 Windows 98 或 Windows Millennium Edition。</exception>
|
||||
<exception cref="T:System.NotSupportedException">进程在远程计算机上。</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessThreadCollection">
|
||||
<summary>提供 <see cref="T:System.Diagnostics.ProcessThread" /> 对象的强类型集合。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.#ctor">
|
||||
<summary>在没有关联的 <see cref="T:System.Diagnostics.ProcessThread" /> 实例的情况下,初始化 <see cref="T:System.Diagnostics.ProcessThreadCollection" /> 类的新实例。</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])">
|
||||
<summary>使用指定的 <see cref="T:System.Diagnostics.ProcessThread" /> 实例数组来初始化 <see cref="T:System.Diagnostics.ProcessThreadCollection" /> 类的新实例。</summary>
|
||||
<param name="processThreads">用来初始化该 <see cref="T:System.Diagnostics.ProcessThreadCollection" /> 实例的 <see cref="T:System.Diagnostics.ProcessThread" /> 实例的数组。</param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)">
|
||||
<summary>将进程线程附加到集合。</summary>
|
||||
<returns>集合中线程的从零开始的索引。</returns>
|
||||
<param name="thread">要添加到集合中的线程。</param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)">
|
||||
<summary>确定集合中是否存在指定的进程线程。</summary>
|
||||
<returns>如果集合中存在该线程,则为 true;否则为 false。</returns>
|
||||
<param name="thread">一个 <see cref="T:System.Diagnostics.ProcessThread" /> 实例,它指示要在该集合中查找的线程。</param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)">
|
||||
<summary>将 <see cref="T:System.Diagnostics.ProcessThread" /> 实例的数组复制到集合的指定索引处。</summary>
|
||||
<param name="array">要添加到集合的 <see cref="T:System.Diagnostics.ProcessThread" /> 实例的数组。</param>
|
||||
<param name="index">要添加新实例的位置。</param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.Count"></member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.GetEnumerator"></member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)">
|
||||
<summary>提供指定线程在集合中的位置。</summary>
|
||||
<returns>从零开始的索引,它定义线程在 <see cref="T:System.Diagnostics.ProcessThreadCollection" /> 中的位置。</returns>
|
||||
<param name="thread">检索其索引的 <see cref="T:System.Diagnostics.ProcessThread" />。</param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)">
|
||||
<summary>在集合中的指定位置插入进程线程。</summary>
|
||||
<param name="index">从零开始的索引,指示插入线程的位置。</param>
|
||||
<param name="thread">要插入到集合中的线程。</param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)">
|
||||
<summary>获取用于循环访问进程线程集的索引。</summary>
|
||||
<returns>一个 <see cref="T:System.Diagnostics.ProcessThread" />,它对集合中的线程进行索引。</returns>
|
||||
<param name="index">集合中该值的从零开始的索引。</param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)">
|
||||
<summary>从集合中删除进程线程。</summary>
|
||||
<param name="thread">要从该集合中移除的线程。</param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"></member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized"></member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot"></member>
|
||||
<member name="T:System.Diagnostics.ThreadPriorityLevel">
|
||||
<summary>指定线程的优先级别。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.AboveNormal">
|
||||
<summary>指定的优先级比关联的 <see cref="T:System.Diagnostics.ProcessPriorityClass" /> 的普通优先级高一级。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.BelowNormal">
|
||||
<summary>指定的优先级比关联的 <see cref="T:System.Diagnostics.ProcessPriorityClass" /> 的普通优先级低一级。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Highest">
|
||||
<summary>指定最高优先级。这比关联的 <see cref="T:System.Diagnostics.ProcessPriorityClass" /> 的普通优先级高两级。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Idle">
|
||||
<summary>指定空闲优先级。它是所有线程的可能的最低优先级值,与关联的 <see cref="T:System.Diagnostics.ProcessPriorityClass" /> 的值无关。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Lowest">
|
||||
<summary>指定最低优先级。这比关联的 <see cref="T:System.Diagnostics.ProcessPriorityClass" /> 的普通优先级低两级。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Normal">
|
||||
<summary>指定关联的 <see cref="T:System.Diagnostics.ProcessPriorityClass" /> 的普通优先级。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.TimeCritical">
|
||||
<summary>指定时间关键优先级。这是所有线程中的最高优先级,与关联的 <see cref="T:System.Diagnostics.ProcessPriorityClass" /> 的值无关。</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ThreadState">
|
||||
<summary>指定线程的当前执行状态。</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Initialized">
|
||||
<summary>此状态指示线程已初始化但尚未启动。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Ready">
|
||||
<summary>此状态指示线程因无可用的处理器而等待使用处理器。线程准备在下一个可用的处理器上运行。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Running">
|
||||
<summary>此状态指示线程当前正在使用处理器。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Standby">
|
||||
<summary>此状态指示线程将要使用处理器。一次只能有一个线程处于此状态。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Terminated">
|
||||
<summary>此状态指示线程已完成执行并已退出。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Transition">
|
||||
<summary>此状态指示线程在可以执行前等待处理器之外的资源。例如,它可能正在等待其执行堆栈从磁盘中分页。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Unknown">
|
||||
<summary>线程的状态未知。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Wait">
|
||||
<summary>此状态指示线程尚未准备好使用处理器,因为它正在等待外围操作完成或等待资源释放。当线程就绪后,将对其进行重排。</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ThreadWaitReason">
|
||||
<summary>指定线程等待的原因。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.EventPairHigh">
|
||||
<summary>线程正在等待事件对高。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.EventPairLow">
|
||||
<summary>线程正在等待事件对低。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.ExecutionDelay">
|
||||
<summary>线程执行延迟。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Executive">
|
||||
<summary>线程正在等待计划程序。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.FreePage">
|
||||
<summary>线程正在等待可用的虚拟内存页。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.LpcReceive">
|
||||
<summary>线程正在等待本地过程调用到达。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.LpcReply">
|
||||
<summary>线程正在等待对本地过程调用的回复到达。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.PageIn">
|
||||
<summary>线程正在等待虚拟内存页到达内存。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.PageOut">
|
||||
<summary>线程正在等待虚拟内存页写入磁盘。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Suspended">
|
||||
<summary>线程执行暂停。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.SystemAllocation">
|
||||
<summary>线程正在等待系统分配。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Unknown">
|
||||
<summary>线程正在因未知原因而等待。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.UserRequest">
|
||||
<summary>线程正在等待用户请求。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.VirtualMemory">
|
||||
<summary>线程正在等待系统分配虚拟内存。</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
1012
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml
vendored
Normal file
1012
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
BIN
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/System.Diagnostics.Process.dll
vendored
Normal file
BIN
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/System.Diagnostics.Process.dll
vendored
Normal file
Binary file not shown.
977
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/System.Diagnostics.Process.xml
vendored
Normal file
977
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/System.Diagnostics.Process.xml
vendored
Normal file
@@ -0,0 +1,977 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Diagnostics.Process</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Win32.SafeHandles.SafeProcessHandle">
|
||||
<summary>[SECURITY CRITICAL] Provides a managed wrapper for a process handle.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)">
|
||||
<summary>[SECURITY CRITICAL] Initializes a new instance of the <see cref="T:Microsoft.Win32.SafeHandles.SafeProcessHandle" /> class from the specified handle, indicating whether to release the handle during the finalization phase. </summary>
|
||||
<param name="existingHandle">The handle to be wrapped.</param>
|
||||
<param name="ownsHandle">true to reliably let <see cref="T:Microsoft.Win32.SafeHandles.SafeProcessHandle" /> release the handle during the finalization phase; otherwise, false.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid"></member>
|
||||
<member name="T:System.Diagnostics.DataReceivedEventArgs">
|
||||
<summary>Provides data for the <see cref="E:System.Diagnostics.Process.OutputDataReceived" /> and <see cref="E:System.Diagnostics.Process.ErrorDataReceived" /> events.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.DataReceivedEventArgs.Data">
|
||||
<summary>Gets the line of characters that was written to a redirected <see cref="T:System.Diagnostics.Process" /> output stream.</summary>
|
||||
<returns>The line that was written by an associated <see cref="T:System.Diagnostics.Process" /> to its redirected <see cref="P:System.Diagnostics.Process.StandardOutput" /> or <see cref="P:System.Diagnostics.Process.StandardError" /> stream.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.DataReceivedEventHandler">
|
||||
<summary>Represents the method that will handle the <see cref="E:System.Diagnostics.Process.OutputDataReceived" /> event or <see cref="E:System.Diagnostics.Process.ErrorDataReceived" /> event of a <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<param name="sender">The source of the event. </param>
|
||||
<param name="e">A <see cref="T:System.Diagnostics.DataReceivedEventArgs" /> that contains the event data. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.Process">
|
||||
<summary>Provides access to local and remote processes and enables you to start and stop local system processes.To browse the .NET Framework source code for this type, see the Reference Source.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Process" /> class.</summary>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.BasePriority">
|
||||
<summary>Gets the base priority of the associated process.</summary>
|
||||
<returns>The base priority, which is computed from the <see cref="P:System.Diagnostics.Process.PriorityClass" /> of the associated process.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has exited.-or- The process has not started, so there is no process ID. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.BeginErrorReadLine">
|
||||
<summary>Begins asynchronous read operations on the redirected <see cref="P:System.Diagnostics.Process.StandardError" /> stream of the application.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref="P:System.Diagnostics.Process.StandardError" /> stream.- or - The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has been used by a synchronous read operation. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.BeginOutputReadLine">
|
||||
<summary>Begins asynchronous read operations on the redirected <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream of the application.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream.- or - The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has been used by a synchronous read operation. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.CancelErrorRead">
|
||||
<summary>Cancels the asynchronous read operation on the redirected <see cref="P:System.Diagnostics.Process.StandardError" /> stream of an application.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardError" /> stream is not enabled for asynchronous read operations. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.CancelOutputRead">
|
||||
<summary>Cancels the asynchronous read operation on the redirected <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream of an application.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream is not enabled for asynchronous read operations. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Dispose"></member>
|
||||
<member name="M:System.Diagnostics.Process.Dispose(System.Boolean)">
|
||||
<summary>Release all resources used by this process.</summary>
|
||||
<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.EnableRaisingEvents">
|
||||
<summary>Gets or sets whether the <see cref="E:System.Diagnostics.Process.Exited" /> event should be raised when the process terminates.</summary>
|
||||
<returns>true if the <see cref="E:System.Diagnostics.Process.Exited" /> event should be raised when the associated process is terminated (through either an exit or a call to <see cref="M:System.Diagnostics.Process.Kill" />); otherwise, false. The default is false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.EnterDebugMode">
|
||||
<summary>Puts a <see cref="T:System.Diagnostics.Process" /> component in state to interact with operating system processes that run in a special mode by enabling the native property SeDebugPrivilege on the current thread.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.ErrorDataReceived">
|
||||
<summary>Occurs when an application writes to its redirected <see cref="P:System.Diagnostics.Process.StandardError" /> stream.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ExitCode">
|
||||
<summary>Gets the value that the associated process specified when it terminated.</summary>
|
||||
<returns>The code that the associated process specified when it terminated.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process has not exited.-or- The process <see cref="P:System.Diagnostics.Process.Handle" /> is not valid. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.ExitCode" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.Exited">
|
||||
<summary>Occurs when a process exits.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ExitTime">
|
||||
<summary>Gets the time that the associated process exited.</summary>
|
||||
<returns>A <see cref="T:System.DateTime" /> that indicates when the associated process was terminated.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.ExitTime" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetCurrentProcess">
|
||||
<summary>Gets a new <see cref="T:System.Diagnostics.Process" /> component and associates it with the currently active process.</summary>
|
||||
<returns>A new <see cref="T:System.Diagnostics.Process" /> component associated with the process resource that is running the calling application.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessById(System.Int32)">
|
||||
<summary>Returns a new <see cref="T:System.Diagnostics.Process" /> component, given the identifier of a process on the local computer.</summary>
|
||||
<returns>A <see cref="T:System.Diagnostics.Process" /> component that is associated with the local process resource identified by the <paramref name="processId" /> parameter.</returns>
|
||||
<param name="processId">The system-unique identifier of a process resource. </param>
|
||||
<exception cref="T:System.ArgumentException">The process specified by the <paramref name="processId" /> parameter is not running. The identifier might be expired. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process was not started by this object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)">
|
||||
<summary>Returns a new <see cref="T:System.Diagnostics.Process" /> component, given a process identifier and the name of a computer on the network.</summary>
|
||||
<returns>A <see cref="T:System.Diagnostics.Process" /> component that is associated with a remote process resource identified by the <paramref name="processId" /> parameter.</returns>
|
||||
<param name="processId">The system-unique identifier of a process resource. </param>
|
||||
<param name="machineName">The name of a computer on the network. </param>
|
||||
<exception cref="T:System.ArgumentException">The process specified by the <paramref name="processId" /> parameter is not running. The identifier might be expired.-or- The <paramref name="machineName" /> parameter syntax is invalid. The name might have length zero (0). </exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process was not started by this object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcesses">
|
||||
<summary>Creates a new <see cref="T:System.Diagnostics.Process" /> component for each process resource on the local computer.</summary>
|
||||
<returns>An array of type <see cref="T:System.Diagnostics.Process" /> that represents all the process resources running on the local computer.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcesses(System.String)">
|
||||
<summary>Creates a new <see cref="T:System.Diagnostics.Process" /> component for each process resource on the specified computer.</summary>
|
||||
<returns>An array of type <see cref="T:System.Diagnostics.Process" /> that represents all the process resources running on the specified computer.</returns>
|
||||
<param name="machineName">The computer from which to read the list of processes. </param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="machineName" /> parameter syntax is invalid. It might have length zero (0). </exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The operating system platform does not support this operation on remote computers. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information. This exception is specific to Windows NT, Windows 2000, and Windows XP. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A problem occurred accessing an underlying system API. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessesByName(System.String)">
|
||||
<summary>Creates an array of new <see cref="T:System.Diagnostics.Process" /> components and associates them with all the process resources on the local computer that share the specified process name.</summary>
|
||||
<returns>An array of type <see cref="T:System.Diagnostics.Process" /> that represents the process resources running the specified application or file.</returns>
|
||||
<param name="processName">The friendly name of the process. </param>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information. This exception is specific to Windows NT, Windows 2000, and Windows XP. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)">
|
||||
<summary>Creates an array of new <see cref="T:System.Diagnostics.Process" /> components and associates them with all the process resources on a remote computer that share the specified process name.</summary>
|
||||
<returns>An array of type <see cref="T:System.Diagnostics.Process" /> that represents the process resources running the specified application or file.</returns>
|
||||
<param name="processName">The friendly name of the process. </param>
|
||||
<param name="machineName">The name of a computer on the network. </param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="machineName" /> parameter syntax is invalid. It might have length zero (0). </exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The operating system platform does not support this operation on remote computers. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information. This exception is specific to Windows NT, Windows 2000, and Windows XP. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A problem occurred accessing an underlying system API. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.HasExited">
|
||||
<summary>Gets a value indicating whether the associated process has been terminated.</summary>
|
||||
<returns>true if the operating system process referenced by the <see cref="T:System.Diagnostics.Process" /> component has terminated; otherwise, false.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with the object. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The exit code for the process could not be retrieved. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.HasExited" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Id">
|
||||
<summary>Gets the unique identifier for the associated process.</summary>
|
||||
<returns>The system-generated unique identifier of the process that is referenced by this <see cref="T:System.Diagnostics.Process" /> instance.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process's <see cref="P:System.Diagnostics.Process.Id" /> property has not been set.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Kill">
|
||||
<summary>Immediately stops the associated process.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to call <see cref="M:System.Diagnostics.Process.Kill" /> for a process that is running on a remote computer. The method is available only for processes running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has already exited. -or-There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.LeaveDebugMode">
|
||||
<summary>Takes a <see cref="T:System.Diagnostics.Process" /> component out of the state that lets it interact with operating system processes that run in a special mode.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MachineName">
|
||||
<summary>Gets the name of the computer the associated process is running on.</summary>
|
||||
<returns>The name of the computer that the associated process is running on.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MainModule">
|
||||
<summary>Gets the main module for the associated process.</summary>
|
||||
<returns>The <see cref="T:System.Diagnostics.ProcessModule" /> that was used to start the process.</returns>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MainModule" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A 32-bit process is trying to access the modules of a 64-bit process.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MaxWorkingSet">
|
||||
<summary>Gets or sets the maximum allowable working set size for the associated process.</summary>
|
||||
<returns>The maximum working set size that is allowed in memory for the process, in bytes.</returns>
|
||||
<exception cref="T:System.ArgumentException">The maximum working set size is invalid. It must be greater than or equal to the minimum working set size.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MaxWorkingSet" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MinWorkingSet">
|
||||
<summary>Gets or sets the minimum allowable working set size for the associated process.</summary>
|
||||
<returns>The minimum working set size that is required in memory for the process, in bytes.</returns>
|
||||
<exception cref="T:System.ArgumentException">The minimum working set size is invalid. It must be less than or equal to the maximum working set size.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MinWorkingSet" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Modules">
|
||||
<summary>Gets the modules that have been loaded by the associated process.</summary>
|
||||
<returns>An array of type <see cref="T:System.Diagnostics.ProcessModule" /> that represents the modules that have been loaded by the associated process.</returns>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.Modules" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">You are attempting to access the <see cref="P:System.Diagnostics.Process.Modules" /> property for either the system process or the idle process. These processes do not have modules.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.NonpagedSystemMemorySize64">
|
||||
<summary>Gets the amount of nonpaged system memory allocated for the associated process.</summary>
|
||||
<returns>The amount of system memory, in bytes, allocated for the associated process that cannot be written to the virtual memory paging file.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.OnExited">
|
||||
<summary>Raises the <see cref="E:System.Diagnostics.Process.Exited" /> event.</summary>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.OutputDataReceived">
|
||||
<summary>Occurs each time an application writes a line to its redirected <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PagedMemorySize64">
|
||||
<summary>Gets the amount of paged memory allocated for the associated process.</summary>
|
||||
<returns>The amount of memory, in bytes, allocated in the virtual memory paging file for the associated process.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PagedSystemMemorySize64">
|
||||
<summary>Gets the amount of pageable system memory allocated for the associated process.</summary>
|
||||
<returns>The amount of system memory, in bytes, allocated for the associated process that can be written to the virtual memory paging file.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakPagedMemorySize64">
|
||||
<summary>Gets the maximum amount of memory in the virtual memory paging file used by the associated process.</summary>
|
||||
<returns>The maximum amount of memory, in bytes, allocated in the virtual memory paging file for the associated process since it was started.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakVirtualMemorySize64">
|
||||
<summary>Gets the maximum amount of virtual memory used by the associated process.</summary>
|
||||
<returns>The maximum amount of virtual memory, in bytes, allocated for the associated process since it was started.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakWorkingSet64">
|
||||
<summary>Gets the maximum amount of physical memory used by the associated process.</summary>
|
||||
<returns>The maximum amount of physical memory, in bytes, allocated for the associated process since it was started.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PriorityBoostEnabled">
|
||||
<summary>Gets or sets a value indicating whether the associated process priority should temporarily be boosted by the operating system when the main window has the focus.</summary>
|
||||
<returns>true if dynamic boosting of the process priority should take place for a process when it is taken out of the wait state; otherwise, false. The default is false.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Priority boost information could not be retrieved from the associated process resource. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero. (The process has not been started.) </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PriorityBoostEnabled" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PriorityClass">
|
||||
<summary>Gets or sets the overall priority category for the associated process.</summary>
|
||||
<returns>The priority category for the associated process, from which the <see cref="P:System.Diagnostics.Process.BasePriority" /> of the process is calculated.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero. (The process has not been started.) </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PriorityClass" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">You have set the <see cref="P:System.Diagnostics.Process.PriorityClass" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me). These platforms do not support those values for the priority class. </exception>
|
||||
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">Priority class cannot be set because it does not use a valid value, as defined in the <see cref="T:System.Diagnostics.ProcessPriorityClass" /> enumeration.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PrivateMemorySize64">
|
||||
<summary>Gets the amount of private memory allocated for the associated process.</summary>
|
||||
<returns>The amount of memory, in bytes, allocated for the associated process that cannot be shared with other processes.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PrivilegedProcessorTime">
|
||||
<summary>Gets the privileged processor time for this process.</summary>
|
||||
<returns>A <see cref="T:System.TimeSpan" /> that indicates the amount of time that the process has spent running code inside the operating system core.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PrivilegedProcessorTime" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ProcessName">
|
||||
<summary>Gets the name of the process.</summary>
|
||||
<returns>The name that the system uses to identify the process to the user.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process does not have an identifier, or no process is associated with the <see cref="T:System.Diagnostics.Process" />.-or- The associated process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is not on this computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ProcessorAffinity">
|
||||
<summary>Gets or sets the processors on which the threads in this process can be scheduled to run.</summary>
|
||||
<returns>A bitmask representing the processors that the threads in the associated process can run on. The default depends on the number of processors on the computer. The default value is 2 n -1, where n is the number of processors.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<see cref="P:System.Diagnostics.Process.ProcessorAffinity" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero. (The process has not been started.) </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.ProcessorAffinity" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> was not available.-or- The process has exited. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Refresh">
|
||||
<summary>Discards any information about the associated process that has been cached inside the process component.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.SafeHandle">
|
||||
<summary>Gets the native handle to this process.</summary>
|
||||
<returns>The native handle to this process.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.SessionId">
|
||||
<summary>Gets the Terminal Services session identifier for the associated process.</summary>
|
||||
<returns>The Terminal Services session identifier for the associated process.</returns>
|
||||
<exception cref="T:System.NullReferenceException">There is no session associated with this process.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The <see cref="P:System.Diagnostics.Process.SessionId" /> property is not supported on Windows 98.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardError">
|
||||
<summary>Gets a stream used to read the error output of the application.</summary>
|
||||
<returns>A <see cref="T:System.IO.StreamReader" /> that can be used to read the standard error stream of the application.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has not been defined for redirection; ensure <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> is set to true and <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is set to false.- or - The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has been opened for asynchronous read operations with <see cref="M:System.Diagnostics.Process.BeginErrorReadLine" />. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardInput">
|
||||
<summary>Gets a stream used to write the input of the application.</summary>
|
||||
<returns>A <see cref="T:System.IO.StreamWriter" /> that can be used to write the standard input stream of the application.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardInput" /> stream has not been defined because <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" /> is set to false. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardOutput">
|
||||
<summary>Gets a stream used to read the textual output of the application.</summary>
|
||||
<returns>A <see cref="T:System.IO.StreamReader" /> that can be used to read the standard output stream of the application.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has not been defined for redirection; ensure <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" /> is set to true and <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is set to false.- or - The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has been opened for asynchronous read operations with <see cref="M:System.Diagnostics.Process.BeginOutputReadLine" />. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start">
|
||||
<summary>Starts (or reuses) the process resource that is specified by the <see cref="P:System.Diagnostics.Process.StartInfo" /> property of this <see cref="T:System.Diagnostics.Process" /> component and associates it with the component.</summary>
|
||||
<returns>true if a process resource is started; false if no new process resource is started (for example, if an existing process is reused).</returns>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified in the <see cref="T:System.Diagnostics.Process" /> component's <see cref="P:System.Diagnostics.Process.StartInfo" />.-or- The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> member of the <see cref="P:System.Diagnostics.Process.StartInfo" /> property is true while <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" />, <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" />, or <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> is true. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">There was an error in opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)">
|
||||
<summary>Starts the process resource that is specified by the parameter containing process start information (for example, the file name of the process to start) and associates the resource with a new <see cref="T:System.Diagnostics.Process" /> component.</summary>
|
||||
<returns>A new <see cref="T:System.Diagnostics.Process" /> that is associated with the process resource, or null if no process resource is started. Note that a new process that’s started alongside already running instances of the same process will be independent from the others. In addition, Start may return a non-null Process with its <see cref="T:System.Diagnostics.ProcessHasExited" /> property already set to true. In this case, the started process may have activated an existing instance of itself and then exited.</returns>
|
||||
<param name="startInfo">The <see cref="T:System.Diagnostics.ProcessStartInfo" /> that contains the information that is used to start the process, including the file name and any command-line arguments. </param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified in the <paramref name="startInfo" /> parameter's <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property.-or- The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property of the <paramref name="startInfo" /> parameter is true and the <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" />, <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" />, or <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> property is also true.-or-The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property of the <paramref name="startInfo" /> parameter is true and the <see cref="P:System.Diagnostics.ProcessStartInfo.UserName" /> property is not null or empty or the <see cref="P:System.Diagnostics.ProcessStartInfo.Password" /> property is not null.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="startInfo" /> parameter is null. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The file specified in the <paramref name="startInfo" /> parameter's <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property could not be found.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080. The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String)">
|
||||
<summary>Starts a process resource by specifying the name of a document or application file and associates the resource with a new <see cref="T:System.Diagnostics.Process" /> component.</summary>
|
||||
<returns>A new <see cref="T:System.Diagnostics.Process" /> that is associated with the process resource, or null if no process resource is started. Note that a new process that’s started alongside already running instances of the same process will be independent from the others. In addition, Start may return a non-null Process with its <see cref="T:System.Diagnostics.ProcessHasExited" /> property already set to true. In this case, the started process may have activated an existing instance of itself and then exited.</returns>
|
||||
<param name="fileName">The name of a document or application file to run in the process. </param>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The PATH environment variable has a string containing quotes.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String)">
|
||||
<summary>Starts a process resource by specifying the name of an application and a set of command-line arguments, and associates the resource with a new <see cref="T:System.Diagnostics.Process" /> component.</summary>
|
||||
<returns>A new <see cref="T:System.Diagnostics.Process" /> that is associated with the process resource, or null if no process resource is started. Note that a new process that’s started alongside already running instances of the same process will be independent from the others. In addition, Start may return a non-null Process with its <see cref="T:System.Diagnostics.ProcessHasExited" /> property already set to true. In this case, the started process may have activated an existing instance of itself and then exited.</returns>
|
||||
<param name="fileName">The name of an application file to run in the process. </param>
|
||||
<param name="arguments">Command-line arguments to pass when starting the process. </param>
|
||||
<exception cref="T:System.InvalidOperationException">The <paramref name="fileName" /> or <paramref name="arguments" /> parameter is null. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080. The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The PATH environment variable has a string containing quotes.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)">
|
||||
<summary>Starts a process resource by specifying the name of an application, a user name, a password, and a domain and associates the resource with a new <see cref="T:System.Diagnostics.Process" /> component.</summary>
|
||||
<returns>A new <see cref="T:System.Diagnostics.Process" /> that is associated with the process resource, or null if no process resource is started. Note that a new process that’s started alongside already running instances of the same process will be independent from the others. In addition, Start may return a non-null Process with its <see cref="T:System.Diagnostics.ProcessHasExited" /> property already set to true. In this case, the started process may have activated an existing instance of itself and then exited.</returns>
|
||||
<param name="fileName">The name of an application file to run in the process.</param>
|
||||
<param name="userName">The user name to use when starting the process.</param>
|
||||
<param name="password">A <see cref="T:System.Security.SecureString" /> that contains the password to use when starting the process.</param>
|
||||
<param name="domain">The domain to use when starting the process.</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<paramref name="fileName" /> is not an executable (.exe) file.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">There was an error in opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)">
|
||||
<summary>Starts a process resource by specifying the name of an application, a set of command-line arguments, a user name, a password, and a domain and associates the resource with a new <see cref="T:System.Diagnostics.Process" /> component.</summary>
|
||||
<returns>A new <see cref="T:System.Diagnostics.Process" /> that is associated with the process resource, or null if no process resource is started. Note that a new process that’s started alongside already running instances of the same process will be independent from the others. In addition, Start may return a non-null Process with its <see cref="T:System.Diagnostics.ProcessHasExited" /> property already set to true. In this case, the started process may have activated an existing instance of itself and then exited.</returns>
|
||||
<param name="fileName">The name of an application file to run in the process. </param>
|
||||
<param name="arguments">Command-line arguments to pass when starting the process. </param>
|
||||
<param name="userName">The user name to use when starting the process.</param>
|
||||
<param name="password">A <see cref="T:System.Security.SecureString" /> that contains the password to use when starting the process.</param>
|
||||
<param name="domain">The domain to use when starting the process.</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<paramref name="fileName" /> is not an executable (.exe) file.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080. The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StartInfo">
|
||||
<summary>Gets or sets the properties to pass to the <see cref="M:System.Diagnostics.Process.Start" /> method of the <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>The <see cref="T:System.Diagnostics.ProcessStartInfo" /> that represents the data with which to start the process. These arguments include the name of the executable file or document used to start the process.</returns>
|
||||
<exception cref="T:System.ArgumentNullException">The value that specifies the <see cref="P:System.Diagnostics.Process.StartInfo" /> is null. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StartTime">
|
||||
<summary>Gets the time that the associated process was started.</summary>
|
||||
<returns>An object that indicates when the process started. An exception is thrown if the process is not running.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.StartTime" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has exited.-or-The process has not been started.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred in the call to the Windows function.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Threads">
|
||||
<summary>Gets the set of threads that are running in the associated process.</summary>
|
||||
<returns>An array of type <see cref="T:System.Diagnostics.ProcessThread" /> representing the operating system threads currently running in the associated process.</returns>
|
||||
<exception cref="T:System.SystemException">The process does not have an <see cref="P:System.Diagnostics.Process.Id" />, or no process is associated with the <see cref="T:System.Diagnostics.Process" /> instance.-or- The associated process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.TotalProcessorTime">
|
||||
<summary>Gets the total processor time for this process.</summary>
|
||||
<returns>A <see cref="T:System.TimeSpan" /> that indicates the amount of time that the associated process has spent utilizing the CPU. This value is the sum of the <see cref="P:System.Diagnostics.Process.UserProcessorTime" /> and the <see cref="P:System.Diagnostics.Process.PrivilegedProcessorTime" />.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.TotalProcessorTime" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.UserProcessorTime">
|
||||
<summary>Gets the user processor time for this process.</summary>
|
||||
<returns>A <see cref="T:System.TimeSpan" /> that indicates the amount of time that the associated process has spent running code inside the application portion of the process (not inside the operating system core).</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.UserProcessorTime" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.VirtualMemorySize64">
|
||||
<summary>Gets the amount of the virtual memory allocated for the associated process.</summary>
|
||||
<returns>The amount of virtual memory, in bytes, allocated for the associated process.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.WaitForExit">
|
||||
<summary>Instructs the <see cref="T:System.Diagnostics.Process" /> component to wait indefinitely for the associated process to exit.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The wait setting could not be accessed. </exception>
|
||||
<exception cref="T:System.SystemException">No process <see cref="P:System.Diagnostics.Process.Id" /> has been set, and a <see cref="P:System.Diagnostics.Process.Handle" /> from which the <see cref="P:System.Diagnostics.Process.Id" /> property can be determined does not exist.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.-or- You are attempting to call <see cref="M:System.Diagnostics.Process.WaitForExit" /> for a process that is running on a remote computer. This method is available only for processes that are running on the local computer. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.WaitForExit(System.Int32)">
|
||||
<summary>Instructs the <see cref="T:System.Diagnostics.Process" /> component to wait the specified number of milliseconds for the associated process to exit.</summary>
|
||||
<returns>true if the associated process has exited; otherwise, false.</returns>
|
||||
<param name="milliseconds">The amount of time, in milliseconds, to wait for the associated process to exit. The maximum is the largest possible value of a 32-bit integer, which represents infinity to the operating system. </param>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The wait setting could not be accessed. </exception>
|
||||
<exception cref="T:System.SystemException">No process <see cref="P:System.Diagnostics.Process.Id" /> has been set, and a <see cref="P:System.Diagnostics.Process.Handle" /> from which the <see cref="P:System.Diagnostics.Process.Id" /> property can be determined does not exist.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.-or- You are attempting to call <see cref="M:System.Diagnostics.Process.WaitForExit(System.Int32)" /> for a process that is running on a remote computer. This method is available only for processes that are running on the local computer. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.WorkingSet64">
|
||||
<summary>Gets the amount of physical memory allocated for the associated process.</summary>
|
||||
<returns>The amount of physical memory, in bytes, allocated for the associated process.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessModule">
|
||||
<summary>Represents a.dll or .exe file that is loaded into a particular process.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.BaseAddress">
|
||||
<summary>Gets the memory address where the module was loaded.</summary>
|
||||
<returns>The load address of the module.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.EntryPointAddress">
|
||||
<summary>Gets the memory address for the function that runs when the system loads and runs the module.</summary>
|
||||
<returns>The entry point of the module.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.FileName">
|
||||
<summary>Gets the full path to the module.</summary>
|
||||
<returns>The fully qualified path that defines the location of the module.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.ModuleMemorySize">
|
||||
<summary>Gets the amount of memory that is required to load the module.</summary>
|
||||
<returns>The size, in bytes, of the memory that the module occupies.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.ModuleName">
|
||||
<summary>Gets the name of the process module.</summary>
|
||||
<returns>The name of the module.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModule.ToString">
|
||||
<summary>Converts the name of the module to a string.</summary>
|
||||
<returns>The value of the <see cref="P:System.Diagnostics.ProcessModule.ModuleName" /> property.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessModuleCollection">
|
||||
<summary>Provides a strongly typed collection of <see cref="T:System.Diagnostics.ProcessModule" /> objects.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Diagnostics.ProcessModuleCollection" /> class, with no associated <see cref="T:System.Diagnostics.ProcessModule" /> instances.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Diagnostics.ProcessModuleCollection" /> class, using the specified array of <see cref="T:System.Diagnostics.ProcessModule" /> instances.</summary>
|
||||
<param name="processModules">An array of <see cref="T:System.Diagnostics.ProcessModule" /> instances with which to initialize this <see cref="T:System.Diagnostics.ProcessModuleCollection" /> instance. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)">
|
||||
<summary>Determines whether the specified process module exists in the collection.</summary>
|
||||
<returns>true if the module exists in the collection; otherwise, false.</returns>
|
||||
<param name="module">A <see cref="T:System.Diagnostics.ProcessModule" /> instance that indicates the module to find in this collection. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)">
|
||||
<summary>Copies an array of <see cref="T:System.Diagnostics.ProcessModule" /> instances to the collection, at the specified index.</summary>
|
||||
<param name="array">An array of <see cref="T:System.Diagnostics.ProcessModule" /> instances to add to the collection. </param>
|
||||
<param name="index">The location at which to add the new instances. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.Count"></member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.GetEnumerator"></member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)">
|
||||
<summary>Provides the location of a specified module within the collection.</summary>
|
||||
<returns>The zero-based index that defines the location of the module within the <see cref="T:System.Diagnostics.ProcessModuleCollection" />.</returns>
|
||||
<param name="module">The <see cref="T:System.Diagnostics.ProcessModule" /> whose index is retrieved. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)">
|
||||
<summary>Gets an index for iterating over the set of process modules.</summary>
|
||||
<returns>A <see cref="T:System.Diagnostics.ProcessModule" /> that indexes the modules in the collection </returns>
|
||||
<param name="index">The zero-based index value of the module in the collection. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"></member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized"></member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot"></member>
|
||||
<member name="T:System.Diagnostics.ProcessPriorityClass">
|
||||
<summary>Indicates the priority that the system associates with a process. This value, together with the priority value of each thread of the process, determines each thread's base priority level.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.AboveNormal">
|
||||
<summary>Specifies that the process has priority above Normal but below <see cref="F:System.Diagnostics.ProcessPriorityClass.High" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.BelowNormal">
|
||||
<summary>Specifies that the process has priority above Idle but below Normal.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.High">
|
||||
<summary>Specifies that the process performs time-critical tasks that must be executed immediately, such as the Task List dialog, which must respond quickly when called by the user, regardless of the load on the operating system. The threads of the process preempt the threads of normal or idle priority class processes.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.Idle">
|
||||
<summary>Specifies that the threads of this process run only when the system is idle, such as a screen saver. The threads of the process are preempted by the threads of any process running in a higher priority class.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.Normal">
|
||||
<summary>Specifies that the process has no special scheduling needs.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.RealTime">
|
||||
<summary>Specifies that the process has the highest possible priority.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessStartInfo">
|
||||
<summary>Specifies a set of values that are used when you start a process.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Diagnostics.ProcessStartInfo" /> class without specifying a file name with which to start the process.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Diagnostics.ProcessStartInfo" /> class and specifies a file name such as an application or document with which to start the process.</summary>
|
||||
<param name="fileName">An application or document with which to start a process. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Diagnostics.ProcessStartInfo" /> class, specifies an application file name with which to start the process, and specifies a set of command-line arguments to pass to the application.</summary>
|
||||
<param name="fileName">An application with which to start a process. </param>
|
||||
<param name="arguments">Command-line arguments to pass to the application when the process starts. </param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Arguments">
|
||||
<summary>Gets or sets the set of command-line arguments to use when starting the application.</summary>
|
||||
<returns>A single string containing the arguments to pass to the target application specified in the <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property. The default is an empty string (""). On Windows Vista and earlier versions of the Windows operating system, the length of the arguments added to the length of the full path to the process must be less than 2080. On Windows 7 and later versions, the length must be less than 32699.Arguments are parsed and interpreted by the target application, so must align with the expectations of that application. For.NET applications as demonstrated in the Examples below, spaces are interpreted as a separator between multiple arguments. A single argument that includes spaces must be surrounded by quotation marks, but those quotation marks are not carried through to the target application. In include quotation marks in the final parsed argument, triple-escape each mark.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.CreateNoWindow">
|
||||
<summary>Gets or sets a value indicating whether to start the process in a new window.</summary>
|
||||
<returns>true if the process should be started without creating a new window to contain it; otherwise, false. The default is false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Domain">
|
||||
<summary>Gets or sets a value that identifies the domain to use when starting the process. </summary>
|
||||
<returns>The Active Directory domain to use when starting the process. The domain property is primarily of interest to users within enterprise environments that use Active Directory.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Environment"></member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.FileName">
|
||||
<summary>Gets or sets the application or document to start.</summary>
|
||||
<returns>The name of the application to start, or the name of a document of a file type that is associated with an application and that has a default open action available to it. The default is an empty string ("").</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.LoadUserProfile">
|
||||
<summary>Gets or sets a value that indicates whether the Windows user profile is to be loaded from the registry. </summary>
|
||||
<returns>true if the Windows user profile should be loaded; otherwise, false. The default is false.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Password">
|
||||
<summary>Gets or sets a secure string that contains the user password to use when starting the process.</summary>
|
||||
<returns>The user password to use when starting the process.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError">
|
||||
<summary>Gets or sets a value that indicates whether the error output of an application is written to the <see cref="P:System.Diagnostics.Process.StandardError" /> stream.</summary>
|
||||
<returns>true if error output should be written to <see cref="P:System.Diagnostics.Process.StandardError" />; otherwise, false. The default is false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput">
|
||||
<summary>Gets or sets a value indicating whether the input for an application is read from the <see cref="P:System.Diagnostics.Process.StandardInput" /> stream.</summary>
|
||||
<returns>true if input should be read from <see cref="P:System.Diagnostics.Process.StandardInput" />; otherwise, false. The default is false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput">
|
||||
<summary>Gets or sets a value that indicates whether the textual output of an application is written to the <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream.</summary>
|
||||
<returns>true if output should be written to <see cref="P:System.Diagnostics.Process.StandardOutput" />; otherwise, false. The default is false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding">
|
||||
<summary>Gets or sets the preferred encoding for error output.</summary>
|
||||
<returns>An object that represents the preferred encoding for error output. The default is null.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding">
|
||||
<summary>Gets or sets the preferred encoding for standard output.</summary>
|
||||
<returns>An object that represents the preferred encoding for standard output. The default is null.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.UserName">
|
||||
<summary>Gets or sets the user name to be used when starting the process.</summary>
|
||||
<returns>The user name to use when starting the process.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.UseShellExecute">
|
||||
<summary>Gets or sets a value indicating whether to use the operating system shell to start the process.</summary>
|
||||
<returns>true if the shell should be used when starting the process; false if the process should be created directly from the executable file. The default is true.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.WorkingDirectory">
|
||||
<summary>When the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property is false, gets or sets the working directory for the process to be started. When <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is true, gets or sets the directory that contains the process to be started.</summary>
|
||||
<returns>When <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is true, the fully qualified name of the directory that contains the process to be started. When the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property is false, the working directory for the process to be started. The default is an empty string ("").</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessThread">
|
||||
<summary>Represents an operating system process thread.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.BasePriority">
|
||||
<summary>Gets the base priority of the thread.</summary>
|
||||
<returns>The base priority of the thread, which the operating system computes by combining the process priority class with the priority level of the associated thread.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.CurrentPriority">
|
||||
<summary>Gets the current priority of the thread.</summary>
|
||||
<returns>The current priority of the thread, which may deviate from the base priority based on how the operating system is scheduling the thread. The priority may be temporarily boosted for an active thread.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.Id">
|
||||
<summary>Gets the unique identifier of the thread.</summary>
|
||||
<returns>The unique identifier associated with a specific thread.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.IdealProcessor">
|
||||
<summary>Sets the preferred processor for this thread to run on.</summary>
|
||||
<returns>The preferred processor for the thread, used when the system schedules threads, to determine which processor to run the thread on.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The system could not set the thread to start on the specified processor. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is on a remote computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PriorityBoostEnabled">
|
||||
<summary>Gets or sets a value indicating whether the operating system should temporarily boost the priority of the associated thread whenever the main window of the thread's process receives the focus.</summary>
|
||||
<returns>true to boost the thread's priority when the user interacts with the process's interface; otherwise, false. The default is false.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The priority boost information could not be retrieved.-or-The priority boost information could not be set. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is on a remote computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PriorityLevel">
|
||||
<summary>Gets or sets the priority level of the thread.</summary>
|
||||
<returns>One of the <see cref="T:System.Diagnostics.ThreadPriorityLevel" /> values, specifying a range that bounds the thread's priority.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The thread priority level information could not be retrieved. -or-The thread priority level could not be set.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is on a remote computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime">
|
||||
<summary>Gets the amount of time that the thread has spent running code inside the operating system core.</summary>
|
||||
<returns>A <see cref="T:System.TimeSpan" /> indicating the amount of time that the thread has spent running code inside the operating system core.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The thread time could not be retrieved. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is on a remote computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.ProcessorAffinity">
|
||||
<summary>Sets the processors on which the associated thread can run.</summary>
|
||||
<returns>An <see cref="T:System.IntPtr" /> that points to a set of bits, each of which represents a processor that the thread can run on.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The processor affinity could not be set. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is on a remote computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThread.ResetIdealProcessor">
|
||||
<summary>Resets the ideal processor for this thread to indicate that there is no single ideal processor. In other words, so that any processor is ideal.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The ideal processor could not be reset. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is on a remote computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.StartAddress">
|
||||
<summary>Gets the memory address of the function that the operating system called that started this thread.</summary>
|
||||
<returns>The thread's starting address, which points to the application-defined function that the thread executes.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is on a remote computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.StartTime">
|
||||
<summary>Gets the time that the operating system started the thread.</summary>
|
||||
<returns>A <see cref="T:System.DateTime" /> representing the time that was on the system when the operating system started the thread.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The thread time could not be retrieved. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is on a remote computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.ThreadState">
|
||||
<summary>Gets the current state of this thread.</summary>
|
||||
<returns>A <see cref="T:System.Diagnostics.ThreadState" /> that indicates the thread's execution, for example, running, waiting, or terminated.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is on a remote computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.TotalProcessorTime">
|
||||
<summary>Gets the total amount of time that this thread has spent using the processor.</summary>
|
||||
<returns>A <see cref="T:System.TimeSpan" /> that indicates the amount of time that the thread has had control of the processor.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The thread time could not be retrieved. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is on a remote computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.UserProcessorTime">
|
||||
<summary>Gets the amount of time that the associated thread has spent running code inside the application.</summary>
|
||||
<returns>A <see cref="T:System.TimeSpan" /> indicating the amount of time that the thread has spent running code inside the application, as opposed to inside the operating system core.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The thread time could not be retrieved. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is on a remote computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.WaitReason">
|
||||
<summary>Gets the reason that the thread is waiting.</summary>
|
||||
<returns>A <see cref="T:System.Diagnostics.ThreadWaitReason" /> representing the reason that the thread is in the wait state.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The thread is not in the wait state. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is on a remote computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessThreadCollection">
|
||||
<summary>Provides a strongly typed collection of <see cref="T:System.Diagnostics.ProcessThread" /> objects.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Diagnostics.ProcessThreadCollection" /> class, with no associated <see cref="T:System.Diagnostics.ProcessThread" /> instances.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Diagnostics.ProcessThreadCollection" /> class, using the specified array of <see cref="T:System.Diagnostics.ProcessThread" /> instances.</summary>
|
||||
<param name="processThreads">An array of <see cref="T:System.Diagnostics.ProcessThread" /> instances with which to initialize this <see cref="T:System.Diagnostics.ProcessThreadCollection" /> instance. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)">
|
||||
<summary>Appends a process thread to the collection.</summary>
|
||||
<returns>The zero-based index of the thread in the collection.</returns>
|
||||
<param name="thread">The thread to add to the collection. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)">
|
||||
<summary>Determines whether the specified process thread exists in the collection.</summary>
|
||||
<returns>true if the thread exists in the collection; otherwise, false.</returns>
|
||||
<param name="thread">A <see cref="T:System.Diagnostics.ProcessThread" /> instance that indicates the thread to find in this collection. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)">
|
||||
<summary>Copies an array of <see cref="T:System.Diagnostics.ProcessThread" /> instances to the collection, at the specified index.</summary>
|
||||
<param name="array">An array of <see cref="T:System.Diagnostics.ProcessThread" /> instances to add to the collection. </param>
|
||||
<param name="index">The location at which to add the new instances. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.Count"></member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.GetEnumerator"></member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)">
|
||||
<summary>Provides the location of a specified thread within the collection.</summary>
|
||||
<returns>The zero-based index that defines the location of the thread within the <see cref="T:System.Diagnostics.ProcessThreadCollection" />.</returns>
|
||||
<param name="thread">The <see cref="T:System.Diagnostics.ProcessThread" /> whose index is retrieved. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)">
|
||||
<summary>Inserts a process thread at the specified location in the collection.</summary>
|
||||
<param name="index">The zero-based index indicating the location at which to insert the thread. </param>
|
||||
<param name="thread">The thread to insert into the collection. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)">
|
||||
<summary>Gets an index for iterating over the set of process threads.</summary>
|
||||
<returns>A <see cref="T:System.Diagnostics.ProcessThread" /> that indexes the threads in the collection.</returns>
|
||||
<param name="index">The zero-based index value of the thread in the collection. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)">
|
||||
<summary>Deletes a process thread from the collection.</summary>
|
||||
<param name="thread">The thread to remove from the collection. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"></member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized"></member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot"></member>
|
||||
<member name="T:System.Diagnostics.ThreadPriorityLevel">
|
||||
<summary>Specifies the priority level of a thread.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.AboveNormal">
|
||||
<summary>Specifies one step above the normal priority for the associated <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.BelowNormal">
|
||||
<summary>Specifies one step below the normal priority for the associated <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Highest">
|
||||
<summary>Specifies highest priority. This is two steps above the normal priority for the associated <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Idle">
|
||||
<summary>Specifies idle priority. This is the lowest possible priority value of all threads, independent of the value of the associated <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Lowest">
|
||||
<summary>Specifies lowest priority. This is two steps below the normal priority for the associated <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Normal">
|
||||
<summary>Specifies normal priority for the associated <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.TimeCritical">
|
||||
<summary>Specifies time-critical priority. This is the highest priority of all threads, independent of the value of the associated <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ThreadState">
|
||||
<summary>Specifies the current execution state of the thread.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Initialized">
|
||||
<summary>A state that indicates the thread has been initialized, but has not yet started.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Ready">
|
||||
<summary>A state that indicates the thread is waiting to use a processor because no processor is free. The thread is prepared to run on the next available processor.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Running">
|
||||
<summary>A state that indicates the thread is currently using a processor.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Standby">
|
||||
<summary>A state that indicates the thread is about to use a processor. Only one thread can be in this state at a time.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Terminated">
|
||||
<summary>A state that indicates the thread has finished executing and has exited.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Transition">
|
||||
<summary>A state that indicates the thread is waiting for a resource, other than the processor, before it can execute. For example, it might be waiting for its execution stack to be paged in from disk.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Unknown">
|
||||
<summary>The state of the thread is unknown.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Wait">
|
||||
<summary>A state that indicates the thread is not ready to use the processor because it is waiting for a peripheral operation to complete or a resource to become free. When the thread is ready, it will be rescheduled.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ThreadWaitReason">
|
||||
<summary>Specifies the reason a thread is waiting.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.EventPairHigh">
|
||||
<summary>The thread is waiting for event pair high.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.EventPairLow">
|
||||
<summary>The thread is waiting for event pair low.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.ExecutionDelay">
|
||||
<summary>Thread execution is delayed.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Executive">
|
||||
<summary>The thread is waiting for the scheduler.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.FreePage">
|
||||
<summary>The thread is waiting for a free virtual memory page.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.LpcReceive">
|
||||
<summary>The thread is waiting for a local procedure call to arrive.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.LpcReply">
|
||||
<summary>The thread is waiting for reply to a local procedure call to arrive.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.PageIn">
|
||||
<summary>The thread is waiting for a virtual memory page to arrive in memory.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.PageOut">
|
||||
<summary>The thread is waiting for a virtual memory page to be written to disk.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Suspended">
|
||||
<summary>Thread execution is suspended.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.SystemAllocation">
|
||||
<summary>The thread is waiting for system allocation.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Unknown">
|
||||
<summary>The thread is waiting for an unknown reason.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.UserRequest">
|
||||
<summary>The thread is waiting for a user request.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.VirtualMemory">
|
||||
<summary>The thread is waiting for the system to allocate virtual memory.</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
977
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/de/System.Diagnostics.Process.xml
vendored
Normal file
977
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/de/System.Diagnostics.Process.xml
vendored
Normal file
@@ -0,0 +1,977 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Diagnostics.Process</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Win32.SafeHandles.SafeProcessHandle">
|
||||
<summary>[SICHERHEITSRELEVANT] Stellt einen verwalteten Wrapper für ein Prozesshandle bereit.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)">
|
||||
<summary>[SICHERHEITSRELEVANT] Initialisiert eine neue Instanz der <see cref="T:Microsoft.Win32.SafeHandles.SafeProcessHandle" />-Klasse aus dem angegebenen Handle und gibt an, ob das Handle in der Abschlussphase freigegeben werden soll. </summary>
|
||||
<param name="existingHandle">Das zu umschließende Handle.</param>
|
||||
<param name="ownsHandle">true, wenn <see cref="T:Microsoft.Win32.SafeHandles.SafeProcessHandle" /> das Handle während der Abschlussphase zuverlässig freigeben soll, andernfalls false.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid"></member>
|
||||
<member name="T:System.Diagnostics.DataReceivedEventArgs">
|
||||
<summary>Stellt Daten für das <see cref="E:System.Diagnostics.Process.OutputDataReceived" />-Ereignis und das <see cref="E:System.Diagnostics.Process.ErrorDataReceived" />-Ereignis bereit.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.DataReceivedEventArgs.Data">
|
||||
<summary>Ruft die Zeile von Zeichen ab, die in einen umgeleiteten <see cref="T:System.Diagnostics.Process" />-Ausgabestream geschrieben wurde.</summary>
|
||||
<returns>Die Zeile, die von einem zugeordneten <see cref="T:System.Diagnostics.Process" /> in seinen umgeleiteten <see cref="P:System.Diagnostics.Process.StandardOutput" />-Stream oder <see cref="P:System.Diagnostics.Process.StandardError" />-Stream geschrieben wurde.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.DataReceivedEventHandler">
|
||||
<summary>Stellt die Methode dar, die das <see cref="E:System.Diagnostics.Process.OutputDataReceived" />-Ereignis oder das <see cref="E:System.Diagnostics.Process.ErrorDataReceived" />-Ereignis eines <see cref="T:System.Diagnostics.Process" /> behandelt.</summary>
|
||||
<param name="sender">Die Quelle des Ereignisses. </param>
|
||||
<param name="e">Ein <see cref="T:System.Diagnostics.DataReceivedEventArgs" />, das die Ereignisdaten enthält. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.Process">
|
||||
<summary>Ermöglicht den Zugriff auf lokale Prozesse und Remoteprozesse und das Starten und Anhalten lokaler Systemprozesse.Informationen zum Durchsuchen des .NET Framework-Quellcodes für diesen Typ finden Sie in der Verweisquelle.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.#ctor">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:System.Diagnostics.Process" />-Klasse.</summary>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.BasePriority">
|
||||
<summary>Ruft die Basispriorität des zugeordneten Prozesses ab.</summary>
|
||||
<returns>Die Basispriorität, die anhand der <see cref="P:System.Diagnostics.Process.PriorityClass" /> des zugeordneten Prozesses berechnet wird.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has exited.-or- The process has not started, so there is no process ID. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.BeginErrorReadLine">
|
||||
<summary>Startet asynchrone Lesevorgänge im umgeleiteten <see cref="P:System.Diagnostics.Process.StandardError" />-Stream der Anwendung.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref="P:System.Diagnostics.Process.StandardError" /> stream.- or - The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has been used by a synchronous read operation. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.BeginOutputReadLine">
|
||||
<summary>Startet asynchrone Lesevorgänge im umgeleiteten <see cref="P:System.Diagnostics.Process.StandardOutput" />-Stream der Anwendung.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream.- or - The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has been used by a synchronous read operation. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.CancelErrorRead">
|
||||
<summary>Bricht den asynchronen Lesevorgang im umgeleiteten <see cref="P:System.Diagnostics.Process.StandardError" />-Stream einer Anwendung ab.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardError" /> stream is not enabled for asynchronous read operations. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.CancelOutputRead">
|
||||
<summary>Bricht den asynchronen Lesevorgang im umgeleiteten <see cref="P:System.Diagnostics.Process.StandardOutput" />-Stream einer Anwendung ab.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream is not enabled for asynchronous read operations. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Dispose"></member>
|
||||
<member name="M:System.Diagnostics.Process.Dispose(System.Boolean)">
|
||||
<summary>Gibt alle von diesem Prozess verwendeten Ressourcen frei.</summary>
|
||||
<param name="disposing">true, um sowohl verwaltete als auch nicht verwaltete Ressourcen freizugeben, false, um ausschließlich nicht verwaltete Ressourcen freizugeben. </param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.EnableRaisingEvents">
|
||||
<summary>Ruft ab oder legt fest, ob beim Beenden des Prozesses das <see cref="E:System.Diagnostics.Process.Exited" />-Ereignis ausgelöst werden soll.</summary>
|
||||
<returns>true, wenn das <see cref="E:System.Diagnostics.Process.Exited" />-Ereignis ausgelöst werden soll, wenn der zugeordnete Prozess beendet wird (entweder durch Beenden oder einen Aufruf von <see cref="M:System.Diagnostics.Process.Kill" />); andernfalls false.Die Standardeinstellung ist false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.EnterDebugMode">
|
||||
<summary>Versetzt durch Aktivieren der systemeigenen <see cref="T:System.Diagnostics.Process" />-Eigenschaft für den aktuellen Thread eine SeDebugPrivilege-Komponente in einen Zustand, in dem sie mit Betriebssystemprozessen interagieren kann, die in einem speziellen Modus ausgeführt werden.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.ErrorDataReceived">
|
||||
<summary>Tritt auf, wenn eine Anwendung in seinen umgeleiteten <see cref="P:System.Diagnostics.Process.StandardError" />-Stream schreibt.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ExitCode">
|
||||
<summary>Ruft den Wert ab, der vom zugeordneten Prozess beim Beenden angegeben wurde.</summary>
|
||||
<returns>Der Code, der vom zugeordneten Prozess beim Beenden angegeben wurde.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process has not exited.-or- The process <see cref="P:System.Diagnostics.Process.Handle" /> is not valid. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.ExitCode" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.Exited">
|
||||
<summary>Tritt beim Beenden eines Prozesses ein.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ExitTime">
|
||||
<summary>Ruft den Zeitpunkt ab, zu dem der zugeordnete Prozess beendet wurde.</summary>
|
||||
<returns>Eine <see cref="T:System.DateTime" />, die angibt, wann der zugeordnete Prozess beendet wurde.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.ExitTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetCurrentProcess">
|
||||
<summary>Ruft eine neue <see cref="T:System.Diagnostics.Process" />-Komponente ab und ordnet diese dem gegenwärtig aktiven Prozess zu.</summary>
|
||||
<returns>Eine neue <see cref="T:System.Diagnostics.Process" />-Komponente, die der Prozessressource zugeordnet ist, die die aufrufende Anwendung ausführt.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessById(System.Int32)">
|
||||
<summary>Gibt eine neue <see cref="T:System.Diagnostics.Process" />-Komponente zurück, wenn der Bezeichner eines Prozesses auf dem lokalen Computer angegeben ist.</summary>
|
||||
<returns>Eine <see cref="T:System.Diagnostics.Process" />-Komponente, die der durch den <paramref name="processId" />-Parameter bezeichneten lokalen Prozessressource zugeordnet ist.</returns>
|
||||
<param name="processId">Der systemweit eindeutige Bezeichner einer Prozessressource. </param>
|
||||
<exception cref="T:System.ArgumentException">The process specified by the <paramref name="processId" /> parameter is not running.The identifier might be expired.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process was not started by this object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)">
|
||||
<summary>Gibt eine neue <see cref="T:System.Diagnostics.Process" />-Komponente zurück, wenn die Prozess-ID und der Name des Computers im Netzwerk angegeben sind.</summary>
|
||||
<returns>Eine <see cref="T:System.Diagnostics.Process" />-Komponente, die der durch den <paramref name="processId" />-Parameter bezeichneten Remoteprozessressource zugeordnet ist.</returns>
|
||||
<param name="processId">Der systemweit eindeutige Bezeichner einer Prozessressource. </param>
|
||||
<param name="machineName">Der Name eines Computers im Netzwerk. </param>
|
||||
<exception cref="T:System.ArgumentException">The process specified by the <paramref name="processId" /> parameter is not running.The identifier might be expired.-or- The <paramref name="machineName" /> parameter syntax is invalid.The name might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process was not started by this object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcesses">
|
||||
<summary>Erstellt eine neue <see cref="T:System.Diagnostics.Process" />-Komponente für jede Prozessressource auf dem lokalen Computer.</summary>
|
||||
<returns>Ein Array vom Typ <see cref="T:System.Diagnostics.Process" />, das alle auf dem lokalen Computer ausgeführten Prozessressourcen darstellt.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcesses(System.String)">
|
||||
<summary>Erstellt eine neue <see cref="T:System.Diagnostics.Process" />-Komponente für jede Prozessressource auf dem lokalen Computer.</summary>
|
||||
<returns>Ein Array vom Typ <see cref="T:System.Diagnostics.Process" />, das alle auf dem angegebenen Computer ausgeführten Prozessressourcen darstellt.</returns>
|
||||
<param name="machineName">Der Computer, von dem die Liste der Prozesse gelesen werden soll. </param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="machineName" /> parameter syntax is invalid.It might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The operating system platform does not support this operation on remote computers. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A problem occurred accessing an underlying system API. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessesByName(System.String)">
|
||||
<summary>Erstellt ein Array neuer <see cref="T:System.Diagnostics.Process" />-Komponenten und ordnet diese allen Prozessressourcen auf dem lokalen Computer zu, die den angegebenen Prozessnamen gemeinsam verwenden.</summary>
|
||||
<returns>Ein Array vom Typ <see cref="T:System.Diagnostics.Process" />, das die Prozessressourcen darstellt, die die angegebene Anwendung oder Datei ausführen.</returns>
|
||||
<param name="processName">Der angezeigte Name des Prozesses. </param>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)">
|
||||
<summary>Erstellt ein Array neuer <see cref="T:System.Diagnostics.Process" />-Komponenten und ordnet diese allen Prozessressourcen auf einem Remotecomputer zu, die den angegebenen Prozessnamen gemeinsam verwenden.</summary>
|
||||
<returns>Ein Array vom Typ <see cref="T:System.Diagnostics.Process" />, das die Prozessressourcen darstellt, die die angegebene Anwendung oder Datei ausführen.</returns>
|
||||
<param name="processName">Der angezeigte Name des Prozesses. </param>
|
||||
<param name="machineName">Der Name eines Computers im Netzwerk. </param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="machineName" /> parameter syntax is invalid.It might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The operating system platform does not support this operation on remote computers. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A problem occurred accessing an underlying system API. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.HasExited">
|
||||
<summary>Ruft einen Wert ab, der angibt, ob der zugehörige Prozess beendet wurde.</summary>
|
||||
<returns>true, wenn der Betriebssystemprozess, auf den die <see cref="T:System.Diagnostics.Process" />-Komponente verweist, beendet wurde; andernfalls false.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with the object. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The exit code for the process could not be retrieved. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.HasExited" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Id">
|
||||
<summary>Ruft den eindeutigen Bezeichner für den zugeordneten Prozess ab.</summary>
|
||||
<returns>Der vom System generierte eindeutige Bezeichner des Prozesses, auf den von dieser <see cref="T:System.Diagnostics.Process" />-Instanz verwiesen wird.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process's <see cref="P:System.Diagnostics.Process.Id" /> property has not been set.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Kill">
|
||||
<summary>Hält den zugeordneten Prozess sofort an.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to call <see cref="M:System.Diagnostics.Process.Kill" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has already exited. -or-There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.LeaveDebugMode">
|
||||
<summary>Beendet den Zustand einer <see cref="T:System.Diagnostics.Process" />-Komponente, in dem sie mit Betriebssystemprozessen interagieren kann, die in einem speziellen Modus ausgeführt werden.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MachineName">
|
||||
<summary>Ruft den Namen des Computers ab, auf dem der zugeordnete Prozess ausgeführt wird.</summary>
|
||||
<returns>Der Name des Computers, auf dem der zugeordnete Prozess ausgeführt wird.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MainModule">
|
||||
<summary>Ruft das Hauptmodul für den zugeordneten Prozess ab.</summary>
|
||||
<returns>Das zum Starten des Prozesses verwendete <see cref="T:System.Diagnostics.ProcessModule" />.</returns>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MainModule" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A 32-bit process is trying to access the modules of a 64-bit process.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MaxWorkingSet">
|
||||
<summary>Ruft die maximal zulässige Workingsetgröße für den zugeordneten Prozess ab oder legt diese fest.</summary>
|
||||
<returns>Die im Speicher maximal zulässige Workingsetgröße für den Prozess in Bytes.</returns>
|
||||
<exception cref="T:System.ArgumentException">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MaxWorkingSet" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MinWorkingSet">
|
||||
<summary>Ruft die minimale zulässige Workingsetgröße für den zugeordneten Prozess ab oder legt diese fest.</summary>
|
||||
<returns>Die im Speicher mindestens erforderliche Workingsetgröße für den Prozess in Bytes.</returns>
|
||||
<exception cref="T:System.ArgumentException">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MinWorkingSet" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Modules">
|
||||
<summary>Ruft die Module ab, die vom zugeordneten Prozess geladen wurden.</summary>
|
||||
<returns>Ein Array vom Typ <see cref="T:System.Diagnostics.ProcessModule" />, das die vom zugeordneten Prozess geladenen Module darstellt.</returns>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.Modules" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">You are attempting to access the <see cref="P:System.Diagnostics.Process.Modules" /> property for either the system process or the idle process.These processes do not have modules.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.NonpagedSystemMemorySize64">
|
||||
<summary>Ruft die Menge des für den zugeordneten Prozess belegten nicht ausgelagerten Systemspeichers ab.</summary>
|
||||
<returns>Der Anteil am Systemspeicher in Bytes, der für den zugeordneten Prozess reserviert ist und der nicht in die Auslagerungsdatei des virtuellen Speichers geschrieben werden kann.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.OnExited">
|
||||
<summary>Löst das <see cref="E:System.Diagnostics.Process.Exited" />-Ereignis aus.</summary>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.OutputDataReceived">
|
||||
<summary>Tritt jedes Mal auf, wenn eine Anwendung eine Zeile in ihren umgeleiteten <see cref="P:System.Diagnostics.Process.StandardOutput" />-Stream schreibt.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PagedMemorySize64">
|
||||
<summary>Ruft die Größe des ausgelagerten Speichers ab, der für den zugeordneten Prozess belegt wird.</summary>
|
||||
<returns>Die Größe des Arbeitsspeichers in Bytes, der für den zugeordneten Prozess in der Auslagerungsdatei des virtuellen Arbeitsspeichers belegt wird.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PagedSystemMemorySize64">
|
||||
<summary>Ruft die Menge des für den zugeordneten Prozess belegten auslagerbaren Systemspeichers ab.</summary>
|
||||
<returns>Der Anteil am Systemspeicher in Bytes, der für den zugeordneten Prozess belegt wird und der in die Auslagerungsdatei des virtuellen Speichers geschrieben werden kann.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakPagedMemorySize64">
|
||||
<summary>Ruft die vom zugeordneten Prozess verwendete maximale Speichergröße in der Auslagerungsdatei des virtuellen Arbeitsspeichers ab.</summary>
|
||||
<returns>Die maximale Größe des Arbeitsspeichers in Bytes, der seit dem Starten für den zugeordneten Prozess in der Auslagerungsdatei des virtuellen Arbeitsspeichers belegt wird.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakVirtualMemorySize64">
|
||||
<summary>Ruft die maximale Größe des virtuellen Speichers ab, der vom zugeordneten Prozess verwendet wird.</summary>
|
||||
<returns>Die maximale Größe des virtuellen Arbeitsspeichers in Bytes, der für den zugeordneten Prozess seit dem Starten belegt wird.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakWorkingSet64">
|
||||
<summary>Ruft die maximale Größe des physischen Speichers ab, der vom zugeordneten Prozess verwendet wird.</summary>
|
||||
<returns>Die maximale Größe des physischen Speichers in Bytes, der für den zugeordneten Prozess seit dem Starten belegt wird.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PriorityBoostEnabled">
|
||||
<summary>Ruft einen Wert ab, der angibt, ob die zugeordnete Prozesspriorität durch das Betriebssystem vorübergehend erhöht werden soll, wenn das Hauptfenster den Fokus besitzt, oder legt diesen fest.</summary>
|
||||
<returns>true, wenn die Prozesspriorität eines Prozesses dynamisch erhöht werden soll, wenn dieser den Wartezustand verlässt; andernfalls false.Die Standardeinstellung ist false.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Priority boost information could not be retrieved from the associated process resource. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PriorityBoostEnabled" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PriorityClass">
|
||||
<summary>Ruft die allgemeine Prioritätskategorie für den zugeordneten Prozess ab oder legt diese fest.</summary>
|
||||
<returns>Die Prioritätskategorie für den zugeordneten Prozess, aus der die <see cref="P:System.Diagnostics.Process.BasePriority" /> des Prozesses berechnet wird.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PriorityClass" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">You have set the <see cref="P:System.Diagnostics.Process.PriorityClass" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>
|
||||
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">Priority class cannot be set because it does not use a valid value, as defined in the <see cref="T:System.Diagnostics.ProcessPriorityClass" /> enumeration.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PrivateMemorySize64">
|
||||
<summary>Ruft die Größe des privaten Speichers ab, der für den zugeordneten Prozess belegt wird.</summary>
|
||||
<returns>Die Größe des Speichers in Bytes, der für den zugeordneten Prozess belegt wird und nicht mit anderen Prozessen gemeinsam genutzt werden kann.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PrivilegedProcessorTime">
|
||||
<summary>Ruft die privilegierte Prozessorzeit für diesen Prozess ab.</summary>
|
||||
<returns>Eine <see cref="T:System.TimeSpan" />, die angibt, wie lange der Prozess im Betriebssystemkern Code ausgeführt hat.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PrivilegedProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ProcessName">
|
||||
<summary>Ruft den Namen des Prozesses ab.</summary>
|
||||
<returns>Der Name, mit dem das System den Prozess für den Benutzer kennzeichnet.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process does not have an identifier, or no process is associated with the <see cref="T:System.Diagnostics.Process" />.-or- The associated process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is not on this computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ProcessorAffinity">
|
||||
<summary>Ruft die Prozessoren ab, auf denen die Ausführung der Threads in diesem Prozess geplant werden kann, oder legt diese fest.</summary>
|
||||
<returns>Eine Bitmaske, die angibt, auf welchen Prozessoren die Threads im zugeordneten Prozess ausgeführt werden können.Der Standardwert hängt von der Anzahl der Prozessoren des Computers ab.Der Standardwert ist 2n -1, wobei n die Anzahl der Prozessoren ist.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<see cref="P:System.Diagnostics.Process.ProcessorAffinity" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.ProcessorAffinity" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> was not available.-or- The process has exited. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Refresh">
|
||||
<summary>Verwirft alle Informationen über den zugeordneten Prozess, die in der Prozesskomponente zwischengespeichert waren.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.SafeHandle">
|
||||
<summary>Ruft das systemeigene Handle dieses Prozesses ab.</summary>
|
||||
<returns>Das systemeigene Handle dieses Prozesses.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.SessionId">
|
||||
<summary>Ruft die Terminaldienste-Sitzungs-ID für den zugeordneten Prozess ab.</summary>
|
||||
<returns>Die Terminaldienste-Sitzungs-ID für den zugeordneten Prozess.</returns>
|
||||
<exception cref="T:System.NullReferenceException">There is no session associated with this process.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The <see cref="P:System.Diagnostics.Process.SessionId" /> property is not supported on Windows 98.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardError">
|
||||
<summary>Ruft einen Stream ab, mit dem die Fehlerausgabe der Anwendung gelesen wird.</summary>
|
||||
<returns>Ein <see cref="T:System.IO.StreamReader" /> zum Lesen des Standardfehlerstreams der Anwendung.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has not been defined for redirection; ensure <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> is set to true and <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is set to false.- or - The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has been opened for asynchronous read operations with <see cref="M:System.Diagnostics.Process.BeginErrorReadLine" />. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardInput">
|
||||
<summary>Ruft einen Stream ab, in den die Eingaben der Anwendung geschrieben werden.</summary>
|
||||
<returns>Ein <see cref="T:System.IO.StreamWriter" /> zum Schreiben des Standardeingabestreams der Anwendung.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardInput" /> stream has not been defined because <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" /> is set to false. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardOutput">
|
||||
<summary>Ruft einen Stream ab, der dazu verwendet wird, die Textausgabe der Anwendung zu lesen.</summary>
|
||||
<returns>Ein <see cref="T:System.IO.StreamReader" /> zum Lesen des Standardausgabestreams der Anwendung.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has not been defined for redirection; ensure <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" /> is set to true and <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is set to false.- or - The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has been opened for asynchronous read operations with <see cref="M:System.Diagnostics.Process.BeginOutputReadLine" />. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start">
|
||||
<summary>Startet die von der <see cref="P:System.Diagnostics.Process.StartInfo" />-Eigenschaft dieser <see cref="T:System.Diagnostics.Process" />-Komponente angegebene Prozessressource (oder verwendet sie erneut) und ordnet diese der Komponente zu.</summary>
|
||||
<returns>true, wenn eine Prozessressource gestartet wird. false, wenn keine neue Prozessressource gestartet wird, sondern z. B. eine vorhandene Prozessressource wiederverwendet wird.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified in the <see cref="T:System.Diagnostics.Process" /> component's <see cref="P:System.Diagnostics.Process.StartInfo" />.-or- The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> member of the <see cref="P:System.Diagnostics.Process.StartInfo" /> property is true while <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" />, <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" />, or <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> is true. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">There was an error in opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)">
|
||||
<summary>Startet die Prozessressource, die durch den Parameter mit den Startinformationen für den Prozess angegeben wird (z. B. den Dateinamen des zu startenden Prozesses), und ordnet die Ressource einer neuen <see cref="T:System.Diagnostics.Process" /> -Komponente zu.</summary>
|
||||
<returns>Ein neuer <see cref="T:System.Diagnostics.Process" />, der der Prozessressource zugeordnet ist oder null, wenn keine Prozessressource gestartet wurde.Beachten Sie, dass ein neuer Prozess, der parallel zu bereits ausgeführten Instanzen des gleichen Prozesses gestartet wird, unabhängig von den anderen Instanzen ist.Außerdem gibt „Start“ möglicherweise einen nicht leeren (nicht NULL) Prozess zurück, dessen Eigenschaft <see cref="T:System.Diagnostics.ProcessHasExited" /> bereits auf true festgelegt ist.In diesem Fall hat der gestartete Prozess möglicherweise eine vorhandene Instanz seiner selbst aktiviert und sich dann beendet.</returns>
|
||||
<param name="startInfo">Die <see cref="T:System.Diagnostics.ProcessStartInfo" />, die die Informationen zum Starten des Prozesses enthält, einschließlich Dateiname und Befehlszeilenargumente. </param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified in the <paramref name="startInfo" /> parameter's <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property.-or- The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property of the <paramref name="startInfo" /> parameter is true and the <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" />, <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" />, or <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> property is also true.-or-The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property of the <paramref name="startInfo" /> parameter is true and the <see cref="P:System.Diagnostics.ProcessStartInfo.UserName" /> property is not null or empty or the <see cref="P:System.Diagnostics.ProcessStartInfo.Password" /> property is not null.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="startInfo" /> parameter is null. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The file specified in the <paramref name="startInfo" /> parameter's <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property could not be found.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String)">
|
||||
<summary>Startet eine Prozessressource, indem der Name eines Dokuments oder einer Anwendungsdatei angegeben wird, und ordnet die Ressource einer neuen <see cref="T:System.Diagnostics.Process" />-Komponente zu.</summary>
|
||||
<returns>Ein neuer <see cref="T:System.Diagnostics.Process" />, der der Prozessressource zugeordnet ist oder null, wenn keine Prozessressource gestartet wurde.Beachten Sie, dass ein neuer Prozess, der parallel zu bereits ausgeführten Instanzen des gleichen Prozesses gestartet wird, unabhängig von den anderen Instanzen ist.Außerdem gibt „Start“ möglicherweise einen nicht leeren (nicht NULL) Prozess zurück, dessen Eigenschaft <see cref="T:System.Diagnostics.ProcessHasExited" /> bereits auf true festgelegt ist.In diesem Fall hat der gestartete Prozess möglicherweise eine vorhandene Instanz seiner selbst aktiviert und sich dann beendet.</returns>
|
||||
<param name="fileName">Der Name eines Dokuments oder einer Anwendungsdatei, das bzw. die im Prozess ausgeführt werden soll. </param>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The PATH environment variable has a string containing quotes.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String)">
|
||||
<summary>Startet eine Prozessressource durch Angeben des Namens einer Anwendung und einer Reihe von Befehlszeilenargumenten und ordnet die Ressource einer neuen <see cref="T:System.Diagnostics.Process" />-Komponente zu.</summary>
|
||||
<returns>Ein neuer <see cref="T:System.Diagnostics.Process" />, der der Prozessressource zugeordnet ist oder null, wenn keine Prozessressource gestartet wurde.Beachten Sie, dass ein neuer Prozess, der parallel zu bereits ausgeführten Instanzen des gleichen Prozesses gestartet wird, unabhängig von den anderen Instanzen ist.Außerdem gibt „Start“ möglicherweise einen nicht leeren (nicht NULL) Prozess zurück, dessen Eigenschaft <see cref="T:System.Diagnostics.ProcessHasExited" /> bereits auf true festgelegt ist.In diesem Fall hat der gestartete Prozess möglicherweise eine vorhandene Instanz seiner selbst aktiviert und sich dann beendet.</returns>
|
||||
<param name="fileName">Der Name einer Anwendungsdatei, die in dem Prozess ausgeführt werden soll. </param>
|
||||
<param name="arguments">Befehlszeilenargumente, die beim Starten des Prozesses übergeben werden sollen. </param>
|
||||
<exception cref="T:System.InvalidOperationException">The <paramref name="fileName" /> or <paramref name="arguments" /> parameter is null. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The PATH environment variable has a string containing quotes.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)">
|
||||
<summary>Startet eine Prozessressource durch Angeben des Namens einer Anwendung, eines Benutzernamens und einer Domäne und ordnet die Ressource einer neuen <see cref="T:System.Diagnostics.Process" />-Komponente zu.</summary>
|
||||
<returns>Ein neuer <see cref="T:System.Diagnostics.Process" />, der der Prozessressource zugeordnet ist oder null, wenn keine Prozessressource gestartet wurde.Beachten Sie, dass ein neuer Prozess, der parallel zu bereits ausgeführten Instanzen des gleichen Prozesses gestartet wird, unabhängig von den anderen Instanzen ist.Außerdem gibt „Start“ möglicherweise einen nicht leeren (nicht NULL) Prozess zurück, dessen Eigenschaft <see cref="T:System.Diagnostics.ProcessHasExited" /> bereits auf true festgelegt ist.In diesem Fall hat der gestartete Prozess möglicherweise eine vorhandene Instanz seiner selbst aktiviert und sich dann beendet.</returns>
|
||||
<param name="fileName">Der Name einer Anwendungsdatei, die in dem Prozess ausgeführt werden soll.</param>
|
||||
<param name="userName">Der beim Starten des Prozesses zu verwendende Benutzername.</param>
|
||||
<param name="password">Eine <see cref="T:System.Security.SecureString" />, die das beim Starten des Prozesses zu verwendende Kennwort enthält.</param>
|
||||
<param name="domain">Die Domäne, die beim Starten des Prozesses verwendet werden soll.</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<paramref name="fileName" /> is not an executable (.exe) file.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">There was an error in opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)">
|
||||
<summary>Startet eine Prozessressource durch Angeben des Namens einer Anwendung und einer Reihe von Befehlszeilenargumenten, eines Benutzernamens, eines Kennworts und einer Domäne und ordnet die Ressource einer neuen <see cref="T:System.Diagnostics.Process" />-Komponente zu.</summary>
|
||||
<returns>Ein neuer <see cref="T:System.Diagnostics.Process" />, der der Prozessressource zugeordnet ist oder null, wenn keine Prozessressource gestartet wurde.Beachten Sie, dass ein neuer Prozess, der parallel zu bereits ausgeführten Instanzen des gleichen Prozesses gestartet wird, unabhängig von den anderen Instanzen ist.Außerdem gibt „Start“ möglicherweise einen nicht leeren (nicht NULL) Prozess zurück, dessen Eigenschaft <see cref="T:System.Diagnostics.ProcessHasExited" /> bereits auf true festgelegt ist.In diesem Fall hat der gestartete Prozess möglicherweise eine vorhandene Instanz seiner selbst aktiviert und sich dann beendet.</returns>
|
||||
<param name="fileName">Der Name einer Anwendungsdatei, die in dem Prozess ausgeführt werden soll. </param>
|
||||
<param name="arguments">Befehlszeilenargumente, die beim Starten des Prozesses übergeben werden sollen. </param>
|
||||
<param name="userName">Der beim Starten des Prozesses zu verwendende Benutzername.</param>
|
||||
<param name="password">Eine <see cref="T:System.Security.SecureString" />, die das beim Starten des Prozesses zu verwendende Kennwort enthält.</param>
|
||||
<param name="domain">Die Domäne, die beim Starten des Prozesses verwendet werden soll.</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<paramref name="fileName" /> is not an executable (.exe) file.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StartInfo">
|
||||
<summary>Ruft die Eigenschaften ab, die an die <see cref="M:System.Diagnostics.Process.Start" />-Methode von <see cref="T:System.Diagnostics.Process" /> übergeben werden sollen, oder legt diese fest.</summary>
|
||||
<returns>Die <see cref="T:System.Diagnostics.ProcessStartInfo" />, die die Daten darstellt, mit denen der Prozess gestartet werden soll.Diese Argumente beinhalten den Namen der ausführbaren Datei oder des Dokuments, das zum Starten des Prozesses verwendet wurde.</returns>
|
||||
<exception cref="T:System.ArgumentNullException">The value that specifies the <see cref="P:System.Diagnostics.Process.StartInfo" /> is null. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StartTime">
|
||||
<summary>Ruft die Zeit ab, zu der der zugeordnete Prozess gestartet wurde.</summary>
|
||||
<returns>Ein Objekt, das angibt, wann der zugeordnete Prozess gestartet wurde.Eine Ausnahme wird ausgelöst, wenn der Prozess nicht ausgeführt wird.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.StartTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has exited.-or-The process has not been started.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred in the call to the Windows function.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Threads">
|
||||
<summary>Ruft die Gruppe von Threads ab, die im zugeordneten Prozess ausgeführt werden.</summary>
|
||||
<returns>Ein Array vom Typ <see cref="T:System.Diagnostics.ProcessThread" />, das die Threads des Betriebssystems darstellt, die gegenwärtig im zugeordneten Prozess ausgeführt werden.</returns>
|
||||
<exception cref="T:System.SystemException">The process does not have an <see cref="P:System.Diagnostics.Process.Id" />, or no process is associated with the <see cref="T:System.Diagnostics.Process" /> instance.-or- The associated process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.TotalProcessorTime">
|
||||
<summary>Ruft die gesamte Prozessorzeit für diesen Prozess ab.</summary>
|
||||
<returns>Eine <see cref="T:System.TimeSpan" />, die die Zeitspanne angibt, während der der zugeordnete Prozess die CPU verwendet hat.Dieser Wert ist die Summe von <see cref="P:System.Diagnostics.Process.UserProcessorTime" /> und <see cref="P:System.Diagnostics.Process.PrivilegedProcessorTime" />.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.TotalProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.UserProcessorTime">
|
||||
<summary>Ruft die Benutzerprozessorzeit für diesen Prozess ab.</summary>
|
||||
<returns>Eine <see cref="T:System.TimeSpan" />, die die Zeitspanne angibt, während der der zugeordnete Prozess Code innerhalb der Anwendung des Prozesses (nicht im Betriebssystemkern) ausgeführt hat.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.UserProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.VirtualMemorySize64">
|
||||
<summary>Ruft die Größe des virtuellen Speichers ab, der für den zugeordneten Prozess belegt wird.</summary>
|
||||
<returns>Die Größe des virtuellen Speichers in Bytes, der für den zugeordneten Prozess belegt wird.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.WaitForExit">
|
||||
<summary>Weist die <see cref="T:System.Diagnostics.Process" />-Komponente an, unbestimmte Zeit zu warten, bis der zugeordnete Prozess beendet wird.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The wait setting could not be accessed. </exception>
|
||||
<exception cref="T:System.SystemException">No process <see cref="P:System.Diagnostics.Process.Id" /> has been set, and a <see cref="P:System.Diagnostics.Process.Handle" /> from which the <see cref="P:System.Diagnostics.Process.Id" /> property can be determined does not exist.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.-or- You are attempting to call <see cref="M:System.Diagnostics.Process.WaitForExit" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.WaitForExit(System.Int32)">
|
||||
<summary>Weist die <see cref="T:System.Diagnostics.Process" />-Komponente an, für die Dauer von angegebenen Millisekunden zu warten, bis der zugeordnete Prozess beendet wird.</summary>
|
||||
<returns>true, wenn der zugeordnete Prozess beendet wurde, andernfalls false.</returns>
|
||||
<param name="milliseconds">Die Zeitspanne in Millisekunden, die auf die Beendigung des zugeordneten Prozesses gewartet werden soll.Der Höchstwert ist der größtmögliche Wert einer 32-Bit-Ganzzahl, der für das Betriebssystem unendlich bedeutet.</param>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The wait setting could not be accessed. </exception>
|
||||
<exception cref="T:System.SystemException">No process <see cref="P:System.Diagnostics.Process.Id" /> has been set, and a <see cref="P:System.Diagnostics.Process.Handle" /> from which the <see cref="P:System.Diagnostics.Process.Id" /> property can be determined does not exist.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.-or- You are attempting to call <see cref="M:System.Diagnostics.Process.WaitForExit(System.Int32)" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.WorkingSet64">
|
||||
<summary>Ruft die Größe des physischen Speichers ab, der für den zugeordneten Prozess belegt wird.</summary>
|
||||
<returns>Die Größe des physischen Speichers in Bytes, der für den zugeordneten Prozess belegt wird.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessModule">
|
||||
<summary>Stellt eine DLL- oder EXE-Datei dar, die in einen bestimmten Prozess geladen wird.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.BaseAddress">
|
||||
<summary>Ruft die Speicheradresse ab, an der das Modul geladen wurde.</summary>
|
||||
<returns>Die Ladeadresse des Moduls.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.EntryPointAddress">
|
||||
<summary>Ruft die Speicheradresse für die Funktion ab, die beim Laden und Ausführen des Moduls ausgeführt wird.</summary>
|
||||
<returns>Der Einstiegspunkt des Moduls.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.FileName">
|
||||
<summary>Ruft den vollständigen Pfad des Moduls ab.</summary>
|
||||
<returns>Der voll gekennzeichnete Pfad, der den Speicherort des Moduls definiert.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.ModuleMemorySize">
|
||||
<summary>Ruft den zum Laden des Moduls erforderlichen Speicherplatz ab.</summary>
|
||||
<returns>Die Größe des vom Modul belegten Speicherplatzes in Bytes.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.ModuleName">
|
||||
<summary>Ruft den Namen des Prozessmoduls ab.</summary>
|
||||
<returns>Der Name des Moduls.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModule.ToString">
|
||||
<summary>Konvertiert den Namen des Moduls in eine Zeichenfolge.</summary>
|
||||
<returns>Der Wert der <see cref="P:System.Diagnostics.ProcessModule.ModuleName" />-Eigenschaft.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessModuleCollection">
|
||||
<summary>Stellt eine Auflistung von <see cref="T:System.Diagnostics.ProcessModule" />-Objekten mit starker Typisierung zur Verfügung.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.#ctor">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:System.Diagnostics.ProcessModuleCollection" />-Klasse ohne zugeordnete <see cref="T:System.Diagnostics.ProcessModule" />-Instanzen.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:System.Diagnostics.ProcessModuleCollection" />-Klasse mit dem angegebenen Array von <see cref="T:System.Diagnostics.ProcessModule" />-Instanzen.</summary>
|
||||
<param name="processModules">Ein Array von <see cref="T:System.Diagnostics.ProcessModule" />-Instanzen, mit denen diese <see cref="T:System.Diagnostics.ProcessModuleCollection" />-Instanz initialisiert werden soll. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)">
|
||||
<summary>Bestimmt, ob das angegebene Prozessmodul in der Auflistung vorhanden ist.</summary>
|
||||
<returns>true, wenn das Modul in der Auflistung vorhanden ist, andernfalls false.</returns>
|
||||
<param name="module">Eine <see cref="T:System.Diagnostics.ProcessModule" />-Instanz, die das in dieser Auflistung zu suchende Modul anzeigt. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)">
|
||||
<summary>Kopiert ein Array von <see cref="T:System.Diagnostics.ProcessModule" />-Instanzen am angegebenen Index in die Auflistung.</summary>
|
||||
<param name="array">Ein Array von <see cref="T:System.Diagnostics.ProcessModule" />-Instanzen, das der Auflistung hinzugefügt werden soll. </param>
|
||||
<param name="index">Die Position, an der die neuen Instanzen eingefügt werden sollen. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.Count"></member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.GetEnumerator"></member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)">
|
||||
<summary>Stellt die Position eines angegebenen Moduls in der Auflistung zur Verfügung.</summary>
|
||||
<returns>Der nullbasierte Index, der die Position des Moduls in der <see cref="T:System.Diagnostics.ProcessModuleCollection" /> definiert.</returns>
|
||||
<param name="module">Der <see cref="T:System.Diagnostics.ProcessModule" />, dessen Index abgerufen wird. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)">
|
||||
<summary>Ruft einen Index ab, mit dem die Gruppe von Prozessmodulen durchlaufen werden kann.</summary>
|
||||
<returns>Ein <see cref="T:System.Diagnostics.ProcessModule" />, das die Module in der Auflistung indiziert. </returns>
|
||||
<param name="index">Der nullbasierte Indexwert des Moduls in der Auflistung. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"></member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized"></member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot"></member>
|
||||
<member name="T:System.Diagnostics.ProcessPriorityClass">
|
||||
<summary>Gibt die Priorität an, die das System einem Prozess zuordnet.Dieser Wert bestimmt, gemeinsam mit dem Prioritätswert für jeden Thread des Prozesses, die Basisprioritätsebene jedes Threads.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.AboveNormal">
|
||||
<summary>Gibt an, dass der Prozess eine höhere Priorität als Normal aufweist, aber eine niedrigere als <see cref="F:System.Diagnostics.ProcessPriorityClass.High" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.BelowNormal">
|
||||
<summary>Gibt an, dass der Prozess eine höhere Priorität als Idle aufweist, aber eine niedrigere als Normal.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.High">
|
||||
<summary>Gibt an, dass der Prozess zeitkritische Aufgaben ausführt, die sofort ausgeführt werden müssen, z. B. für das Dialogfeld Task List, das beim Aufruf durch den Benutzer unabhängig von der Last des Betriebssystems schnell angezeigt werden muss.Die Threads des Prozesses haben Vorrang vor den Threads von Prozessen in den Prioritätsklassen mit normaler oder Leerlaufpriorität.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.Idle">
|
||||
<summary>Gibt an, dass die Threads dieses Prozesses nur ausgeführt werden, wenn sich das System im Leerlauf befindet. Trifft z. B. auf einen Bildschirmschoner zu.Vor den Threads dieses Prozesses haben die Threads eines beliebigen Prozesses Vorrang, der mit einer höheren Prioritätsklasse ausgeführt wird.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.Normal">
|
||||
<summary>Gibt an, dass für den Prozess keine besondere Planung erforderlich ist.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.RealTime">
|
||||
<summary>Gibt an, dass der Prozess die höchstmögliche Priorität aufweist.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessStartInfo">
|
||||
<summary>Gibt eine Wertemenge an, die beim Starten eines Prozesses verwendet wird.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:System.Diagnostics.ProcessStartInfo" />-Klasse, ohne einen Dateinamen anzugeben, mit dem der Prozess gestartet werden soll.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:System.Diagnostics.ProcessStartInfo" />-Klasse und gibt einen Dateinamen an, mit dem der Prozess gestartet werden soll, z. B. eine Anwendung oder ein Dokument.</summary>
|
||||
<param name="fileName">Eine Anwendung oder ein Dokument, mit der bzw. dem ein Prozess gestartet wird. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:System.Diagnostics.ProcessStartInfo" />-Klasse und gibt einen Anwendungsdateinamen an, mit dem der Prozess gestartet wird, sowie einen Satz von Befehlszeilenargumenten, die an die Anwendung übergeben werden.</summary>
|
||||
<param name="fileName">Eine Anwendung, mit der ein Prozess gestartet wird. </param>
|
||||
<param name="arguments">Befehlszeilenargumente, die beim Starten des Prozesses an die Anwendung übergeben werden sollen. </param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Arguments">
|
||||
<summary>Ruft den Satz von Befehlszeilenargumenten ab, die beim Starten der Anwendung verwendet werden sollen, oder legt diesen fest.</summary>
|
||||
<returns>Eine einzelne Zeichenfolge, die die Argumente enthält, die an die in der <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" />-Eigenschaft angegebene Zielanwendung übergeben werden sollen.Der Standardwert ist eine leere Zeichenfolge ("").Unter Windows Vista und früheren Versionen des Windows-Betriebssystems muss die Länge der Argumente, die der Länge des vollständigen Pfads des Prozesses hinzugefügt werden, kleiner sein als 2080.Unter Windows 7 und höheren Versionen muss die Länge kleiner als 32699 sein.Argumente werden von der Zielanwendung analysiert und interpretiert und müssen daher den Erwartungen der betreffenden Anwendung entsprechen.Bei .NET-Anwendungen, wie sie in den Beispielen unten dargestellt sind, werden Leerzeichen als Trennzeichen zwischen Argumenten interpretiert.Ein einzelnes Argument, das Leerzeichen enthält, muss in Anführungszeichen eingeschlossen sein, diese Anführungszeichen werden jedoch nicht an die Zielanwendung übergeben.Eingeschlossene Anführungszeichen, die in das endgültige analysierte Argument aufgenommen werden sollen, müssen dreifach escaped werden.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.CreateNoWindow">
|
||||
<summary>Ruft einen Wert ab, der angibt, ob der Prozess in einem neuen Fenster gestartet werden soll, oder legt diesen fest.</summary>
|
||||
<returns>true, wenn der Prozess ohne Erstellung eines neuen, für ihn bestimmten Fensters gestartet werden soll, andernfalls false.Die Standardeinstellung ist false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Domain">
|
||||
<summary>Ruft einen Wert ab, der die Domäne kennzeichnet, die beim Starten des Prozesses verwendet werden soll, oder legt diesen fest. </summary>
|
||||
<returns>Die Active Directory-Domäne, die beim Starten des Prozesses verwendet werden soll.Die Domäneneigenschaft ist hauptsächlich für Benutzer in Unternehmensumgebungen von Interesse, die Active Directory verwenden.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Environment"></member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.FileName">
|
||||
<summary>Ruft die zu startende Anwendung oder das zu startende Dokument ab oder legt die Anwendung bzw. das Dokument fest.</summary>
|
||||
<returns>Der Name der zu startenden Anwendung oder der Dokumentname eines einer Anwendung zugeordneten Dateityps, für den eine Standard-Öffnen-Aktion verfügbar ist.Der Standardwert ist eine leere Zeichenfolge ("").</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.LoadUserProfile">
|
||||
<summary>Ruft einen Wert ab, der angibt, ob das Windows-Benutzerprofil aus der Registrierung geladen werden soll, oder legt diesen fest. </summary>
|
||||
<returns>true, wenn das Windows-Benutzerprofil geladen werden soll; andernfalls false.Die Standardeinstellung ist false.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Password">
|
||||
<summary>Ruft eine sichere Zeichenfolge ab, die das Benutzerkennwort enthält, das beim Starten des Prozesses verwendet werden soll, oder legt diese fest.</summary>
|
||||
<returns>Das beim Starten des Prozesses zu verwendende Kennwort.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError">
|
||||
<summary>Ruft einen Wert ab, der angibt, ob die Fehlerausgabe einer Anwendung in den <see cref="P:System.Diagnostics.Process.StandardError" />-Datenstrom geschrieben wird, oder legt diesen fest.</summary>
|
||||
<returns>true, wenn die Fehlerausgabe in <see cref="P:System.Diagnostics.Process.StandardError" /> geschrieben werden soll; andernfalls false.Die Standardeinstellung ist false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput">
|
||||
<summary>Ruft einen Wert ab, der angibt, ob die Eingabe für eine Anwendung aus dem <see cref="P:System.Diagnostics.Process.StandardInput" />-Datenstrom gelesen wird, oder legt diesen fest.</summary>
|
||||
<returns>true, wenn die Eingabe von <see cref="P:System.Diagnostics.Process.StandardInput" /> gelesen werden soll; andernfalls false.Die Standardeinstellung ist false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput">
|
||||
<summary>Ruft einen Wert ab, der angibt, ob die Textausgabe einer Anwendung in den <see cref="P:System.Diagnostics.Process.StandardOutput" />-Datenstrom geschrieben wird, oder legt diesen fest.</summary>
|
||||
<returns>true, wenn die Ausgabe in <see cref="P:System.Diagnostics.Process.StandardOutput" /> geschrieben werden soll; andernfalls false.Die Standardeinstellung ist false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding">
|
||||
<summary>Ruft die bevorzugte Codierung für die Fehlerausgabe ab oder legt diese fest.</summary>
|
||||
<returns>Ein Objekt, das die bevorzugte Codierung für die Fehlerausgabe darstellt.Die Standardeinstellung ist null.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding">
|
||||
<summary>Ruft die bevorzugte Codierung für die Standardausgabe ab oder legt diese fest.</summary>
|
||||
<returns>Ein Objekt, das die bevorzugte Codierung für die Standardausgabe darstellt.Die Standardeinstellung ist null.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.UserName">
|
||||
<summary>Ruft den beim Starten des Prozesses zu verwendenden Benutzernamen ab oder legt diesen fest.</summary>
|
||||
<returns>Der beim Starten des Prozesses zu verwendende Benutzername.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.UseShellExecute">
|
||||
<summary>Ruft einen Wert ab, der angibt, ob zum Starten des Prozesses die Betriebssystemshell verwendet werden soll, oder legt diesen fest.</summary>
|
||||
<returns>true, wenn beim Starten des Prozesses die Shell verwendet werden soll; false, wenn der Prozess direkt von der ausführbaren Datei aus erstellt werden soll.Die Standardeinstellung ist true.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.WorkingDirectory">
|
||||
<summary>Ruft das Arbeitsverzeichnis für den zu startenden Prozess ab, oder legt es fest, wenn die <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> Eigenschaft false ist.Ruft das Verzeichnis ab, das den zu startenden Prozess enthält, oder legt es fest, wenn <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" />true ist.</summary>
|
||||
<returns>Wenn <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" />true ist, der voll gekennzeichnete Name des Verzeichnisses, das den zu startenden Prozess enthält.Wenn die <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> Eigenschaft false ist, das Arbeitsverzeichnis für den zu startenden Prozess.Der Standardwert ist eine leere Zeichenfolge ("").</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessThread">
|
||||
<summary>Stellt einen Prozessthread für ein Betriebssystem dar.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.BasePriority">
|
||||
<summary>Ruft die Basispriorität des Threads ab.</summary>
|
||||
<returns>Die Basispriorität des Threads, die vom Betriebssystem durch Kombinieren der Prioritätsklasse des Prozesses mit der Prioritätsebene des zugeordneten Threads errechnet wird.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.CurrentPriority">
|
||||
<summary>Ruft die aktuelle Priorität des Threads ab.</summary>
|
||||
<returns>Die aktuelle Priorität des Threads. Abhängig davon, wie das Betriebssystem den Thread plant, kann diese Priorität von der Basispriorität abweichen.Die Priorität kann für einen aktiven Thread vorübergehend erhöht werden.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.Id">
|
||||
<summary>Ruft den eindeutigen Bezeichner des Threads ab.</summary>
|
||||
<returns>Der eindeutige Bezeichner, der dem angegebenen Thread zugeordnet ist.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.IdealProcessor">
|
||||
<summary>Legt den bevorzugten Prozessor fest, auf dem dieser Thread ausgeführt werden soll.</summary>
|
||||
<returns>Der bevorzugte Prozessor für den Thread, der bei der Threadplanung des Systems verwendet wird, die bestimmt, auf welchem Prozessor der Thread ausgeführt werden soll.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Das System konnte die Ausführung des Threads nicht auf den angegebenen Prozessor festlegen. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PriorityBoostEnabled">
|
||||
<summary>Ruft einen Wert ab, der angibt, ob das Betriebssystem die Priorität des zugeordneten Threads vorübergehend erhöhen soll, sobald das Hauptfenster des Threadprozesses den Fokus hat, oder legt diesen Wert fest.</summary>
|
||||
<returns>true, wenn die Priorität des Threads bei Interaktion des Benutzers mit der Schnittstelle erhöht werden soll, andernfalls false.Die Standardeinstellung ist false.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Die Informationen zur Prioritätserhöhung konnten nicht abgerufen werden.- oder -Die Informationen zur Prioritätserhöhung konnten nicht festgelegt werden. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PriorityLevel">
|
||||
<summary>Ruft die Prioritätsebene des Threads ab oder legt diese fest.</summary>
|
||||
<returns>Einer der <see cref="T:System.Diagnostics.ThreadPriorityLevel" />-Werte, der einen Bereich für die Begrenzung der Priorität des Threads angibt.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Die Informationen für die Prioritätsebene des Threads konnten nicht abgerufen werden. - oder -Die Prioritätsebene für den Thread konnte nicht festgelegt werden.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime">
|
||||
<summary>Ruft die Zeit ab, während der der Thread im Betriebssystemkern Code ausgeführt hat.</summary>
|
||||
<returns>Eine <see cref="T:System.TimeSpan" />, die angibt, wie lange der Thread im Betriebssystemkern Code ausgeführt hat.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Die Threadzeit konnte nicht abgerufen werden. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.ProcessorAffinity">
|
||||
<summary>Legt die Prozessoren fest, auf denen der zugeordnete Thread ausgeführt werden kann.</summary>
|
||||
<returns>Ein <see cref="T:System.IntPtr" />, das auf eine Gruppe von Bits zeigt, wovon jedes einzelne einen Prozessor darstellt, auf dem der Thread ausgeführt werden kann.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Die Prozessoraffinität konnte nicht festgelgt werden. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThread.ResetIdealProcessor">
|
||||
<summary>Setzt den für diesen Thread idealen Prozessor zurück, um anzugeben, dass kein einzelner idealer Prozessor vorhanden ist.Das heißt, dass jeder Prozessor ideal sein kann.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Der ideale Prozessor konnte nicht zurückgesetzt werden. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.StartAddress">
|
||||
<summary>Ruft die Speicheradresse der Funktion ab, die vom Betriebssystem aufgerufen wurde, das diesen Thread gestartet hat.</summary>
|
||||
<returns>Die Anfangsadresse des Threads, die auf die vom Thread ausgeführte anwendungsdefinierte Funktion zeigt.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.StartTime">
|
||||
<summary>Ruft die Zeit ab, zu der das Betriebssystem den Thread gestartet hat.</summary>
|
||||
<returns>Eine <see cref="T:System.DateTime" />, die die Zeit auf dem System darstellt, zu der das Betriebssystem den Thread gestartet hat.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Die Threadzeit konnte nicht abgerufen werden. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.ThreadState">
|
||||
<summary>Ruft den aktuellen Zustand dieses Threads ab.</summary>
|
||||
<returns>Ein <see cref="T:System.Diagnostics.ThreadState" />, der die Ausführung des Threads angibt, z. B. wird ausgeführt, wartet oder wurde beendet.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.TotalProcessorTime">
|
||||
<summary>Ruft die gesamte Zeit ab, während der der Thread den Prozessor verwendet hat.</summary>
|
||||
<returns>Eine <see cref="T:System.TimeSpan" />, die die Zeit angibt, während der Thread den Prozessor gesteuert hat.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Die Threadzeit konnte nicht abgerufen werden. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.UserProcessorTime">
|
||||
<summary>Ruft die Zeit ab, während der der zugeordnete Thread in der Anwendung Code ausgeführt hat.</summary>
|
||||
<returns>Eine <see cref="T:System.TimeSpan" />, die angibt, wie lange der Thread Code in der Anwendung (im Gegensatz zum Betriebssystemkern) ausgeführt hat.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Die Threadzeit konnte nicht abgerufen werden. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.WaitReason">
|
||||
<summary>Ruft die Ursache für den Wartezustand des Threads ab.</summary>
|
||||
<returns>Eine <see cref="T:System.Diagnostics.ThreadWaitReason" />, die die Ursache für den Wartezustand des Threads darstellt.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">Der Thread befindet sich nicht im Wartezustand. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessThreadCollection">
|
||||
<summary>Stellt eine Auflistung von <see cref="T:System.Diagnostics.ProcessThread" />-Objekten mit starker Typisierung zur Verfügung.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.#ctor">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:System.Diagnostics.ProcessThreadCollection" />-Klasse ohne zugeordnete <see cref="T:System.Diagnostics.ProcessThread" />-Instanzen.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])">
|
||||
<summary>Initialisiert eine neue Instanz der <see cref="T:System.Diagnostics.ProcessThreadCollection" />-Klasse mit dem angegebenen Array von <see cref="T:System.Diagnostics.ProcessThread" />-Instanzen.</summary>
|
||||
<param name="processThreads">Ein Array von <see cref="T:System.Diagnostics.ProcessThread" />-Instanzen, mit denen diese <see cref="T:System.Diagnostics.ProcessThreadCollection" />-Instanz initialisiert werden soll. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)">
|
||||
<summary>Fügt einen Prozessthread an die Auflistung an.</summary>
|
||||
<returns>Der nullbasierte Index des Threads in der Auflistung.</returns>
|
||||
<param name="thread">Der der Auflistung hinzuzufügende Thread. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)">
|
||||
<summary>Bestimmt, ob der angegebene Prozessthread in der Auflistung enthalten ist.</summary>
|
||||
<returns>true, wenn der Thread in der Auflistung vorhanden ist, andernfalls false.</returns>
|
||||
<param name="thread">Eine <see cref="T:System.Diagnostics.ProcessThread" />-Instanz, die den in dieser Auflistung zu suchenden Thread anzeigt. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)">
|
||||
<summary>Kopiert ein Array von <see cref="T:System.Diagnostics.ProcessThread" />-Instanzen am angegebenen Index in die Auflistung.</summary>
|
||||
<param name="array">Ein Array von <see cref="T:System.Diagnostics.ProcessThread" />-Instanzen, das der Auflistung hinzugefügt werden soll. </param>
|
||||
<param name="index">Die Position, an der die neuen Instanzen eingefügt werden sollen. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.Count"></member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.GetEnumerator"></member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)">
|
||||
<summary>Stellt die Position eines angegebenen Threads in der Auflistung zur Verfügung.</summary>
|
||||
<returns>Der nullbasierte Index, der die Position des Threads in der <see cref="T:System.Diagnostics.ProcessThreadCollection" /> definiert.</returns>
|
||||
<param name="thread">Der <see cref="T:System.Diagnostics.ProcessThread" />, dessen Index abgerufen wird. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)">
|
||||
<summary>Fügt an der angegebenen Position einen Prozessthread in die Auflistung ein.</summary>
|
||||
<param name="index">Der nullbasierte Index, der die Position angibt, an der der Thread eingefügt werden soll. </param>
|
||||
<param name="thread">Der in die Auflistung einzufügende Thread. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)">
|
||||
<summary>Ruft einen Index ab, mit dem die Gruppe von Prozessthreads durchlaufen werden kann.</summary>
|
||||
<returns>Ein <see cref="T:System.Diagnostics.ProcessThread" />, der die Threads in der Auflistung indiziert.</returns>
|
||||
<param name="index">Der nullbasierte Indexwert des Threads in der Auflistung. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)">
|
||||
<summary>Löscht einen Prozessthread aus der Auflistung.</summary>
|
||||
<param name="thread">Der Thread, der aus der Auflistung entfernt werden soll. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"></member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized"></member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot"></member>
|
||||
<member name="T:System.Diagnostics.ThreadPriorityLevel">
|
||||
<summary>Gibt die Prioritätsebene eines Threads an.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.AboveNormal">
|
||||
<summary>Gibt eine Stufe über der normalen Priorität für die zugeordnete <see cref="T:System.Diagnostics.ProcessPriorityClass" /> an.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.BelowNormal">
|
||||
<summary>Gibt eine Stufe unter der normalen Priorität für die zugeordnete <see cref="T:System.Diagnostics.ProcessPriorityClass" /> an.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Highest">
|
||||
<summary>Gibt die höchste Priorität an.Dies ist zwei Stufen über der normalen Priorität für die zugeordnete <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Idle">
|
||||
<summary>Gibt die Leerlaufpriorität an.Dies ist der niedrigste mögliche Prioritätswert aller Threads, unabhängig vom Wert der zugeordneten <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Lowest">
|
||||
<summary>Gibt die niedrigste Priorität an.Dies ist zwei Stufen unter der normalen Priorität für die zugeordnete <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Normal">
|
||||
<summary>Gibt die normale Priorität für die zugeordnete <see cref="T:System.Diagnostics.ProcessPriorityClass" /> an.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.TimeCritical">
|
||||
<summary>Gibt die auf die Ausführungsgeschwindigkeit bezogene Priorität an.Dies ist die höchste Priorität aller Threads, unabhängig vom Wert der zugeordneten <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ThreadState">
|
||||
<summary>Gibt den aktuellen Ausführungszustand des Threads an.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Initialized">
|
||||
<summary>Ein Zustand, der angibt, dass der Thread initialisiert wurde, jedoch noch nicht gestartet ist.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Ready">
|
||||
<summary>Ein Zustand, der anzeigt, dass der Thread auf die Verwendung eines Prozessors wartet, da gegenwärtig kein Prozessor frei ist.Der Thread kann auf dem nächsten verfügbaren Prozessor ausgeführt werden.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Running">
|
||||
<summary>Ein Zustand, der angibt, dass der Thread zurzeit einen Prozessor verwendet.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Standby">
|
||||
<summary>Ein Zustand, der angibt, dass der Thread gerade einen Prozessor verwenden will.In diesem Zustand kann sich jeweils nur ein Thread befinden.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Terminated">
|
||||
<summary>Ein Zustand, der angibt, dass der Thread die Ausführung abgeschlossen hat und beendet wurde.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Transition">
|
||||
<summary>Ein Zustand, der angibt, dass der Thread auf eine andere Ressource als den Prozessor wartet, bevor er ausgeführt werden kann.Er könnte z. B. darauf warten, dass der Ausführungsstapel von der Festplatte gelesen wird.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Unknown">
|
||||
<summary>Der Zustand des Threads ist unbekannt.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Wait">
|
||||
<summary>Ein Zustand, der angibt, dass der Thread den Prozessor nicht verwenden kann, da er auf die Beendigung einer Operation in der Peripherie oder auf das Freiwerden einer Ressource wartet.Wenn der Thread bereit ist, wird der Start neu geplant.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ThreadWaitReason">
|
||||
<summary>Gibt die Ursache für den Wartezustand eines Threads an.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.EventPairHigh">
|
||||
<summary>Der Thread wartet auf das Ereignispaar High.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.EventPairLow">
|
||||
<summary>Der Thread wartet auf das Ereignispaar Low.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.ExecutionDelay">
|
||||
<summary>Die Ausführung des Threads wird verzögert.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Executive">
|
||||
<summary>Der Thread wartet auf den Planer.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.FreePage">
|
||||
<summary>Der Thread wartet auf eine freie Seite im virtuellen Speicher.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.LpcReceive">
|
||||
<summary>Der Thread wartet auf die Ankunft eines Aufrufs einer lokalen Prozedur.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.LpcReply">
|
||||
<summary>Der Thread wartet darauf, dass die Antwort auf den Aufruf einer lokalen Prozedur ankommt.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.PageIn">
|
||||
<summary>Der Thread wartet auf die Ankunft einer Seite des virtuellen Speichers im Arbeitsspeicher.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.PageOut">
|
||||
<summary>Der Thread wartet darauf, dass eine Seite des virtuellen Speichers auf den Datenträger geschrieben wird.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Suspended">
|
||||
<summary>Die Ausführung des Threads wurde unterbrochen.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.SystemAllocation">
|
||||
<summary>Der Thread wartet auf Reservierung durch das System.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Unknown">
|
||||
<summary>Der Thread befindet sich aus unbekannten Gründen im Wartezustand.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.UserRequest">
|
||||
<summary>Der Thread wartet auf eine Benutzeranforderung.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.VirtualMemory">
|
||||
<summary>Der Thread wartet darauf, dass das System virtuellen Speicher belegt.</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
997
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/es/System.Diagnostics.Process.xml
vendored
Normal file
997
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/es/System.Diagnostics.Process.xml
vendored
Normal file
@@ -0,0 +1,997 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Diagnostics.Process</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Win32.SafeHandles.SafeProcessHandle">
|
||||
<summary>[CRÍTICO PARA LA SEGURIDAD] Proporciona un contenedor administrado para un identificador de proceso.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)">
|
||||
<summary>[CRÍTICO PARA LA SEGURIDAD] Inicializa una nueva instancia de la <see cref="T:Microsoft.Win32.SafeHandles.SafeProcessHandle" /> clase a partir del identificador especificado, que indica si se va a liberar el identificador durante la fase de finalización. </summary>
|
||||
<param name="existingHandle">El identificador para ajustarse.</param>
|
||||
<param name="ownsHandle">truepara permitir de forma confiable <see cref="T:Microsoft.Win32.SafeHandles.SafeProcessHandle" /> liberar el identificador durante la fase de finalización; de lo contrario, false.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid"></member>
|
||||
<member name="T:System.Diagnostics.DataReceivedEventArgs">
|
||||
<summary>Proporciona datos para los eventos <see cref="E:System.Diagnostics.Process.OutputDataReceived" /> y <see cref="E:System.Diagnostics.Process.ErrorDataReceived" />.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.DataReceivedEventArgs.Data">
|
||||
<summary>Obtiene la línea de caracteres escrita en un flujo de salida de <see cref="T:System.Diagnostics.Process" /> redirigido.</summary>
|
||||
<returns>Línea escrita por una secuencia <see cref="T:System.Diagnostics.Process" /> asociada en su secuencia <see cref="P:System.Diagnostics.Process.StandardOutput" /> o <see cref="P:System.Diagnostics.Process.StandardError" /> redirigida.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.DataReceivedEventHandler">
|
||||
<summary>Representa el método que controlará los eventos <see cref="E:System.Diagnostics.Process.OutputDataReceived" /> o <see cref="E:System.Diagnostics.Process.ErrorDataReceived" /> de un <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<param name="sender">Origen del evento. </param>
|
||||
<param name="e">Objeto <see cref="T:System.Diagnostics.DataReceivedEventArgs" /> que contiene los datos del evento. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.Process">
|
||||
<summary>Proporciona acceso a procesos locales y remotos, y permite iniciar y detener procesos del sistema local.Para examinar el código fuente de .NET Framework de este tipo, consulte el origen de referencia.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.#ctor">
|
||||
<summary>Inicializa una nueva instancia de la clase <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.BasePriority">
|
||||
<summary>Obtiene la prioridad base del proceso asociado.</summary>
|
||||
<returns>Prioridad base, que se calcula a partir de <see cref="P:System.Diagnostics.Process.PriorityClass" /> del proceso asociado.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has exited.-or- The process has not started, so there is no process ID. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.BeginErrorReadLine">
|
||||
<summary>Inicia las operaciones de lectura asincrónica en la secuencia de <see cref="P:System.Diagnostics.Process.StandardError" /> redirigida de la aplicación.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref="P:System.Diagnostics.Process.StandardError" /> stream.- or - The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has been used by a synchronous read operation. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.BeginOutputReadLine">
|
||||
<summary>Inicia las operaciones de lectura asincrónica en la secuencia de <see cref="P:System.Diagnostics.Process.StandardOutput" /> redirigida de la aplicación.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream.- or - The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has been used by a synchronous read operation. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.CancelErrorRead">
|
||||
<summary>Cancela la operación de lectura asincrónica en la secuencia redirigida de <see cref="P:System.Diagnostics.Process.StandardError" /> de una aplicación.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardError" /> stream is not enabled for asynchronous read operations. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.CancelOutputRead">
|
||||
<summary>Cancela la operación de lectura asincrónica en la secuencia redirigida de <see cref="P:System.Diagnostics.Process.StandardOutput" /> de una aplicación.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream is not enabled for asynchronous read operations. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Dispose"></member>
|
||||
<member name="M:System.Diagnostics.Process.Dispose(System.Boolean)">
|
||||
<summary>Libera todos los recursos utilizados por este proceso.</summary>
|
||||
<param name="disposing">Es true para liberar tanto recursos administrados como no administrados; es false para liberar únicamente recursos no administrados. </param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.EnableRaisingEvents">
|
||||
<summary>Obtiene o establece si el evento <see cref="E:System.Diagnostics.Process.Exited" /> debe provocarse cuando termine el proceso.</summary>
|
||||
<returns>Es true si el evento <see cref="E:System.Diagnostics.Process.Exited" /> debe provocarse cuando termine el proceso asociado (al salir o al llamar a <see cref="M:System.Diagnostics.Process.Kill" />); de lo contrario, es false.De manera predeterminada, es false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.EnterDebugMode">
|
||||
<summary>Coloca un componente <see cref="T:System.Diagnostics.Process" /> en estado de interacción con los procesos del sistema operativo que se ejecutan en un modo especial; para ello, habilita la propiedad nativa SeDebugPrivilege en el subproceso actual.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.ErrorDataReceived">
|
||||
<summary>Se produce cuando una aplicación escribe en su secuencia redirigida de <see cref="P:System.Diagnostics.Process.StandardError" />.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ExitCode">
|
||||
<summary>Obtiene el valor especificado por el proceso asociado al terminar.</summary>
|
||||
<returns>Código especificado por el proceso asociado al terminar.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process has not exited.-or- The process <see cref="P:System.Diagnostics.Process.Handle" /> is not valid. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.ExitCode" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.Exited">
|
||||
<summary>Se produce cuando termina un proceso.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ExitTime">
|
||||
<summary>Obtiene el momento en el que terminó el proceso asociado.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.DateTime" /> que indica cuándo terminó el proceso asociado.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.ExitTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetCurrentProcess">
|
||||
<summary>Obtiene un nuevo componente <see cref="T:System.Diagnostics.Process" /> y lo asocia al proceso que está activo en ese momento.</summary>
|
||||
<returns>Nuevo componente <see cref="T:System.Diagnostics.Process" /> que está asociado al recurso del proceso que se está ejecutando en la aplicación que realiza la llamada.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessById(System.Int32)">
|
||||
<summary>Devuelve un nuevo componente <see cref="T:System.Diagnostics.Process" />, dado un identificador de un proceso en el equipo local.</summary>
|
||||
<returns>Componente <see cref="T:System.Diagnostics.Process" /> asociado al recurso del proceso local que se identifica mediante el parámetro <paramref name="processId" />.</returns>
|
||||
<param name="processId">Identificador de un recurso de proceso único en el sistema. </param>
|
||||
<exception cref="T:System.ArgumentException">The process specified by the <paramref name="processId" /> parameter is not running.The identifier might be expired.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process was not started by this object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)">
|
||||
<summary>Devuelve un nuevo componente <see cref="T:System.Diagnostics.Process" />, dados un identificador de proceso y el nombre de un equipo en la red.</summary>
|
||||
<returns>Componente <see cref="T:System.Diagnostics.Process" /> asociado a un recurso de proceso remoto que se identifica mediante el parámetro <paramref name="processId" />.</returns>
|
||||
<param name="processId">Identificador de un recurso de proceso único en el sistema. </param>
|
||||
<param name="machineName">Nombre de un equipo en la red. </param>
|
||||
<exception cref="T:System.ArgumentException">The process specified by the <paramref name="processId" /> parameter is not running.The identifier might be expired.-or- The <paramref name="machineName" /> parameter syntax is invalid.The name might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process was not started by this object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcesses">
|
||||
<summary>Crea un nuevo componente <see cref="T:System.Diagnostics.Process" /> para cada recurso de proceso del equipo local.</summary>
|
||||
<returns>Matriz de tipo <see cref="T:System.Diagnostics.Process" /> que representa todos los recursos del proceso que se ejecutan en el equipo local.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcesses(System.String)">
|
||||
<summary>Crea un nuevo componente <see cref="T:System.Diagnostics.Process" /> para cada recurso de proceso en el equipo especificado.</summary>
|
||||
<returns>Matriz de tipo <see cref="T:System.Diagnostics.Process" /> que representa todos los recursos del proceso que se ejecutan en el equipo especificado.</returns>
|
||||
<param name="machineName">Equipo desde el que se lee la lista de procesos. </param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="machineName" /> parameter syntax is invalid.It might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The operating system platform does not support this operation on remote computers. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A problem occurred accessing an underlying system API. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessesByName(System.String)">
|
||||
<summary>Crea una matriz de nuevos componentes <see cref="T:System.Diagnostics.Process" /> y los asocia a todos los recursos de proceso del equipo local que comparten el nombre de proceso especificado.</summary>
|
||||
<returns>Matriz de tipo <see cref="T:System.Diagnostics.Process" /> que representa los recursos del proceso que ejecutan la aplicación o el archivo especificado.</returns>
|
||||
<param name="processName">Nombre descriptivo del proceso. </param>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)">
|
||||
<summary>Crea una matriz de nuevos componentes <see cref="T:System.Diagnostics.Process" /> y los asocia a todos los recursos de proceso de un equipo remoto que comparten el nombre del proceso especificado.</summary>
|
||||
<returns>Matriz de tipo <see cref="T:System.Diagnostics.Process" /> que representa los recursos del proceso que ejecutan la aplicación o el archivo especificado.</returns>
|
||||
<param name="processName">Nombre descriptivo del proceso. </param>
|
||||
<param name="machineName">Nombre de un equipo en la red. </param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="machineName" /> parameter syntax is invalid.It might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The operating system platform does not support this operation on remote computers. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A problem occurred accessing an underlying system API. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.HasExited">
|
||||
<summary>Obtiene un valor que indica si el proceso asociado ha finalizado.</summary>
|
||||
<returns>Es true si el proceso del sistema operativo al que hace referencia el componente <see cref="T:System.Diagnostics.Process" /> ha terminado; de lo contrario, es false.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with the object. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The exit code for the process could not be retrieved. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.HasExited" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Id">
|
||||
<summary>Obtiene el identificador único del proceso asociado.</summary>
|
||||
<returns>Identificador único generado por el sistema del proceso al que hace referencia esta instancia de <see cref="T:System.Diagnostics.Process" />.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process's <see cref="P:System.Diagnostics.Process.Id" /> property has not been set.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Kill">
|
||||
<summary>Detiene inmediatamente el proceso asociado.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to call <see cref="M:System.Diagnostics.Process.Kill" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has already exited. -or-There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.LeaveDebugMode">
|
||||
<summary>Recupera un componente <see cref="T:System.Diagnostics.Process" /> del estado que le permite interactuar con procesos del sistema operativo que se ejecuten en un modo especial.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MachineName">
|
||||
<summary>Obtiene el nombre del equipo en el que se está ejecutando el proceso asociado.</summary>
|
||||
<returns>Nombre del equipo en el que se está ejecutando el proceso asociado.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MainModule">
|
||||
<summary>Obtiene el módulo principal del proceso asociado.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.ProcessModule" /> utilizado para iniciar el proceso.</returns>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MainModule" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A 32-bit process is trying to access the modules of a 64-bit process.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MaxWorkingSet">
|
||||
<summary>Obtiene o establece el tamaño máximo permitido para el espacio de trabajo del proceso asociado.</summary>
|
||||
<returns>Tamaño máximo permitido para el espacio de trabajo del proceso en la memoria expresado en bytes.</returns>
|
||||
<exception cref="T:System.ArgumentException">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MaxWorkingSet" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MinWorkingSet">
|
||||
<summary>Obtiene o establece el tamaño mínimo permitido para el espacio de trabajo del proceso asociado.</summary>
|
||||
<returns>Tamaño mínimo necesario para el espacio de trabajo del proceso en la memoria expresado en bytes.</returns>
|
||||
<exception cref="T:System.ArgumentException">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MinWorkingSet" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Modules">
|
||||
<summary>Obtiene los módulos cargados por el proceso asociado.</summary>
|
||||
<returns>Matriz de tipo <see cref="T:System.Diagnostics.ProcessModule" /> que representa los módulos cargados por el proceso asociado.</returns>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.Modules" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">You are attempting to access the <see cref="P:System.Diagnostics.Process.Modules" /> property for either the system process or the idle process.These processes do not have modules.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.NonpagedSystemMemorySize64">
|
||||
<summary>Obtiene el tamaño de la memoria no paginada del sistema que se ha asignado para el proceso asociado.</summary>
|
||||
<returns>El tamaño de la memoria del sistema, expresado en bytes, que se ha asignado para el proceso asociado que no puede escribirse en el archivo de paginación de la memoria virtual.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.OnExited">
|
||||
<summary>Genera el evento <see cref="E:System.Diagnostics.Process.Exited" />.</summary>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.OutputDataReceived">
|
||||
<summary>Se produce cada vez que una aplicación escribe una línea en su secuencia <see cref="P:System.Diagnostics.Process.StandardOutput" /> redirigida.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PagedMemorySize64">
|
||||
<summary>Obtiene el tamaño de la memoria paginada asignada para el proceso asociado.</summary>
|
||||
<returns>El tamaño de la memoria, expresado en bytes, asignada en el archivo de paginación de la memoria virtual para el proceso asociado.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PagedSystemMemorySize64">
|
||||
<summary>Obtiene el tamaño de la memoria paginable del sistema que se ha asignado para el proceso asociado.</summary>
|
||||
<returns>El tamaño de la memoria del sistema, expresado en bytes, que se ha asignado para el proceso asociado que puede escribirse en el archivo de paginación de la memoria virtual.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakPagedMemorySize64">
|
||||
<summary>Obtiene el tamaño de memoria máximo en el archivo de paginación de la memoria virtual que utiliza el proceso asociado.</summary>
|
||||
<returns>El tamaño de memoria máximo, expresado en bytes, asignado en el archivo de paginación de la memoria virtual para el proceso asociado desde su inicio.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakVirtualMemorySize64">
|
||||
<summary>Obtiene el tamaño máximo de la memoria virtual que utiliza el proceso asociado.</summary>
|
||||
<returns>El tamaño máximo de memoria virtual, expresado en bytes, que se ha asignado para el proceso asociado desde su inicio.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakWorkingSet64">
|
||||
<summary>Obtiene el tamaño máximo de la memoria física que utiliza el proceso asociado.</summary>
|
||||
<returns>El tamaño máximo de memoria física, expresado en bytes, que se ha asignado para el proceso asociado desde su inicio.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PriorityBoostEnabled">
|
||||
<summary>Obtiene o establece un valor que indica si el sistema operativo debería aumentar temporalmente la prioridad del proceso asociado cuando la ventana principal tenga el foco.</summary>
|
||||
<returns>Es true si la prioridad del proceso debe aumentarse dinámicamente cuando este salga del estado de espera; de lo contrario, es false.De manera predeterminada, es false.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Priority boost information could not be retrieved from the associated process resource. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PriorityBoostEnabled" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PriorityClass">
|
||||
<summary>Obtiene o establece la categoría de prioridad general del proceso asociado.</summary>
|
||||
<returns>Categoría de prioridad del proceso asociado a partir de la cual se calcula el <see cref="P:System.Diagnostics.Process.BasePriority" /> del proceso.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PriorityClass" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">You have set the <see cref="P:System.Diagnostics.Process.PriorityClass" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>
|
||||
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">Priority class cannot be set because it does not use a valid value, as defined in the <see cref="T:System.Diagnostics.ProcessPriorityClass" /> enumeration.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PrivateMemorySize64">
|
||||
<summary>Obtiene el tamaño de la memoria privada asignada para el proceso asociado.</summary>
|
||||
<returns>El tamaño de la memoria, expresado en bytes, que se ha asignado para el proceso asociado que no puede compartirse con otros procesos.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PrivilegedProcessorTime">
|
||||
<summary>Obtiene el tiempo de procesador con privilegios de este proceso.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.TimeSpan" /> que indica la cantidad de tiempo que el proceso ha invertido en la ejecución de código dentro del núcleo del sistema operativo.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PrivilegedProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ProcessName">
|
||||
<summary>Obtiene el nombre del proceso.</summary>
|
||||
<returns>Nombre que el sistema utiliza para identificar el proceso ante el usuario.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process does not have an identifier, or no process is associated with the <see cref="T:System.Diagnostics.Process" />.-or- The associated process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is not on this computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ProcessorAffinity">
|
||||
<summary>Obtiene o establece los procesadores en los que se puede programar la ejecución de los subprocesos de este proceso.</summary>
|
||||
<returns>Máscara de bits que representa los procesadores en los que pueden ejecutarse los subprocesos del proceso asociado.El valor predeterminado depende del número de procesadores del equipo.El valor predeterminado es 2 n -1, donde n representa el número de procesadores.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<see cref="P:System.Diagnostics.Process.ProcessorAffinity" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.ProcessorAffinity" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> was not available.-or- The process has exited. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Refresh">
|
||||
<summary>Descarta cualquier información acerca del proceso asociado que se haya almacenado en caché en el componente del proceso.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.SafeHandle">
|
||||
<summary>Obtiene el identificador nativo de este proceso.</summary>
|
||||
<returns>Identificador nativo de este proceso.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.SessionId">
|
||||
<summary>Obtiene el identificador de la sesión de Terminal Services para el proceso asociado.</summary>
|
||||
<returns>El identificador de la sesión de Terminal Services para el proceso asociado.</returns>
|
||||
<exception cref="T:System.NullReferenceException">There is no session associated with this process.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The <see cref="P:System.Diagnostics.Process.SessionId" /> property is not supported on Windows 98.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardError">
|
||||
<summary>Obtiene una secuencia utilizada para leer la salida de errores de la aplicación.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.IO.StreamReader" /> que puede utilizarse para leer la secuencia de error estándar de la aplicación.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has not been defined for redirection; ensure <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> is set to true and <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is set to false.- or - The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has been opened for asynchronous read operations with <see cref="M:System.Diagnostics.Process.BeginErrorReadLine" />. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardInput">
|
||||
<summary>Obtiene una secuencia que se utiliza para escribir la entrada de la aplicación.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.IO.StreamWriter" /> que puede utilizarse para escribir la secuencia de entrada estándar de la aplicación.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardInput" /> stream has not been defined because <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" /> is set to false. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardOutput">
|
||||
<summary>Obtiene una secuencia usada para leer la salida de texto de la aplicación.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.IO.StreamReader" /> que puede utilizarse para leer la secuencia de salida estándar de la aplicación.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has not been defined for redirection; ensure <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" /> is set to true and <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is set to false.- or - The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has been opened for asynchronous read operations with <see cref="M:System.Diagnostics.Process.BeginOutputReadLine" />. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start">
|
||||
<summary>Inicia (o reutiliza) el recurso de proceso especificado en la propiedad <see cref="P:System.Diagnostics.Process.StartInfo" /> de este componente <see cref="T:System.Diagnostics.Process" /> y lo asocia al componente.</summary>
|
||||
<returns>Es true si se inicia un recurso de proceso; es false si no se inicia ningún recurso de proceso nuevo (por ejemplo, si se reutiliza un recurso existente).</returns>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified in the <see cref="T:System.Diagnostics.Process" /> component's <see cref="P:System.Diagnostics.Process.StartInfo" />.-or- The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> member of the <see cref="P:System.Diagnostics.Process.StartInfo" /> property is true while <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" />, <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" />, or <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> is true. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">There was an error in opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)">
|
||||
<summary>Inicia el recurso de proceso que se especifica mediante el parámetro que contiene la información de inicio del proceso (por ejemplo, el nombre de archivo del proceso que se va a iniciar) y asocia el recurso a un nuevo componente <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Nuevo <see cref="T:System.Diagnostics.Process" /> que está asociado al recurso del proceso, o null si no se inicia ningún recurso de proceso.Tenga en cuenta que un proceso nuevo que se inicie junto a instancias del mismo proceso ya en ejecución será independiente del resto.Además, Inicio puede devolver un proceso no nulo con su propiedad <see cref="T:System.Diagnostics.ProcessHasExited" /> ya establecida en true.En tal caso, el proceso iniciado puede haber activado una instancia existente de sí mismo y, a continuación, haber salido.</returns>
|
||||
<param name="startInfo">
|
||||
<see cref="T:System.Diagnostics.ProcessStartInfo" /> que contiene la información que se utiliza para iniciar el proceso, incluidos el nombre de archivo y los argumentos de línea de comandos. </param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified in the <paramref name="startInfo" /> parameter's <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property.-or- The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property of the <paramref name="startInfo" /> parameter is true and the <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" />, <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" />, or <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> property is also true.-or-The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property of the <paramref name="startInfo" /> parameter is true and the <see cref="P:System.Diagnostics.ProcessStartInfo.UserName" /> property is not null or empty or the <see cref="P:System.Diagnostics.ProcessStartInfo.Password" /> property is not null.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="startInfo" /> parameter is null. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The file specified in the <paramref name="startInfo" /> parameter's <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property could not be found.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String)">
|
||||
<summary>Inicia un recurso de proceso con la especificación del nombre de un documento o de un archivo de aplicación y asocia el recurso a un nuevo componente <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Nuevo <see cref="T:System.Diagnostics.Process" /> que está asociado al recurso del proceso, o null si no se inicia ningún recurso de proceso.Tenga en cuenta que un proceso nuevo que se inicie junto a instancias del mismo proceso ya en ejecución será independiente del resto.Además, Inicio puede devolver un proceso no nulo con su propiedad <see cref="T:System.Diagnostics.ProcessHasExited" /> ya establecida en true.En tal caso, el proceso iniciado puede haber activado una instancia existente de sí mismo y, a continuación, haber salido.</returns>
|
||||
<param name="fileName">Nombre de un archivo de documento o aplicación que se va a ejecutar en el proceso. </param>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The PATH environment variable has a string containing quotes.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String)">
|
||||
<summary>Inicia un recurso de proceso mediante la especificación del nombre de una aplicación y un conjunto de argumentos de línea de comandos, y asocia el recurso a un nuevo componente <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Nuevo <see cref="T:System.Diagnostics.Process" /> que está asociado al recurso del proceso, o null si no se inicia ningún recurso de proceso.Tenga en cuenta que un proceso nuevo que se inicie junto a instancias del mismo proceso ya en ejecución será independiente del resto.Además, Inicio puede devolver un proceso no nulo con su propiedad <see cref="T:System.Diagnostics.ProcessHasExited" /> ya establecida en true.En tal caso, el proceso iniciado puede haber activado una instancia existente de sí mismo y, a continuación, haber salido.</returns>
|
||||
<param name="fileName">Nombre de un archivo de aplicación que se va a ejecutar en el proceso. </param>
|
||||
<param name="arguments">Argumentos de línea de comandos que se van a pasar al iniciar el proceso. </param>
|
||||
<exception cref="T:System.InvalidOperationException">The <paramref name="fileName" /> or <paramref name="arguments" /> parameter is null. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The PATH environment variable has a string containing quotes.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)">
|
||||
<summary>Inicia un recurso de proceso mediante la especificación del nombre de una aplicación, un nombre de usuario, una contraseña y un dominio, y asocia el recurso a un nuevo componente de <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Nuevo <see cref="T:System.Diagnostics.Process" /> que está asociado al recurso del proceso, o null si no se inicia ningún recurso de proceso.Tenga en cuenta que un proceso nuevo que se inicie junto a instancias del mismo proceso ya en ejecución será independiente del resto.Además, Inicio puede devolver un proceso no nulo con su propiedad <see cref="T:System.Diagnostics.ProcessHasExited" /> ya establecida en true.En tal caso, el proceso iniciado puede haber activado una instancia existente de sí mismo y, a continuación, haber salido.</returns>
|
||||
<param name="fileName">Nombre de un archivo de aplicación que se va a ejecutar en el proceso.</param>
|
||||
<param name="userName">Nombre de usuario que se va a utilizar al iniciarse el proceso.</param>
|
||||
<param name="password">
|
||||
<see cref="T:System.Security.SecureString" /> que contiene la contraseña que se va a utilizar al iniciarse el proceso.</param>
|
||||
<param name="domain">Dominio que se va a utilizar al iniciarse el proceso.</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<paramref name="fileName" /> is not an executable (.exe) file.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">There was an error in opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)">
|
||||
<summary>Inicia un recurso de proceso mediante la especificación del nombre de una aplicación y un conjunto de argumentos de línea de comandos, un nombre de usuario, una contraseña y un dominio, y asocia el recurso a un nuevo componente de <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Nuevo <see cref="T:System.Diagnostics.Process" /> que está asociado al recurso del proceso, o null si no se inicia ningún recurso de proceso.Tenga en cuenta que un proceso nuevo que se inicie junto a instancias del mismo proceso ya en ejecución será independiente del resto.Además, Inicio puede devolver un proceso no nulo con su propiedad <see cref="T:System.Diagnostics.ProcessHasExited" /> ya establecida en true.En tal caso, el proceso iniciado puede haber activado una instancia existente de sí mismo y, a continuación, haber salido.</returns>
|
||||
<param name="fileName">Nombre de un archivo de aplicación que se va a ejecutar en el proceso. </param>
|
||||
<param name="arguments">Argumentos de línea de comandos que se van a pasar al iniciar el proceso. </param>
|
||||
<param name="userName">Nombre de usuario que se va a utilizar al iniciarse el proceso.</param>
|
||||
<param name="password">
|
||||
<see cref="T:System.Security.SecureString" /> que contiene la contraseña que se va a utilizar al iniciarse el proceso.</param>
|
||||
<param name="domain">Dominio que se va a utilizar al iniciarse el proceso.</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<paramref name="fileName" /> is not an executable (.exe) file.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StartInfo">
|
||||
<summary>Obtiene o establece las propiedades que se pasan al método <see cref="M:System.Diagnostics.Process.Start" /> de <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.ProcessStartInfo" /> que representa los datos con los que iniciar el proceso.Estos argumentos incluyen el nombre del archivo ejecutable o del documento que se utilizó para iniciar el proceso.</returns>
|
||||
<exception cref="T:System.ArgumentNullException">The value that specifies the <see cref="P:System.Diagnostics.Process.StartInfo" /> is null. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StartTime">
|
||||
<summary>Obtiene el momento en el que se inició el proceso asociado.</summary>
|
||||
<returns>Objeto que indica cuándo se inició el proceso.Si no se está ejecutando el proceso, se produce una excepción.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.StartTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has exited.-or-The process has not been started.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred in the call to the Windows function.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Threads">
|
||||
<summary>Obtiene el conjunto de subprocesos que se están ejecutando en el proceso asociado.</summary>
|
||||
<returns>Matriz de tipo <see cref="T:System.Diagnostics.ProcessThread" /> que representa los subprocesos del sistema operativo que se están ejecutando actualmente en el proceso asociado.</returns>
|
||||
<exception cref="T:System.SystemException">The process does not have an <see cref="P:System.Diagnostics.Process.Id" />, or no process is associated with the <see cref="T:System.Diagnostics.Process" /> instance.-or- The associated process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.TotalProcessorTime">
|
||||
<summary>Obtiene el tiempo de procesador total de este proceso.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.TimeSpan" /> indica la cantidad de tiempo que el proceso asociado ha empleado en utilizar la CPU.Este valor es la suma de <see cref="P:System.Diagnostics.Process.UserProcessorTime" /> y <see cref="P:System.Diagnostics.Process.PrivilegedProcessorTime" />.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.TotalProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.UserProcessorTime">
|
||||
<summary>Obtiene el tiempo de procesador de usuario de este proceso.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.TimeSpan" /> que indica la cantidad de tiempo que el proceso asociado ha empleado en ejecutar código en la parte de la aplicación que corresponde al proceso (no en el núcleo del sistema operativo).</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.UserProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.VirtualMemorySize64">
|
||||
<summary>Obtiene el tamaño de la memoria virtual que se ha asignado para el proceso asociado.</summary>
|
||||
<returns>El tamaño de memoria virtual, expresado en bytes, que se ha asignado para el proceso asociado.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.WaitForExit">
|
||||
<summary>Indica al componente <see cref="T:System.Diagnostics.Process" /> que espere indefinidamente hasta que el proceso asociado termine.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The wait setting could not be accessed. </exception>
|
||||
<exception cref="T:System.SystemException">No process <see cref="P:System.Diagnostics.Process.Id" /> has been set, and a <see cref="P:System.Diagnostics.Process.Handle" /> from which the <see cref="P:System.Diagnostics.Process.Id" /> property can be determined does not exist.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.-or- You are attempting to call <see cref="M:System.Diagnostics.Process.WaitForExit" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.WaitForExit(System.Int32)">
|
||||
<summary>Indica al componente <see cref="T:System.Diagnostics.Process" /> que espere a que el proceso asociado termine durante el número de milisegundos especificado.</summary>
|
||||
<returns>Es true si el proceso asociado ha terminado; de lo contrario, es false.</returns>
|
||||
<param name="milliseconds">Cantidad de tiempo, en milisegundos, que se esperará hasta que termine el proceso asociado.El valor máximo es el valor mayor posible de un entero de 32 bits, que representa el infinito para el sistema operativo.</param>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The wait setting could not be accessed. </exception>
|
||||
<exception cref="T:System.SystemException">No process <see cref="P:System.Diagnostics.Process.Id" /> has been set, and a <see cref="P:System.Diagnostics.Process.Handle" /> from which the <see cref="P:System.Diagnostics.Process.Id" /> property can be determined does not exist.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.-or- You are attempting to call <see cref="M:System.Diagnostics.Process.WaitForExit(System.Int32)" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.WorkingSet64">
|
||||
<summary>Obtiene el tamaño de la memoria física que se ha asignado para el proceso asociado.</summary>
|
||||
<returns>El tamaño de memoria física, expresado en bytes, que se ha asignado para el proceso asociado.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessModule">
|
||||
<summary>Representa a un archivo .dll o .exe que se carga en un proceso determinado.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.BaseAddress">
|
||||
<summary>Devuelve la dirección de memoria en la que se cargó el módulo.</summary>
|
||||
<returns>Dirección de carga del módulo.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.EntryPointAddress">
|
||||
<summary>Obtiene la dirección de memoria de la función que se ejecuta cuando el sistema carga y ejecuta el módulo.</summary>
|
||||
<returns>Punto de entrada del módulo.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.FileName">
|
||||
<summary>Obtiene la ruta de acceso completa al módulo.</summary>
|
||||
<returns>Ruta de acceso completa que define la ubicación del módulo.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.ModuleMemorySize">
|
||||
<summary>Obtiene la cantidad de memoria necesaria para cargar el módulo.</summary>
|
||||
<returns>Tamaño, en bytes, de la memoria que ocupa el módulo.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.ModuleName">
|
||||
<summary>Obtiene el nombre del módulo del proceso.</summary>
|
||||
<returns>El nombre del módulo.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModule.ToString">
|
||||
<summary>Convierte el nombre del módulo en una cadena.</summary>
|
||||
<returns>Valor de la propiedad <see cref="P:System.Diagnostics.ProcessModule.ModuleName" />.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessModuleCollection">
|
||||
<summary>Proporciona una colección de objetos <see cref="T:System.Diagnostics.ProcessModule" /> fuertemente tipados.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.#ctor">
|
||||
<summary>Inicializa una nueva instancia de la clase <see cref="T:System.Diagnostics.ProcessModuleCollection" />, sin instancias de <see cref="T:System.Diagnostics.ProcessModule" /> asociadas.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])">
|
||||
<summary>Inicializa una nueva instancia de la clase <see cref="T:System.Diagnostics.ProcessModuleCollection" /> utilizando la matriz de instancias de <see cref="T:System.Diagnostics.ProcessModule" /> especificada.</summary>
|
||||
<param name="processModules">Matriz de instancias de <see cref="T:System.Diagnostics.ProcessModule" /> con la que se inicializa esta instancia de <see cref="T:System.Diagnostics.ProcessModuleCollection" />. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)">
|
||||
<summary>Determina si el módulo de proceso especificado se encuentra en la colección.</summary>
|
||||
<returns>Es true si el módulo está en la colección; en caso contrario, es false.</returns>
|
||||
<param name="module">Instancia de <see cref="T:System.Diagnostics.ProcessModule" /> que indica el módulo que se va a buscar en la colección. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)">
|
||||
<summary>Copia una matriz de instancias de <see cref="T:System.Diagnostics.ProcessModule" /> en la colección, en el índice especificado.</summary>
|
||||
<param name="array">Matriz de instancias de <see cref="T:System.Diagnostics.ProcessModule" /> que se va a agregar a la colección. </param>
|
||||
<param name="index">Ubicación en la que se van a agregar las nuevas instancias. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.Count"></member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.GetEnumerator"></member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)">
|
||||
<summary>Proporciona la ubicación de un módulo especificado en la colección.</summary>
|
||||
<returns>Índice de base cero que define la ubicación del módulo en <see cref="T:System.Diagnostics.ProcessModuleCollection" />.</returns>
|
||||
<param name="module">Objeto <see cref="T:System.Diagnostics.ProcessModule" /> cuyo índice se recupera. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)">
|
||||
<summary>Obtiene un índice para recorrer en iteración el conjunto de módulos de proceso.</summary>
|
||||
<returns>Objeto <see cref="T:System.Diagnostics.ProcessModule" /> que indiza los módulos de la colección. </returns>
|
||||
<param name="index">Valor del índice de base cero del módulo de la colección. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"></member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized"></member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot"></member>
|
||||
<member name="T:System.Diagnostics.ProcessPriorityClass">
|
||||
<summary>Indica la prioridad que el sistema asocia a un proceso.Este valor, junto con el valor de prioridad de cada subproceso del proceso, determina el nivel de prioridad base de cada subproceso.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.AboveNormal">
|
||||
<summary>Especifica que el proceso tiene una prioridad superior a Normal pero inferior a <see cref="F:System.Diagnostics.ProcessPriorityClass.High" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.BelowNormal">
|
||||
<summary>Especifica que el proceso tiene una prioridad superior a Idle pero inferior a Normal.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.High">
|
||||
<summary>Especifica que el proceso realiza tareas críticas en el tiempo que deben ejecutarse de inmediato, como el cuadro de diálogo Task List, que debe responder rápidamente cuando el usuario lo llama, independientemente de la carga del sistema operativo.Los subprocesos del proceso tienen prioridad sobre los subprocesos de aquellos procesos de clase de prioridad normal o inactiva.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.Idle">
|
||||
<summary>Especifica que los subprocesos de este proceso se ejecutan solo cuando el sistema está inactivo, como el protector de pantalla.Los subprocesos del proceso tienen menor prioridad que los subprocesos de cualquier proceso que se ejecute en una clase de prioridad más alta.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.Normal">
|
||||
<summary>Especifica que el proceso no tiene necesidades de programación especiales.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.RealTime">
|
||||
<summary>Especifica que el proceso tiene la prioridad más alta posible.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessStartInfo">
|
||||
<summary>Especifica un conjunto de valores que se usa cuando se inicia un proceso. </summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor">
|
||||
<summary>Inicializa una nueva instancia de la clase <see cref="T:System.Diagnostics.ProcessStartInfo" /> sin especificar un nombre de archivo con el que iniciar el proceso.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)">
|
||||
<summary>Inicializa una nueva instancia de la clase <see cref="T:System.Diagnostics.ProcessStartInfo" /> y especifica un nombre de archivo, como una aplicación o un documento, con el que se inicia el proceso.</summary>
|
||||
<param name="fileName">Aplicación o documento con que se inicia un proceso. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)">
|
||||
<summary>Inicializa una nueva instancia de la clase <see cref="T:System.Diagnostics.ProcessStartInfo" /> y especifica un nombre de archivo de aplicación con el que se iniciará el proceso, así como un conjunto de argumentos de línea de comandos que se pasarán a la aplicación.</summary>
|
||||
<param name="fileName">Aplicación con que se inicia un proceso. </param>
|
||||
<param name="arguments">Argumentos de línea de comandos que se van a pasar a la aplicación al iniciar el proceso. </param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Arguments">
|
||||
<summary>Obtiene o establece el conjunto de argumentos de línea de comandos que se van a usar al iniciar la aplicación.</summary>
|
||||
<returns>Cadena única que contiene los argumentos para pasar a la aplicación de destino especificada en la propiedad <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" />.El valor predeterminado es una cadena vacía ("").En Windows Vista y versiones anteriores del sistema operativo Windows, la longitud de los argumentos sumada a la longitud de la ruta de acceso completa al proceso debe ser inferior a 2080.En Windows 7 y versiones posteriores, la longitud debe ser inferior a 32.699.Los argumentos se analizan e interpretan mediante la aplicación de destino, por lo que deben estar en línea con las expectativas de la aplicación.En las aplicaciones .NET, como se muestra en los ejemplos siguientes, los espacios se interpretan como una separación entre varios argumentos.Un solo argumento que incluye espacios debe incluirse entre comillas, pero las comillas no se llevan a cabo en la aplicación de destino.En las comillas incluidas en el argumento final analizado, se elude triplemente cada marca.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.CreateNoWindow">
|
||||
<summary>Obtiene o establece un valor que indica si el proceso se va a iniciar en una nueva ventana.</summary>
|
||||
<returns>true si el proceso se debe iniciar sin crear una nueva ventana que lo contenga; de lo contrario, es false.De manera predeterminada, es false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Domain">
|
||||
<summary>Obtiene o establece un valor que identifica el dominio que se va a usar al iniciarse el proceso. </summary>
|
||||
<returns>El dominio de Active Directory que se va a usar al iniciarse el proceso.La propiedad de dominio es especialmente interesante para los usuarios en entornos de empresa que usan Active Directory.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Environment"></member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.FileName">
|
||||
<summary>Obtiene o establece la aplicación o el documento que se va a iniciar.</summary>
|
||||
<returns>Nombre de la aplicación que se va a iniciar o nombre de un documento que tiene un tipo de archivo asociado a una aplicación que dispone de una acción de apertura predeterminada.El valor predeterminado es una cadena vacía ("").</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.LoadUserProfile">
|
||||
<summary>Obtiene o establece un valor que indica si el perfil de usuario de Windows se va a cargar desde el registro. </summary>
|
||||
<returns>true si el perfil de usuario de Windows se debe cargar; de lo contrario, es false.De manera predeterminada, es false.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Password">
|
||||
<summary>Obtiene o establece una cadena segura que contiene la contraseña del usuario que se va a usar al iniciar el proceso.</summary>
|
||||
<returns>Contraseña de usuario que se va a usar al iniciar el proceso.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError">
|
||||
<summary>Obtiene o establece un valor que indica si la salida de errores de una aplicación se escribe en la secuencia de <see cref="P:System.Diagnostics.Process.StandardError" />.</summary>
|
||||
<returns>true si la salida de errores se debe escribir en <see cref="P:System.Diagnostics.Process.StandardError" />; en caso contrario, es false.De manera predeterminada, es false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput">
|
||||
<summary>Obtiene o establece un valor que indica si la entrada para una aplicación se lee de la secuencia de <see cref="P:System.Diagnostics.Process.StandardInput" />.</summary>
|
||||
<returns>true si la entrada se debe leer desde <see cref="P:System.Diagnostics.Process.StandardInput" />; en caso contrario, es false.De manera predeterminada, es false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput">
|
||||
<summary>Obtiene o establece un valor que indica si la salida de una aplicación se escribe en la secuencia de <see cref="P:System.Diagnostics.Process.StandardOutput" />.</summary>
|
||||
<returns>true si la salida se debe escribir en <see cref="P:System.Diagnostics.Process.StandardOutput" />; de lo contrario, es false.De manera predeterminada, es false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding">
|
||||
<summary>Obtiene o establece la codificación preferente para la salida de errores.</summary>
|
||||
<returns>Objeto que representa la codificación preferente para la salida de errores.De manera predeterminada, es null.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding">
|
||||
<summary>Obtiene o establece la codificación preferente para la salida estándar.</summary>
|
||||
<returns>Objeto que representa la codificación preferente para la salida estándar.De manera predeterminada, es null.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.UserName">
|
||||
<summary>Obtiene o establece el nombre de usuario que se va a usar al iniciar el proceso.</summary>
|
||||
<returns>Nombre de usuario que se va a utilizar al iniciarse el proceso.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.UseShellExecute">
|
||||
<summary>Obtiene o establece un valor que indica si se va a usar el shell del sistema operativo para iniciar el proceso.</summary>
|
||||
<returns>true si el shell se debe usar al iniciar el proceso; false si el proceso debería crearse directamente desde el archivo ejecutable.De manera predeterminada, es true.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.WorkingDirectory">
|
||||
<summary>Cuando la propiedad de <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> es false, obtiene o establece el directorio de trabajo para que el proceso se inicie.Cuando <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> es true, obtiene o establece el directorio que contiene el proceso que se iniciará.</summary>
|
||||
<returns>Cuando <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> es true, el nombre completo del directorio que contiene el proceso que se va a iniciar.Cuando la propiedad de <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> es false, el directorio de trabajo para que el proceso se inicie.El valor predeterminado es una cadena vacía ("").</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessThread">
|
||||
<summary>Representa un subproceso del sistema operativo.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.BasePriority">
|
||||
<summary>Obtiene la prioridad base del subproceso.</summary>
|
||||
<returns>Prioridad base del subproceso, calculada por el sistema operativo mediante la combinación de la clase de prioridad del proceso y el nivel de prioridad del subproceso asociado.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.CurrentPriority">
|
||||
<summary>Obtiene la prioridad actual del subproceso.</summary>
|
||||
<returns>Prioridad actual del subproceso, que puede variar respecto a la prioridad base en función de cómo programe el subproceso el sistema operativo.Es posible aumentar temporalmente la prioridad para un subproceso activo.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.Id">
|
||||
<summary>Obtiene el identificador único del subproceso.</summary>
|
||||
<returns>Identificador único asociado a un subproceso específico.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.IdealProcessor">
|
||||
<summary>Establece el procesador preferido para ejecutar este subproceso.</summary>
|
||||
<returns>Procesador preferido para el subproceso, que se utiliza cuando el sistema programa los subprocesos, con el fin de determinar en qué procesador se ejecutará.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">El sistema no pudo establecer el subproceso para que se iniciara en el procesador especificado. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La plataforma es Windows 98 o Windows Millennium. </exception>
|
||||
<exception cref="T:System.NotSupportedException">El proceso está en un equipo remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PriorityBoostEnabled">
|
||||
<summary>Obtiene o establece un valor que indica si el sistema operativo debe aumentar temporalmente la prioridad del subproceso asociado siempre que la ventana principal del proceso del subproceso reciba el foco.</summary>
|
||||
<returns>Es true para aumentar la prioridad del subproceso cuando el usuario interactúe con la interfaz del proceso; de lo contrario, es false.El valor predeterminado es false.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">No se pudo recuperar la información del aumento de prioridad.O bienNo se pudo establecer la información del aumento de prioridad. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La plataforma es Windows 98 o Windows Millennium. </exception>
|
||||
<exception cref="T:System.NotSupportedException">El proceso está en un equipo remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PriorityLevel">
|
||||
<summary>Obtiene o establece el nivel de prioridad del subproceso.</summary>
|
||||
<returns>Uno de los valores de <see cref="T:System.Diagnostics.ThreadPriorityLevel" />, que especifica un intervalo que limita la prioridad del subproceso.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">No se pudo recuperar la información del nivel de prioridad de subproceso. O bienNo se pudo establecer el nivel de prioridad del subproceso.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La plataforma es Windows 98 o Windows Millennium. </exception>
|
||||
<exception cref="T:System.NotSupportedException">El proceso está en un equipo remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime">
|
||||
<summary>Obtiene el tiempo durante el cual el subproceso ha ejecutado código dentro del núcleo del sistema operativo.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.TimeSpan" /> que indica la cantidad de tiempo que el subproceso ha estado ejecutando código dentro del núcleo del sistema operativo.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">No se pudo recuperar el tiempo del subproceso. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La plataforma es Windows 98 o Windows Millennium. </exception>
|
||||
<exception cref="T:System.NotSupportedException">El proceso está en un equipo remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.ProcessorAffinity">
|
||||
<summary>Establece los procesadores en los que puede ejecutarse el subproceso asociado.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.IntPtr" /> que señala a un conjunto de bits, cada uno de los cuales representa a un procesador en el que puede ejecutarse el subproceso.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">No se pudo establecer la afinidad de procesador. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La plataforma es Windows 98 o Windows Millennium. </exception>
|
||||
<exception cref="T:System.NotSupportedException">El proceso está en un equipo remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThread.ResetIdealProcessor">
|
||||
<summary>Restablece el procesador ideal para este subproceso a fin de indicar que no hay un solo procesador ideal.En otras palabras, cualquier procesador es ideal.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">No se pudo restablecer el procesador ideal. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La plataforma es Windows 98 o Windows Millennium. </exception>
|
||||
<exception cref="T:System.NotSupportedException">El proceso está en un equipo remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.StartAddress">
|
||||
<summary>Obtiene la dirección de memoria de la función a la que llamó el sistema operativo para iniciar este subproceso.</summary>
|
||||
<returns>Dirección inicial del subproceso, que señala a la función definida por la aplicación que el subproceso ejecuta.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La plataforma es Windows 98 o Windows Millennium. </exception>
|
||||
<exception cref="T:System.NotSupportedException">El proceso está en un equipo remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.StartTime">
|
||||
<summary>Obtiene la hora a la que el sistema operativo inició el subproceso.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.DateTime" /> que representa la hora que tenía el sistema cuando el sistema operativo inició el subproceso.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">No se pudo recuperar el tiempo del subproceso. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La plataforma es Windows 98 o Windows Millennium. </exception>
|
||||
<exception cref="T:System.NotSupportedException">El proceso está en un equipo remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.ThreadState">
|
||||
<summary>Obtiene el estado actual de este subproceso.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.ThreadState" /> que indica el estado de ejecución del subproceso; por ejemplo, en ejecución, en espera o terminado.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La plataforma es Windows 98 o Windows Millennium. </exception>
|
||||
<exception cref="T:System.NotSupportedException">El proceso está en un equipo remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.TotalProcessorTime">
|
||||
<summary>Obtiene la cantidad total de tiempo que este subproceso ha estado usando el procesador.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.TimeSpan" /> que indica la cantidad de tiempo que el subproceso ha tenido el control del procesador.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">No se pudo recuperar el tiempo del subproceso. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La plataforma es Windows 98 o Windows Millennium. </exception>
|
||||
<exception cref="T:System.NotSupportedException">El proceso está en un equipo remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.UserProcessorTime">
|
||||
<summary>Obtiene el tiempo durante el cual el subproceso asociado ha ejecutado código dentro de la aplicación.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.TimeSpan" /> que indica la cantidad de tiempo que el subproceso ha estado ejecutando código dentro de la aplicación, en lugar de dentro del núcleo del sistema operativo.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">No se pudo recuperar el tiempo del subproceso. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La plataforma es Windows 98 o Windows Millennium. </exception>
|
||||
<exception cref="T:System.NotSupportedException">El proceso está en un equipo remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.WaitReason">
|
||||
<summary>Obtiene la razón por la que el subproceso está esperando.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.ThreadWaitReason" /> que representa la razón por la cual el subproceso se encuentra en estado de espera.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">El subproceso no se encuentra en estado de espera. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La plataforma es Windows 98 o Windows Millennium. </exception>
|
||||
<exception cref="T:System.NotSupportedException">El proceso está en un equipo remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessThreadCollection">
|
||||
<summary>Proporciona una colección de objetos <see cref="T:System.Diagnostics.ProcessThread" /> fuertemente tipados.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.#ctor">
|
||||
<summary>Inicializa una instancia nueva de la clase <see cref="T:System.Diagnostics.ProcessThreadCollection" />, sin instancias de <see cref="T:System.Diagnostics.ProcessThread" /> asociadas.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])">
|
||||
<summary>Inicializa una instancia nueva de la clase <see cref="T:System.Diagnostics.ProcessThreadCollection" /> utilizando la matriz de instancias de <see cref="T:System.Diagnostics.ProcessThread" /> especificada.</summary>
|
||||
<param name="processThreads">Matriz de instancias de <see cref="T:System.Diagnostics.ProcessThread" /> con la que se inicializa esta instancia de <see cref="T:System.Diagnostics.ProcessThreadCollection" />. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)">
|
||||
<summary>Agrega un subproceso del proceso a la colección.</summary>
|
||||
<returns>Índice de base cero del subproceso de la colección.</returns>
|
||||
<param name="thread">Subproceso que se va a agregar a la colección. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)">
|
||||
<summary>Determina si el subproceso de proceso especificado se encuentra en la colección.</summary>
|
||||
<returns>Es true si el subproceso está en la colección; en caso contrario, es false.</returns>
|
||||
<param name="thread">Instancia de <see cref="T:System.Diagnostics.ProcessThread" /> que indica el subproceso que se va a buscar en la colección. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)">
|
||||
<summary>Copia una matriz de instancias de <see cref="T:System.Diagnostics.ProcessThread" /> en la colección, en el índice especificado.</summary>
|
||||
<param name="array">Matriz de instancias de <see cref="T:System.Diagnostics.ProcessThread" /> que se va a agregar a la colección. </param>
|
||||
<param name="index">Ubicación en la que se van a agregar las nuevas instancias. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.Count"></member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.GetEnumerator"></member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)">
|
||||
<summary>Proporciona la ubicación de un subproceso especificado en la colección.</summary>
|
||||
<returns>Índice de base cero que define la ubicación del subproceso en la <see cref="T:System.Diagnostics.ProcessThreadCollection" />.</returns>
|
||||
<param name="thread">
|
||||
<see cref="T:System.Diagnostics.ProcessThread" /> cuyo índice se recupera. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)">
|
||||
<summary>Inserta un subproceso de proceso en la ubicación especificada de la colección.</summary>
|
||||
<param name="index">Índice de base cero que indica la ubicación en la que se va a insertar el subproceso. </param>
|
||||
<param name="thread">Subproceso que se va a insertar en la colección. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)">
|
||||
<summary>Obtiene un índice para recorrer en iteración el conjunto de subprocesos.</summary>
|
||||
<returns>Objeto <see cref="T:System.Diagnostics.ProcessThread" /> que indiza los subprocesos de la colección.</returns>
|
||||
<param name="index">Valor del índice de base cero del subproceso de la colección. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)">
|
||||
<summary>Elimina un subproceso de proceso de la colección.</summary>
|
||||
<param name="thread">Subproceso que se va a quitar de la colección. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"></member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized"></member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot"></member>
|
||||
<member name="T:System.Diagnostics.ThreadPriorityLevel">
|
||||
<summary>Especifica el nivel de prioridad de un subproceso.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.AboveNormal">
|
||||
<summary>Especifica un paso por encima de la prioridad normal para la clase <see cref="T:System.Diagnostics.ProcessPriorityClass" /> asociada.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.BelowNormal">
|
||||
<summary>Especifica un paso por debajo de la prioridad normal para la clase <see cref="T:System.Diagnostics.ProcessPriorityClass" /> asociada.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Highest">
|
||||
<summary>Especifica la prioridad más alta.En otras palabras, dos pasos por encima de la prioridad normal para la clase <see cref="T:System.Diagnostics.ProcessPriorityClass" /> asociada.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Idle">
|
||||
<summary>Especifica la prioridad de inactividad.Éste es el valor de prioridad más bajo posible para todos los subprocesos, independientemente del valor de la clase <see cref="T:System.Diagnostics.ProcessPriorityClass" /> asociada.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Lowest">
|
||||
<summary>Especifica la prioridad más baja.Es decir, dos pasos por debajo de la prioridad normal para la clase <see cref="T:System.Diagnostics.ProcessPriorityClass" /> asociada.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Normal">
|
||||
<summary>Especifica la prioridad normal para la clase <see cref="T:System.Diagnostics.ProcessPriorityClass" /> asociada.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.TimeCritical">
|
||||
<summary>Especifica la prioridad de tiempo crítico.Éste es el valor de prioridad más alto de todos los subprocesos, independientemente del valor de la clase <see cref="T:System.Diagnostics.ProcessPriorityClass" /> asociada.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ThreadState">
|
||||
<summary>Especifica el estado de ejecución actual del subproceso.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Initialized">
|
||||
<summary>Estado que indica que el subproceso se ha inicializado, pero no se ha iniciado todavía.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Ready">
|
||||
<summary>Estado que indica que el subproceso está esperando para usar un procesador porque no hay ninguno libre.El subproceso está preparado para ejecutarse en el primer procesador que quede disponible.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Running">
|
||||
<summary>Estado que indica que el subproceso está usando un procesador actualmente.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Standby">
|
||||
<summary>Estado que indica que el subproceso va a empezar a usar un procesador.En un momento dado, sólo puede haber un subproceso en este estado.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Terminated">
|
||||
<summary>Estado que indica que el subproceso ha finalizado su ejecución y ha terminado.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Transition">
|
||||
<summary>Estado que indica que el subproceso está esperando un recurso, que no es el procesador, para poder ejecutarse.Por ejemplo, puede estar esperando a que la pila de ejecución se pagine desde el disco.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Unknown">
|
||||
<summary>No se conoce el estado del subproceso.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Wait">
|
||||
<summary>Estado que indica que el subproceso no está listo para usar el procesador porque está esperando a que termine una operación periférica o a que quede libre un recurso.Cuando el subproceso esté listo, se volverá a programar.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ThreadWaitReason">
|
||||
<summary>Especifica la razón por la que el subproceso está esperando.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.EventPairHigh">
|
||||
<summary>El subproceso está esperando un par de eventos alto.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.EventPairLow">
|
||||
<summary>El subproceso está esperando un par de eventos bajo.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.ExecutionDelay">
|
||||
<summary>La ejecución del subproceso está retardada.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Executive">
|
||||
<summary>El subproceso está esperando al programador.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.FreePage">
|
||||
<summary>El subproceso está esperando una página de memoria virtual libre.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.LpcReceive">
|
||||
<summary>El subproceso está esperando a que llegue una llamada a procedimiento local.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.LpcReply">
|
||||
<summary>El subproceso está esperando a que llegue la respuesta a una llamada a procedimiento local.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.PageIn">
|
||||
<summary>El subproceso está esperando a que llegue a la memoria una página de memoria virtual.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.PageOut">
|
||||
<summary>El subproceso está esperando a que se escriba en el disco una página de memoria virtual.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Suspended">
|
||||
<summary>La ejecución del subproceso está suspendida.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.SystemAllocation">
|
||||
<summary>El subproceso está esperando la asignación del sistema.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Unknown">
|
||||
<summary>No se conoce la razón por la que el subproceso está esperando.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.UserRequest">
|
||||
<summary>El subproceso está esperando una solicitud del usuario.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.VirtualMemory">
|
||||
<summary>El subproceso está esperando a que el sistema asigne memoria virtual.</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
1001
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/fr/System.Diagnostics.Process.xml
vendored
Normal file
1001
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/fr/System.Diagnostics.Process.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
981
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/it/System.Diagnostics.Process.xml
vendored
Normal file
981
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/it/System.Diagnostics.Process.xml
vendored
Normal file
@@ -0,0 +1,981 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Diagnostics.Process</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Win32.SafeHandles.SafeProcessHandle">
|
||||
<summary>[SecurityCritical] Fornisce un wrapper gestito per un handle di processo.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)">
|
||||
<summary>[SecurityCritical] Inizializza una nuova istanza della classe <see cref="T:Microsoft.Win32.SafeHandles.SafeProcessHandle" /> dall'handle specificato, indicando se rilasciare l'handle durante la fase di finalizzazione. </summary>
|
||||
<param name="existingHandle">Handle di cui eseguire il wrapping.</param>
|
||||
<param name="ownsHandle">trueper consentire in modo affidabile <see cref="T:Microsoft.Win32.SafeHandles.SafeProcessHandle" /> rilasciare l'handle durante la fase di finalizzazione; in caso contrario, false.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid"></member>
|
||||
<member name="T:System.Diagnostics.DataReceivedEventArgs">
|
||||
<summary>Fornisce i dati per gli eventi <see cref="E:System.Diagnostics.Process.OutputDataReceived" /> e <see cref="E:System.Diagnostics.Process.ErrorDataReceived" />.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.DataReceivedEventArgs.Data">
|
||||
<summary>Ottiene la riga di caratteri che è stata scritta in un flusso di output di <see cref="T:System.Diagnostics.Process" /> reindirizzato.</summary>
|
||||
<returns>Riga scritta da un <see cref="T:System.Diagnostics.Process" /> associato al relativo flusso di <see cref="P:System.Diagnostics.Process.StandardOutput" /> o di <see cref="P:System.Diagnostics.Process.StandardError" /> reindirizzato.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.DataReceivedEventHandler">
|
||||
<summary>Rappresenta il metodo che gestirà l'evento <see cref="E:System.Diagnostics.Process.OutputDataReceived" /> o <see cref="E:System.Diagnostics.Process.ErrorDataReceived" /> di un oggetto <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<param name="sender">Origine dell'evento. </param>
|
||||
<param name="e">Oggetto <see cref="T:System.Diagnostics.DataReceivedEventArgs" /> che contiene i dati dell'evento. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.Process">
|
||||
<summary>Fornisce l'accesso ai processi locali e remoti e permette di avviare e arrestare i processi locali del sistema.Per esaminare il codice sorgente di .NET Framework per questo tipo, vedere Origine riferimento.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.#ctor">
|
||||
<summary>Inizializza una nuova istanza della classe <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.BasePriority">
|
||||
<summary>Ottiene la priorità base del processo associato.</summary>
|
||||
<returns>Priorità base, calcolata dalla proprietà <see cref="P:System.Diagnostics.Process.PriorityClass" /> del processo associato.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has exited.-or- The process has not started, so there is no process ID. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.BeginErrorReadLine">
|
||||
<summary>Inizia le operazioni di lettura asincrona sul flusso <see cref="P:System.Diagnostics.Process.StandardError" /> reindirizzato dell'applicazione.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref="P:System.Diagnostics.Process.StandardError" /> stream.- or - The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has been used by a synchronous read operation. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.BeginOutputReadLine">
|
||||
<summary>Inizia le operazioni di lettura asincrona sul flusso <see cref="P:System.Diagnostics.Process.StandardOutput" /> reindirizzato dell'applicazione.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream.- or - The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has been used by a synchronous read operation. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.CancelErrorRead">
|
||||
<summary>Annulla l'operazione di lettura asincrona sul flusso <see cref="P:System.Diagnostics.Process.StandardError" /> reindirizzato di un'applicazione.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardError" /> stream is not enabled for asynchronous read operations. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.CancelOutputRead">
|
||||
<summary>Annulla l'operazione di lettura asincrona sul flusso <see cref="P:System.Diagnostics.Process.StandardOutput" /> reindirizzato di un'applicazione.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream is not enabled for asynchronous read operations. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Dispose"></member>
|
||||
<member name="M:System.Diagnostics.Process.Dispose(System.Boolean)">
|
||||
<summary>Rilascia tutte le risorse usate dal processo.</summary>
|
||||
<param name="disposing">true per rilasciare sia le risorse gestite sia quelle non gestite; false per rilasciare solo le risorse non gestite. </param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.EnableRaisingEvents">
|
||||
<summary>Ottiene o imposta la generazione dell'evento <see cref="E:System.Diagnostics.Process.Exited" /> quando il processo viene terminato.</summary>
|
||||
<returns>true se l'evento <see cref="E:System.Diagnostics.Process.Exited" /> dovrà essere generato quando il processo associato viene terminato (mediante un'uscita o una chiamata al metodo <see cref="M:System.Diagnostics.Process.Kill" />); in caso contrario, false.Il valore predefinito è false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.EnterDebugMode">
|
||||
<summary>Imposta un componente <see cref="T:System.Diagnostics.Process" /> nello stato che gli permette di interagire con i processi del sistema operativo eseguiti in modalità speciale attivando la proprietà nativa SeDebugPrivilege sul thread corrente.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.ErrorDataReceived">
|
||||
<summary>Si verifica quando un'applicazione scrive nel proprio flusso <see cref="P:System.Diagnostics.Process.StandardError" /> reindirizzato.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ExitCode">
|
||||
<summary>Ottiene il valore specificato dal processo associato quando è stato terminato.</summary>
|
||||
<returns>Codice specificato dal processo associato quando è stato terminato.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process has not exited.-or- The process <see cref="P:System.Diagnostics.Process.Handle" /> is not valid. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.ExitCode" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.Exited">
|
||||
<summary>Si verifica al termine di un processo.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ExitTime">
|
||||
<summary>Ottiene l'ora in cui il processo associato è stato terminato.</summary>
|
||||
<returns>Oggetto <see cref="T:System.DateTime" /> che indica il momento in cui il processo associato è stato terminato.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.ExitTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetCurrentProcess">
|
||||
<summary>Ottiene un nuovo componente <see cref="T:System.Diagnostics.Process" /> e lo associa al processo attivo.</summary>
|
||||
<returns>Nuovo componente <see cref="T:System.Diagnostics.Process" /> associato alla risorsa di processo che sta eseguendo l'applicazione chiamante.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessById(System.Int32)">
|
||||
<summary>Restituisce un nuovo componente <see cref="T:System.Diagnostics.Process" />, dato l'identificatore di un processo nel computer locale.</summary>
|
||||
<returns>Componente <see cref="T:System.Diagnostics.Process" /> associato alla risorsa locale del processo identificata dal parametro <paramref name="processId" />.</returns>
|
||||
<param name="processId">Identificatore univoco nel sistema di una risorsa di processo. </param>
|
||||
<exception cref="T:System.ArgumentException">The process specified by the <paramref name="processId" /> parameter is not running.The identifier might be expired.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process was not started by this object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)">
|
||||
<summary>Restituisce un nuovo componente <see cref="T:System.Diagnostics.Process" />, dato un identificatore di processo e il nome di un computer sulla rete.</summary>
|
||||
<returns>Componente <see cref="T:System.Diagnostics.Process" /> associato a una risorsa di processo remota identificata dal parametro <paramref name="processId" />.</returns>
|
||||
<param name="processId">Identificatore univoco nel sistema di una risorsa di processo. </param>
|
||||
<param name="machineName">Nome di un computer della rete. </param>
|
||||
<exception cref="T:System.ArgumentException">The process specified by the <paramref name="processId" /> parameter is not running.The identifier might be expired.-or- The <paramref name="machineName" /> parameter syntax is invalid.The name might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process was not started by this object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcesses">
|
||||
<summary>Crea un nuovo componente <see cref="T:System.Diagnostics.Process" /> per ciascuna risorsa di processo del computer locale.</summary>
|
||||
<returns>Matrice di tipo <see cref="T:System.Diagnostics.Process" /> che rappresenta tutte le risorse di processo in esecuzione sul computer locale.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcesses(System.String)">
|
||||
<summary>Crea un nuovo componente <see cref="T:System.Diagnostics.Process" /> per ciascuna risorsa di processo nel computer specificato.</summary>
|
||||
<returns>Matrice di tipo <see cref="T:System.Diagnostics.Process" /> che rappresenta tutte le risorse di processo in esecuzione sul computer specificato.</returns>
|
||||
<param name="machineName">Computer da cui leggere l'elenco di processi. </param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="machineName" /> parameter syntax is invalid.It might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The operating system platform does not support this operation on remote computers. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A problem occurred accessing an underlying system API. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessesByName(System.String)">
|
||||
<summary>Crea una matrice di nuovi componenti <see cref="T:System.Diagnostics.Process" /> e li associa a tutte le risorse di processo nel computer locale che condividono il nome di processo specificato.</summary>
|
||||
<returns>Una matrice di tipo <see cref="T:System.Diagnostics.Process" /> che rappresenta le risorse di processo che eseguono l'applicazione o il file specificati.</returns>
|
||||
<param name="processName">Nome descrittivo del processo. </param>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)">
|
||||
<summary>Crea una matrice di nuovi componenti <see cref="T:System.Diagnostics.Process" /> e li associa a tutte le risorse di processo in un computer remoto che condividono il nome di processo specificato.</summary>
|
||||
<returns>Una matrice di tipo <see cref="T:System.Diagnostics.Process" /> che rappresenta le risorse di processo che eseguono l'applicazione o il file specificati.</returns>
|
||||
<param name="processName">Nome descrittivo del processo. </param>
|
||||
<param name="machineName">Nome di un computer della rete. </param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="machineName" /> parameter syntax is invalid.It might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The operating system platform does not support this operation on remote computers. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A problem occurred accessing an underlying system API. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.HasExited">
|
||||
<summary>Ottiene un valore che indica se il processo associato è stato terminato.</summary>
|
||||
<returns>true se il processo del sistema operativo cui fa riferimento il componente <see cref="T:System.Diagnostics.Process" /> è stato terminato; in caso contrario, false.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with the object. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The exit code for the process could not be retrieved. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.HasExited" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Id">
|
||||
<summary>Ottiene l'identificatore univoco per il processo associato.</summary>
|
||||
<returns>Identificatore univoco generato dal sistema relativo al processo cui questa istanza di <see cref="T:System.Diagnostics.Process" /> fa riferimento.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process's <see cref="P:System.Diagnostics.Process.Id" /> property has not been set.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Kill">
|
||||
<summary>Arresta immediatamente il processo associato.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to call <see cref="M:System.Diagnostics.Process.Kill" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has already exited. -or-There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.LeaveDebugMode">
|
||||
<summary>Fa uscire un componente <see cref="T:System.Diagnostics.Process" /> dallo stato che permette di interagire con i processi del sistema operativo eseguiti in modalità speciale.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MachineName">
|
||||
<summary>Ottiene il nome del computer sul quale è in esecuzione il processo associato.</summary>
|
||||
<returns>Nome del computer sul quale è in esecuzione il processo associato.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MainModule">
|
||||
<summary>Ottiene il modulo principale del processo associato.</summary>
|
||||
<returns>Oggetto <see cref="T:System.Diagnostics.ProcessModule" /> usato per avviare il processo.</returns>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MainModule" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A 32-bit process is trying to access the modules of a 64-bit process.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MaxWorkingSet">
|
||||
<summary>Ottiene o imposta la dimensione massima del working set consentita per il processo associato.</summary>
|
||||
<returns>Dimensione massima del working set consentita in memoria per il processo, in byte.</returns>
|
||||
<exception cref="T:System.ArgumentException">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MaxWorkingSet" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MinWorkingSet">
|
||||
<summary>Ottiene o imposta la dimensione minima del working set consentita per il processo associato.</summary>
|
||||
<returns>Dimensione minima del working set richiesta in memoria per il processo, in byte.</returns>
|
||||
<exception cref="T:System.ArgumentException">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MinWorkingSet" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Modules">
|
||||
<summary>Ottiene i moduli che sono stati caricati dal processo associato.</summary>
|
||||
<returns>Matrice di tipo <see cref="T:System.Diagnostics.ProcessModule" /> che rappresenta i moduli caricati dal processo associato.</returns>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.Modules" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">You are attempting to access the <see cref="P:System.Diagnostics.Process.Modules" /> property for either the system process or the idle process.These processes do not have modules.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.NonpagedSystemMemorySize64">
|
||||
<summary>Ottiene la quantità di memoria di sistema non di paging allocata per il processo associato.</summary>
|
||||
<returns>Quantità di memoria di sistema, in byte, allocata per il processo associato che non può essere scritta nel file di paging della memoria virtuale.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.OnExited">
|
||||
<summary>Genera l'evento <see cref="E:System.Diagnostics.Process.Exited" />.</summary>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.OutputDataReceived">
|
||||
<summary>Si verifica quando un'applicazione scrive nel proprio flusso <see cref="P:System.Diagnostics.Process.StandardOutput" /> reindirizzato.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PagedMemorySize64">
|
||||
<summary>Ottiene la quantità di memoria di paging allocata per il processo associato.</summary>
|
||||
<returns>Quantità di memoria, in byte, allocata nel file di paging della memoria virtuale per il processo associato.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PagedSystemMemorySize64">
|
||||
<summary>Ottiene la quantità di memoria di sistema paginabile allocata per il processo associato.</summary>
|
||||
<returns>Quantità di memoria di sistema, in byte, allocata per il processo associato che può essere scritta nel file di paging della memoria virtuale.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakPagedMemorySize64">
|
||||
<summary>Ottiene la quantità massima di memoria nel file di paging della memoria virtuale usata dal processo associato.</summary>
|
||||
<returns>Quantità massima di memoria, in byte, allocata nel file di paging della memoria virtuale per il processo associato da quando è stato avviato.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakVirtualMemorySize64">
|
||||
<summary>Ottiene la quantità massima di memoria virtuale usata dal processo associato.</summary>
|
||||
<returns>Quantità massima di memoria virtuale, in byte, allocata per il processo associato da quando è stato avviato.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakWorkingSet64">
|
||||
<summary>Ottiene la quantità massima di memoria fisica usata dal processo associato.</summary>
|
||||
<returns>Quantità massima di memoria fisica, in byte, allocata per il processo associato da quando è stato avviato.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PriorityBoostEnabled">
|
||||
<summary>Ottiene o imposta un valore che indica se la priorità del processo associato deve essere incrementata temporaneamente dal sistema operativo quando la finestra principale è attiva.</summary>
|
||||
<returns>true se va eseguito l'incremento dinamico della priorità del processo uscito dallo stato di attesa; in caso contrario, false.Il valore predefinito è false.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Priority boost information could not be retrieved from the associated process resource. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PriorityBoostEnabled" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PriorityClass">
|
||||
<summary>Ottiene o imposta la categoria di priorità globale per il processo associato.</summary>
|
||||
<returns>Categoria di priorità del processo associato, dalla quale viene calcolata la proprietà <see cref="P:System.Diagnostics.Process.BasePriority" /> del processo.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PriorityClass" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">You have set the <see cref="P:System.Diagnostics.Process.PriorityClass" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>
|
||||
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">Priority class cannot be set because it does not use a valid value, as defined in the <see cref="T:System.Diagnostics.ProcessPriorityClass" /> enumeration.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PrivateMemorySize64">
|
||||
<summary>Ottiene la quantità di memoria privata allocata per il processo associato.</summary>
|
||||
<returns>Quantità di memoria, in byte, allocata per il processo associato che non può essere condivisa con altri processi.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PrivilegedProcessorTime">
|
||||
<summary>Ottiene il tempo privilegiato del processore per questo processo.</summary>
|
||||
<returns>Valore <see cref="T:System.TimeSpan" /> che indica la quantità di tempo impiegato dal processore nell'eseguire il codice all'interno del nucleo centrale del sistema operativo.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PrivilegedProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ProcessName">
|
||||
<summary>Ottiene il nome del processo.</summary>
|
||||
<returns>Nome usato dal sistema per identificare il processo rispetto all'utente.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process does not have an identifier, or no process is associated with the <see cref="T:System.Diagnostics.Process" />.-or- The associated process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is not on this computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ProcessorAffinity">
|
||||
<summary>Ottiene o imposta i processori nei quali è pianificata l'esecuzione dei thread di questo processo.</summary>
|
||||
<returns>Maschera di bit che rappresenta i processori con cui è possibile eseguire i thread del processo associato.Il valore predefinito dipende dal numero di processori presenti nel computer.Il valore predefinito è 2 n -1, dove n è il numero di processori.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<see cref="P:System.Diagnostics.Process.ProcessorAffinity" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.ProcessorAffinity" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> was not available.-or- The process has exited. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Refresh">
|
||||
<summary>Elimina le informazioni relative al processo associato memorizzate nella cache all'interno del componente del processo.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.SafeHandle">
|
||||
<summary>Ottiene l'handle nativo di questo processo.</summary>
|
||||
<returns>Handle nativo di questo processo.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.SessionId">
|
||||
<summary>Ottiene l'identificatore della sessione di Servizi terminal per il processo associato.</summary>
|
||||
<returns>Identificatore della sessione di Servizi terminal per il processo associato.</returns>
|
||||
<exception cref="T:System.NullReferenceException">There is no session associated with this process.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The <see cref="P:System.Diagnostics.Process.SessionId" /> property is not supported on Windows 98.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardError">
|
||||
<summary>Ottiene un flusso usato per leggere l'output di errore dell'applicazione.</summary>
|
||||
<returns>Oggetto <see cref="T:System.IO.StreamReader" /> che può essere usato per leggere il flusso di errore standard dell'applicazione.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has not been defined for redirection; ensure <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> is set to true and <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is set to false.- or - The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has been opened for asynchronous read operations with <see cref="M:System.Diagnostics.Process.BeginErrorReadLine" />. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardInput">
|
||||
<summary>Ottiene un flusso usato per scrivere l'input dell'applicazione.</summary>
|
||||
<returns>Oggetto <see cref="T:System.IO.StreamWriter" /> che può essere usato per scrivere il flusso di input standard dell'applicazione.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardInput" /> stream has not been defined because <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" /> is set to false. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardOutput">
|
||||
<summary>Ottiene un flusso usato per leggere l'output dell'applicazione.</summary>
|
||||
<returns>Oggetto <see cref="T:System.IO.StreamReader" /> che può essere usato per leggere il flusso di output standard dell'applicazione.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has not been defined for redirection; ensure <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" /> is set to true and <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is set to false.- or - The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has been opened for asynchronous read operations with <see cref="M:System.Diagnostics.Process.BeginOutputReadLine" />. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start">
|
||||
<summary>Avvia (o riutilizza) la risorsa di processo specificata dalla proprietà <see cref="P:System.Diagnostics.Process.StartInfo" /> di questo componente <see cref="T:System.Diagnostics.Process" /> e la associa al componente.</summary>
|
||||
<returns>true se viene avviata una risorsa di processo, false se non viene avviata alcuna risorsa di processo nuova (ad esempio, se è stato riutilizzato un processo esistente).</returns>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified in the <see cref="T:System.Diagnostics.Process" /> component's <see cref="P:System.Diagnostics.Process.StartInfo" />.-or- The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> member of the <see cref="P:System.Diagnostics.Process.StartInfo" /> property is true while <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" />, <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" />, or <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> is true. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">There was an error in opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)">
|
||||
<summary>Avvia la risorsa di processo specificata dal parametro contenente le informazioni di avvio del processo (ad esempio, il nome file del processo da avviare) e associa la risorsa a un nuovo componente <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Nuovo <see cref="T:System.Diagnostics.Process" /> associato alla risorsa di processo o null se non viene avviata alcuna risorsa di processo.Si noti che un nuovo processo avviato parallelamente a istanze dello stesso processo già in esecuzione sarà indipendente dalle altre.Inoltre, l'avvio può restituire un processo non Null con la relativa proprietà <see cref="T:System.Diagnostics.ProcessHasExited" /> già impostata su true.In questo caso, è possibile che il processo avviato abbia attivato un'istanza esistente di se stesso e quindi sia terminato.</returns>
|
||||
<param name="startInfo">Oggetto <see cref="T:System.Diagnostics.ProcessStartInfo" /> che contiene le informazioni usate per avviare il processo, tra cui il nome file e gli eventuali argomenti della riga di comando. </param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified in the <paramref name="startInfo" /> parameter's <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property.-or- The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property of the <paramref name="startInfo" /> parameter is true and the <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" />, <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" />, or <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> property is also true.-or-The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property of the <paramref name="startInfo" /> parameter is true and the <see cref="P:System.Diagnostics.ProcessStartInfo.UserName" /> property is not null or empty or the <see cref="P:System.Diagnostics.ProcessStartInfo.Password" /> property is not null.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="startInfo" /> parameter is null. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The file specified in the <paramref name="startInfo" /> parameter's <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property could not be found.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String)">
|
||||
<summary>Avvia una risorsa di processo specificando il nome di un documento o un file di applicazione e associa la risorsa a un nuovo componente <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Nuovo <see cref="T:System.Diagnostics.Process" /> associato alla risorsa di processo o null se non viene avviata alcuna risorsa di processo.Si noti che un nuovo processo avviato parallelamente a istanze dello stesso processo già in esecuzione sarà indipendente dalle altre.Inoltre, l'avvio può restituire un processo non Null con la relativa proprietà <see cref="T:System.Diagnostics.ProcessHasExited" /> già impostata su true.In questo caso, è possibile che il processo avviato abbia attivato un'istanza esistente di se stesso e quindi sia terminato.</returns>
|
||||
<param name="fileName">Nome di un documento o di un file di applicazione da eseguire nel processo. </param>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The PATH environment variable has a string containing quotes.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String)">
|
||||
<summary>Avvia una risorsa di processo specificando il nome di un'applicazione e un insieme di argomenti della riga di comando e associa la risorsa a un nuovo componente <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Nuovo <see cref="T:System.Diagnostics.Process" /> associato alla risorsa di processo o null se non viene avviata alcuna risorsa di processo.Si noti che un nuovo processo avviato parallelamente a istanze dello stesso processo già in esecuzione sarà indipendente dalle altre.Inoltre, l'avvio può restituire un processo non Null con la relativa proprietà <see cref="T:System.Diagnostics.ProcessHasExited" /> già impostata su true.In questo caso, è possibile che il processo avviato abbia attivato un'istanza esistente di se stesso e quindi sia terminato.</returns>
|
||||
<param name="fileName">Nome di un file di applicazione da eseguire nel processo. </param>
|
||||
<param name="arguments">Argomenti della riga di comando da passare all'avvio del processo. </param>
|
||||
<exception cref="T:System.InvalidOperationException">The <paramref name="fileName" /> or <paramref name="arguments" /> parameter is null. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The PATH environment variable has a string containing quotes.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)">
|
||||
<summary>Avvia una risorsa di processo specificando il nome di un'applicazione, un nome utente, una password e un dominio e associa la risorsa a un nuovo componente <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Nuovo <see cref="T:System.Diagnostics.Process" /> associato alla risorsa di processo o null se non viene avviata alcuna risorsa di processo.Si noti che un nuovo processo avviato parallelamente a istanze dello stesso processo già in esecuzione sarà indipendente dalle altre.Inoltre, l'avvio può restituire un processo non Null con la relativa proprietà <see cref="T:System.Diagnostics.ProcessHasExited" /> già impostata su true.In questo caso, è possibile che il processo avviato abbia attivato un'istanza esistente di se stesso e quindi sia terminato.</returns>
|
||||
<param name="fileName">Nome di un file di applicazione da eseguire nel processo.</param>
|
||||
<param name="userName">Nome utente da usare all'avvio del processo.</param>
|
||||
<param name="password">Classe <see cref="T:System.Security.SecureString" /> contenente la password da usare all'avvio del processo.</param>
|
||||
<param name="domain">Dominio da usare all'avvio del processo.</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<paramref name="fileName" /> is not an executable (.exe) file.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">There was an error in opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)">
|
||||
<summary>Avvia una risorsa di processo specificando il nome di un'applicazione e un insieme di argomenti della riga di comando, un nome utente, una password e un dominio, e associa la risorsa a un nuovo componente <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Nuovo <see cref="T:System.Diagnostics.Process" /> associato alla risorsa di processo o null se non viene avviata alcuna risorsa di processo.Si noti che un nuovo processo avviato parallelamente a istanze dello stesso processo già in esecuzione sarà indipendente dalle altre.Inoltre, l'avvio può restituire un processo non Null con la relativa proprietà <see cref="T:System.Diagnostics.ProcessHasExited" /> già impostata su true.In questo caso, è possibile che il processo avviato abbia attivato un'istanza esistente di se stesso e quindi sia terminato.</returns>
|
||||
<param name="fileName">Nome di un file di applicazione da eseguire nel processo. </param>
|
||||
<param name="arguments">Argomenti della riga di comando da passare all'avvio del processo. </param>
|
||||
<param name="userName">Nome utente da usare all'avvio del processo.</param>
|
||||
<param name="password">Classe <see cref="T:System.Security.SecureString" /> contenente la password da usare all'avvio del processo.</param>
|
||||
<param name="domain">Dominio da usare all'avvio del processo.</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<paramref name="fileName" /> is not an executable (.exe) file.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StartInfo">
|
||||
<summary>Ottiene o imposta le proprietà da passare al metodo <see cref="M:System.Diagnostics.Process.Start" /> del componente <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Oggetto <see cref="T:System.Diagnostics.ProcessStartInfo" /> che rappresenta i dati con i quali avviare il processo.Tra gli argomenti sono compresi il nome del file eseguibile o il documento usato per avviare il processo.</returns>
|
||||
<exception cref="T:System.ArgumentNullException">The value that specifies the <see cref="P:System.Diagnostics.Process.StartInfo" /> is null. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StartTime">
|
||||
<summary>Ottiene l'ora in cui è stato avviato il processo associato.</summary>
|
||||
<returns>Oggetto che indica il momento in cui è stato avviato il processo.Viene generata un eccezione se il processo non è in esecuzione.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.StartTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has exited.-or-The process has not been started.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred in the call to the Windows function.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Threads">
|
||||
<summary>Ottiene il gruppo di thread in esecuzione nel processo associato.</summary>
|
||||
<returns>Matrice di tipo <see cref="T:System.Diagnostics.ProcessThread" /> che rappresenta i thread del sistema operativo attualmente in esecuzione nel processo associato.</returns>
|
||||
<exception cref="T:System.SystemException">The process does not have an <see cref="P:System.Diagnostics.Process.Id" />, or no process is associated with the <see cref="T:System.Diagnostics.Process" /> instance.-or- The associated process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.TotalProcessorTime">
|
||||
<summary>Ottiene il tempo totale del processore per questo processo.</summary>
|
||||
<returns>Valore <see cref="T:System.TimeSpan" /> che indica la quantità di tempo impiegato dal processo associato nell'utilizzo della CPU.Questo valore è la somma delle proprietà <see cref="P:System.Diagnostics.Process.UserProcessorTime" /> e <see cref="P:System.Diagnostics.Process.PrivilegedProcessorTime" />.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.TotalProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.UserProcessorTime">
|
||||
<summary>Ottiene il tempo utente del processore per questo processo.</summary>
|
||||
<returns>Valore <see cref="T:System.TimeSpan" /> che indica la quantità di tempo impiegato dal processo associato nell'esecuzione del codice all'interno della parte di applicazione del processo (non all'interno del nucleo centrale del sistema operativo).</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.UserProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.VirtualMemorySize64">
|
||||
<summary>Ottiene la quantità di memoria virtuale allocata per il processo associato.</summary>
|
||||
<returns>Quantità di memoria virtuale, in byte, allocata per il processo associato.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.WaitForExit">
|
||||
<summary>Indica al componente <see cref="T:System.Diagnostics.Process" /> di attendere in modo indefinito la terminazione del processo associato.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The wait setting could not be accessed. </exception>
|
||||
<exception cref="T:System.SystemException">No process <see cref="P:System.Diagnostics.Process.Id" /> has been set, and a <see cref="P:System.Diagnostics.Process.Handle" /> from which the <see cref="P:System.Diagnostics.Process.Id" /> property can be determined does not exist.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.-or- You are attempting to call <see cref="M:System.Diagnostics.Process.WaitForExit" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.WaitForExit(System.Int32)">
|
||||
<summary>Indica al componente <see cref="T:System.Diagnostics.Process" /> di attendere per il numero specificato di millisecondi che il processo venga terminato.</summary>
|
||||
<returns>true se il processo associato è stato terminato; in caso contrario, false.</returns>
|
||||
<param name="milliseconds">Quantità di tempo, espressa in millisecondi, in base alla quale viene attesa la terminazione del processo associato.Il valore massimo è il valore Integer a 32 bit più alto possibile, che rappresenta l'infinito per il sistema operativo.</param>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The wait setting could not be accessed. </exception>
|
||||
<exception cref="T:System.SystemException">No process <see cref="P:System.Diagnostics.Process.Id" /> has been set, and a <see cref="P:System.Diagnostics.Process.Handle" /> from which the <see cref="P:System.Diagnostics.Process.Id" /> property can be determined does not exist.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.-or- You are attempting to call <see cref="M:System.Diagnostics.Process.WaitForExit(System.Int32)" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.WorkingSet64">
|
||||
<summary>Ottiene la quantità di memoria fisica allocata per il processo associato.</summary>
|
||||
<returns>Quantità di memoria fisica, in byte, allocata per il processo associato.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessModule">
|
||||
<summary>Rappresenta un file DLL o EXE caricato in un particolare processo.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.BaseAddress">
|
||||
<summary>Ottiene l'indirizzo di memoria in cui è stato caricato il modulo.</summary>
|
||||
<returns>L'indirizzo di caricamento del modulo.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.EntryPointAddress">
|
||||
<summary>Ottiene l'indirizzo di memoria della funzione eseguita quando il sistema carica ed esegue il modulo.</summary>
|
||||
<returns>Il punto di ingresso del modulo.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.FileName">
|
||||
<summary>Ottiene il percorso completo del modulo.</summary>
|
||||
<returns>Il percorso completo che definisce la posizione del modulo.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.ModuleMemorySize">
|
||||
<summary>Ottiene la quantità di memoria richiesta per caricare il modulo.</summary>
|
||||
<returns>La dimensione in byte della memoria occupata dal modulo.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.ModuleName">
|
||||
<summary>Ottiene il nome del modulo del processo.</summary>
|
||||
<returns>Nome del modulo.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModule.ToString">
|
||||
<summary>Converte il nome del modulo in una stringa.</summary>
|
||||
<returns>Valore della proprietà <see cref="P:System.Diagnostics.ProcessModule.ModuleName" />.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessModuleCollection">
|
||||
<summary>Fornisce un insieme fortemente tipizzato di oggetti <see cref="T:System.Diagnostics.ProcessModule" />.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.#ctor">
|
||||
<summary>Consente di inizializzare una nuova istanza della classe <see cref="T:System.Diagnostics.ProcessModuleCollection" />, senza istanze di <see cref="T:System.Diagnostics.ProcessModule" /> associate.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])">
|
||||
<summary>Consente di inizializzare una nuova istanza della classe <see cref="T:System.Diagnostics.ProcessModuleCollection" /> utilizzando la matrice specificata di istanze <see cref="T:System.Diagnostics.ProcessModule" />.</summary>
|
||||
<param name="processModules">Matrice di istanze di <see cref="T:System.Diagnostics.ProcessModule" /> con la quale inizializzare questa istanza <see cref="T:System.Diagnostics.ProcessModuleCollection" /> . </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)">
|
||||
<summary>Determina se il modulo di processo specificato è contenuto nell'insieme.</summary>
|
||||
<returns>Restituisce true se il modulo è presente nell'insieme; in caso contrario, false.</returns>
|
||||
<param name="module">Istanza <see cref="T:System.Diagnostics.ProcessModule" /> che indica il modulo da trovare in questo insieme. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)">
|
||||
<summary>Copia una matrice di istanze <see cref="T:System.Diagnostics.ProcessModule" /> nell'insieme, in corrispondenza dell'indice specificato.</summary>
|
||||
<param name="array">Matrice di istanze <see cref="T:System.Diagnostics.ProcessModule" /> da aggiungere all'insieme. </param>
|
||||
<param name="index">Posizione in cui aggiungere le nuove istanze. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.Count"></member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.GetEnumerator"></member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)">
|
||||
<summary>Fornisce la posizione di un modulo specificato nell'insieme.</summary>
|
||||
<returns>Indice a base zero che definisce la posizione del modulo in <see cref="T:System.Diagnostics.ProcessModuleCollection" />.</returns>
|
||||
<param name="module">
|
||||
<see cref="T:System.Diagnostics.ProcessModule" /> il cui indice viene richiamato. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)">
|
||||
<summary>Ottiene un indice per scorrere l'insieme di moduli di processo.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.ProcessModule" /> che indicizza i moduli nell'insieme. </returns>
|
||||
<param name="index">Valore di indice a base zero del modulo dell'insieme. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"></member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized"></member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot"></member>
|
||||
<member name="T:System.Diagnostics.ProcessPriorityClass">
|
||||
<summary>Indica la priorità che il sistema associa a un processo.Questo valore, insieme al valore di priorità di ciascun thread del processo, determina il livello di priorità base di ogni thread.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.AboveNormal">
|
||||
<summary>Specifica che il processo ha una priorità superiore a Normal ma inferiore a <see cref="F:System.Diagnostics.ProcessPriorityClass.High" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.BelowNormal">
|
||||
<summary>Specifica che il processo ha una priorità superiore a Idle ma inferiore a Normal.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.High">
|
||||
<summary>Specifica che il processo svolge attività critiche a livello temporale che richiedono un'immediata esecuzione, come ad esempio la finestra di dialogo Task List, la quale deve essere aperta velocemente in risposta a una chiamata dell'utente, a prescindere dal carico sul sistema operativo.I thread del processo hanno la precedenza sui thread dei processi con classe di priorità normal o idle.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.Idle">
|
||||
<summary>Specifica che i thread di questo processo vengono eseguiti soltanto quando il sistema è inattivo, ad esempio quando è in funzione uno screen saver.I thread del processo hanno la precedenza sui thread di qualsiasi processo con una classe di priorità superiore.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.Normal">
|
||||
<summary>Specifica che il processo non ha particolari esigenze di pianificazione.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.RealTime">
|
||||
<summary>Specifica che la priorità del processo è la più alta possibile.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessStartInfo">
|
||||
<summary>Specifica un insieme di valori usati all'avvio di un processo.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor">
|
||||
<summary>Inizializza una nuova istanza della classe <see cref="T:System.Diagnostics.ProcessStartInfo" /> senza specificare un nome file con il quale avviare il processo.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)">
|
||||
<summary>Inizializza una nuova istanza della classe <see cref="T:System.Diagnostics.ProcessStartInfo" /> e specifica un nome file, ad esempio un'applicazione o un documento, con il quale avviare il processo.</summary>
|
||||
<param name="fileName">Un'applicazione o un documento con il quale avviare un processo. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)">
|
||||
<summary>Inizializza una nuova istanza della classe <see cref="T:System.Diagnostics.ProcessStartInfo" />, specifica il nome file di un'applicazione con cui avviare il processo e determina un insieme di argomenti della riga di comando da passare all'applicazione.</summary>
|
||||
<param name="fileName">Un'applicazione con la quale avviare un processo. </param>
|
||||
<param name="arguments">Argomenti della riga di comando da passare all'applicazione all'avvio del processo. </param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Arguments">
|
||||
<summary>Ottiene o imposta l'insieme di argomenti della riga di comando da usare all'avvio dell'applicazione.</summary>
|
||||
<returns>Una singola stringa contenente gli argomenti da passare all'applicazione di destinazione specificata nella proprietà <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" />.Il valore predefinito è una stringa vuota ("").In Windows Vista e nelle versioni precedenti del sistema operativo Windows, la lunghezza degli argomenti aggiunta alla lunghezza del percorso completo del processo deve essere minore di 2080.In Windows 7 e versioni successive la lunghezza deve essere minore di 32699.Gli argomenti vengono analizzati e interpretati dall'applicazione di destinazione, pertanto devono essere allineati con le aspettative dell'applicazione.Per le applicazioni .NET, come illustrato negli esempi seguenti, gli spazi vengono interpretati come un separatore tra più argomenti.Un singolo argomento che include spazi deve essere racchiuso tra virgolette, ma tali virgolette non vengono riportate nell'applicazione di destinazione.Nelle virgolette incluse nell'argomento analizzato finale, aggiungere tre caratteri di escape a ogni virgoletta.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.CreateNoWindow">
|
||||
<summary>Ottiene o imposta un valore che indica se avviare il processo in una nuova finestra.</summary>
|
||||
<returns>true se il processo deve essere avviato senza creare una nuova finestra; in caso contrario, false.Il valore predefinito è false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Domain">
|
||||
<summary>Ottiene o imposta un valore che identifica il dominio da usare all'avvio del processo. </summary>
|
||||
<returns>Il dominio di Active Directory da usare all'avvio del processo.La proprietà del dominio interessa principalmente gli utenti in ambienti aziendali che usano Active Directory.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Environment"></member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.FileName">
|
||||
<summary>Ottiene o imposta l'applicazione o il documento da avviare.</summary>
|
||||
<returns>Il nome dell'applicazione da avviare oppure il nome di un documento di un tipo di file associato a un'applicazione con un'azione Open predefinita.Il valore predefinito è una stringa vuota ("").</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.LoadUserProfile">
|
||||
<summary>Ottiene o imposta un valore che indica se deve essere caricato il profilo utente di Windows dal Registro di sistema. </summary>
|
||||
<returns>true se il profilo utente Windows deve essere caricato; in caso contrario, false.Il valore predefinito è false.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Password">
|
||||
<summary>Ottiene o imposta una stringa sicura che contiene la password utente da usare all'avvio del processo.</summary>
|
||||
<returns>La password utente da usare all'avvio del processo.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError">
|
||||
<summary>Ottiene o imposta un valore che indica se l'output di errore di un'applicazione viene scritto nel flusso <see cref="P:System.Diagnostics.Process.StandardError" />.</summary>
|
||||
<returns>true se l'output di errore deve essere scritto in <see cref="P:System.Diagnostics.Process.StandardError" />; in caso contrario, false.Il valore predefinito è false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput">
|
||||
<summary>Ottiene o imposta un valore che indica se l'input per un'applicazione viene letto dal flusso <see cref="P:System.Diagnostics.Process.StandardInput" />.</summary>
|
||||
<returns>true se l'input deve essere letto da <see cref="P:System.Diagnostics.Process.StandardInput" />; in caso contrario, false.Il valore predefinito è false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput">
|
||||
<summary>Ottiene o imposta un valore che indica se l'output testuale di un'applicazione viene scritto nel flusso <see cref="P:System.Diagnostics.Process.StandardOutput" />.</summary>
|
||||
<returns>true se l'output deve essere scritto in <see cref="P:System.Diagnostics.Process.StandardOutput" />; in caso contrario, false.Il valore predefinito è false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding">
|
||||
<summary>Ottiene o imposta la codifica preferita per l'output di errore.</summary>
|
||||
<returns>Oggetto che rappresenta la codifica preferita per l'output di errore.Il valore predefinito è null.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding">
|
||||
<summary>Ottiene o imposta la codifica preferita per l'output standard.</summary>
|
||||
<returns>Oggetto che rappresenta la codifica preferita per l'output standard.Il valore predefinito è null.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.UserName">
|
||||
<summary>Ottiene o imposta il nome utente da usare all'avvio del processo.</summary>
|
||||
<returns>Nome utente da usare all'avvio del processo.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.UseShellExecute">
|
||||
<summary>Ottiene o imposta un valore che indica se usare la shell del sistema operativo per avviare il processo.</summary>
|
||||
<returns>true se la shell deve essere usata all'avvio del processo; false se il processo deve essere creato direttamente dal file eseguibile.Il valore predefinito è true.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.WorkingDirectory">
|
||||
<summary>Quando la proprietà <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> è false, ottiene o imposta la directory di lavoro per il processo da avviare.Quando la proprietà <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> è true, ottiene o imposta la directory che contiene il processo da avviare.</summary>
|
||||
<returns>Quando <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> è true, il nome completo della directory contenente il processo da avviare.Quando la proprietà <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> è false, la directory di lavoro per il processo da avviare.Il valore predefinito è una stringa vuota ("").</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessThread">
|
||||
<summary>Rappresenta un thread di processo del sistema operativo.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.BasePriority">
|
||||
<summary>Ottiene la priorità base del thread.</summary>
|
||||
<returns>La priorità base del thread, calcolata dal sistema operativo combinando la classe di priorità del processo con il livello di priorità del thread associato.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.CurrentPriority">
|
||||
<summary>Ottiene la priorità corrente del thread.</summary>
|
||||
<returns>La priorità corrente del thread, che potrebbe essere diversa da quella di base a seconda del modo in cui il sistema operativo pianifica il thread.La priorità può essere temporaneamente aumentata per un thread attivo.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.Id">
|
||||
<summary>Ottiene l'identificatore univoco del thread.</summary>
|
||||
<returns>L'identificatore univoco associato a uno specifico thread.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.IdealProcessor">
|
||||
<summary>Imposta il processore preferenziale su cui eseguire questo thread.</summary>
|
||||
<returns>Il processore preferenziale del thread, utilizzato quando il sistema pianifica i thread, per determinare il processore su cui eseguirlo.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Il sistema non è stato in grado di impostare l'avvio del thread sul processore specificato. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Il processo è eseguito su un computer remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PriorityBoostEnabled">
|
||||
<summary>Ottiene o imposta un valore che indica se il sistema operativo deve incrementare temporaneamente la priorità del thread associato ogni volta che la finestra principale del processo del thread diventa attiva.</summary>
|
||||
<returns>true per incrementare la priorità del thread quando l'utente interagisce con l'interfaccia del processo; in caso contrario, false .Il valore predefinito è false.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Non è possibile recuperare le informazioni sull'incremento di priorità.- oppure -Non è possibile impostare le informazioni sull'incremento di priorità. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Il processo è eseguito su un computer remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PriorityLevel">
|
||||
<summary>Ottiene o imposta il livello di priorità del thread.</summary>
|
||||
<returns>Uno dei valori di <see cref="T:System.Diagnostics.ThreadPriorityLevel" />, che specifica un intervallo nel quale rientra la priorità del thread.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Non è possibile recuperare le informazioni sul livello di priorità del thread. - oppure -Non è possibile impostare il livello di priorità del thread.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Il processo è eseguito su un computer remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime">
|
||||
<summary>Ottiene l'intervallo di tempo che il thread ha impiegato nell'esecuzione del codice all'interno del nucleo centrale del sistema operativo.</summary>
|
||||
<returns>Valore <see cref="T:System.TimeSpan" /> che indica l'intervallo di tempo impiegato dal thread nell'esecuzione del codice all'interno del nucleo centrale del sistema operativo.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Non è possibile recuperare l'intervallo di tempo del thread. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Il processo è eseguito su un computer remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.ProcessorAffinity">
|
||||
<summary>Imposta il processore sul quale può essere eseguito il thread associato.</summary>
|
||||
<returns>Un oggetto <see cref="T:System.IntPtr" /> che punta a un insieme di bit, ciascuno dei quali rappresenta un processore sul quale può essere eseguito il thread.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Non è stato possibile impostare l'affinità dei processori. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Il processo è eseguito su un computer remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThread.ResetIdealProcessor">
|
||||
<summary>Reimposta il processore ideale di questo thread a indicare che non è presente un singolo processore ideale.In altre parole, ogni altro processore può essere ideale.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Non è possibile reimpostare il processore ideale. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Il processo è eseguito su un computer remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.StartAddress">
|
||||
<summary>Ottiene l'indirizzo di memoria della funzione chiamata dal sistema operativo per l'avvio di questo thread.</summary>
|
||||
<returns>L'indirizzo iniziale del thread, che punta alla funzione definita dall'applicazione eseguita dal thread.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Il processo è eseguito su un computer remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.StartTime">
|
||||
<summary>Ottiene l'ora in cui il sistema operativo ha iniziato il thread.</summary>
|
||||
<returns>Un oggetto <see cref="T:System.DateTime" /> che rappresenta l'ora di sistema al momento dell'avvio del thread da parte del sistema operativo.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Non è possibile recuperare l'intervallo di tempo del thread. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Il processo è eseguito su un computer remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.ThreadState">
|
||||
<summary>Ottiene lo stato corrente di questo thread.</summary>
|
||||
<returns>Un oggetto <see cref="T:System.Diagnostics.ThreadState" /> che indica lo stato del thread, ad esempio in esecuzione, in attesa o completato.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Il processo è eseguito su un computer remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.TotalProcessorTime">
|
||||
<summary>Ottiene la quantità totale di tempo impiegata da questo thread nell'utilizzo del processore.</summary>
|
||||
<returns>Un oggetto <see cref="T:System.TimeSpan" /> che indica la quantità di tempo in base alla quale il thread ha avuto il controllo del processore.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Non è possibile recuperare l'intervallo di tempo del thread. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Il processo è eseguito su un computer remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.UserProcessorTime">
|
||||
<summary>Ottiene la quantità di tempo che il thread associato ha impiegato nell'esecuzione del codice all'interno dell'applicazione.</summary>
|
||||
<returns>Valore <see cref="T:System.TimeSpan" /> che indica la quantità di tempo impiegato dal thread nell'esecuzione del codice all'interno dell'applicazione, rispetto all'esecuzione all'interno del nucleo centrale del sistema operativo.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Non è possibile recuperare l'intervallo di tempo del thread. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Il processo è eseguito su un computer remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.WaitReason">
|
||||
<summary>Ottiene il motivo per cui il thread è in attesa.</summary>
|
||||
<returns>Un oggetto <see cref="T:System.Diagnostics.ThreadWaitReason" /> che rappresenta il motivo per il quale il thread è nello stato di attesa.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">Il thread non è nello stato di attesa. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Il processo è eseguito su un computer remoto.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessThreadCollection">
|
||||
<summary>Fornisce un insieme fortemente tipizzato di oggetti <see cref="T:System.Diagnostics.ProcessThread" />.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.#ctor">
|
||||
<summary>Consente di inizializzare una nuova istanza della classe <see cref="T:System.Diagnostics.ProcessThreadCollection" />, senza istanze di <see cref="T:System.Diagnostics.ProcessThread" /> associate.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])">
|
||||
<summary>Consente di inizializzare una nuova istanza della classe <see cref="T:System.Diagnostics.ProcessThreadCollection" /> utilizzando la matrice specificata di istanze <see cref="T:System.Diagnostics.ProcessThread" />.</summary>
|
||||
<param name="processThreads">Matrice di istanze di <see cref="T:System.Diagnostics.ProcessThread" /> con la quale inizializzare questa istanza <see cref="T:System.Diagnostics.ProcessThreadCollection" /> . </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)">
|
||||
<summary>Accoda un thread di processo all'insieme.</summary>
|
||||
<returns>Indice a base zero del thread contenuto nell'insieme.</returns>
|
||||
<param name="thread">Thread da aggiungere all'insieme. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)">
|
||||
<summary>Determina se il thread di processo specificato è contenuto nell'insieme.</summary>
|
||||
<returns>Restituisce true se il thread è presente nell'insieme; in caso contrario, false.</returns>
|
||||
<param name="thread">Istanza <see cref="T:System.Diagnostics.ProcessThread" /> che indica il thread da trovare in questo insieme. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)">
|
||||
<summary>Copia una matrice di istanze <see cref="T:System.Diagnostics.ProcessThread" /> nell'insieme, in corrispondenza dell'indice specificato.</summary>
|
||||
<param name="array">Matrice di istanze <see cref="T:System.Diagnostics.ProcessThread" /> da aggiungere all'insieme. </param>
|
||||
<param name="index">Posizione in cui aggiungere le nuove istanze. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.Count"></member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.GetEnumerator"></member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)">
|
||||
<summary>Fornisce la posizione di un thread specificato nell'insieme.</summary>
|
||||
<returns>Indice a base zero che definisce la posizione del thread all'interno di <see cref="T:System.Diagnostics.ProcessThreadCollection" />.</returns>
|
||||
<param name="thread">
|
||||
<see cref="T:System.Diagnostics.ProcessThread" /> il cui indice viene richiamato. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)">
|
||||
<summary>Inserisce un thread di processo nella posizione specificata dell'insieme.</summary>
|
||||
<param name="index">Indice a base zero che indica la posizione in cui inserire il thread. </param>
|
||||
<param name="thread">Thread da inserire nell'insieme. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)">
|
||||
<summary>Ottiene un indice per scorrere l'insieme di thread di processo.</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.ProcessThread" /> che indicizza i thread nell'insieme.</returns>
|
||||
<param name="index">Valore dell'indice a base zero del thread dell'insieme. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)">
|
||||
<summary>Elimina un thread di processo dall'insieme.</summary>
|
||||
<param name="thread">Thread da rimuovere dall'insieme. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"></member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized"></member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot"></member>
|
||||
<member name="T:System.Diagnostics.ThreadPriorityLevel">
|
||||
<summary>Specifica il livello di priorità di un thread.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.AboveNormal">
|
||||
<summary>Specifica un livello superiore alla priorità normale della classe <see cref="T:System.Diagnostics.ProcessPriorityClass" /> associata.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.BelowNormal">
|
||||
<summary>Specifica un livello inferiore alla priorità normale della classe <see cref="T:System.Diagnostics.ProcessPriorityClass" /> associata.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Highest">
|
||||
<summary>Specifica la massima priorità.Questa è di due livelli superiore alla priorità normale della classe <see cref="T:System.Diagnostics.ProcessPriorityClass" /> associata.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Idle">
|
||||
<summary>Specifica la priorità idle.Questo è il minimo valore possibile di priorità di tutti i thread, indipendentemente dal valore della classe <see cref="T:System.Diagnostics.ProcessPriorityClass" /> associata.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Lowest">
|
||||
<summary>Specifica la minima priorità.Questa è di due livelli inferiore alla priorità normale della classe <see cref="T:System.Diagnostics.ProcessPriorityClass" /> associata.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Normal">
|
||||
<summary>Specifica la priorità normale della classe <see cref="T:System.Diagnostics.ProcessPriorityClass" /> associata.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.TimeCritical">
|
||||
<summary>Specifica la priorità critica a livello temporale.Questo è il massimo valore di priorità di tutti i thread, indipendentemente dal valore della classe <see cref="T:System.Diagnostics.ProcessPriorityClass" /> associata.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ThreadState">
|
||||
<summary>Specifica lo stato di esecuzione corrente del thread.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Initialized">
|
||||
<summary>Uno stato che indica che il thread è stato inizializzato ma non è stato ancora avviato.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Ready">
|
||||
<summary>Uno stato che indica che il thread è in attesa di utilizzare un processore in quanto nessun processore è disponibile.Il thread è pronto per essere eseguito sul prossimo processore disponibile.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Running">
|
||||
<summary>Uno stato che indica che il thread utilizza attualmente un processore.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Standby">
|
||||
<summary>Uno stato che indica che il thread sta per utilizzare un processore.Un solo thread alla volta può trovarsi in questo stato.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Terminated">
|
||||
<summary>Uno stato che indica che il thread ha completato l'esecuzione ed è uscito.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Transition">
|
||||
<summary>Uno stato che indica che il thread è in attesa di una risorsa, diversa dal processore, prima di poter essere eseguito.Può essere ad esempio in attesa che il proprio stack di esecuzione venga paginato dal disco.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Unknown">
|
||||
<summary>Lo stato del thread è sconosciuto.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Wait">
|
||||
<summary>Uno stato che indica che il thread non è pronto per essere utilizzato dal processore in quanto è in attesa che un'operazione secondaria venga completata o che una risorsa venga resa disponibile.Quando il thread è pronto, viene ripianificato.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ThreadWaitReason">
|
||||
<summary>Specifica il motivo per il quale un thread è in attesa.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.EventPairHigh">
|
||||
<summary>Il thread è in attesa di Event Pair High.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.EventPairLow">
|
||||
<summary>Il thread è in attesa di Event Pair Low.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.ExecutionDelay">
|
||||
<summary>L'esecuzione del thread è stata rinviata.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Executive">
|
||||
<summary>Il thread è in attesa della pianificazione.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.FreePage">
|
||||
<summary>Il thread è in attesa di una pagina di memoria virtuale libera.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.LpcReceive">
|
||||
<summary>Il thread è in attesa di una chiamata alla routine locale.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.LpcReply">
|
||||
<summary>Il thread è in attesa di una risposta a una chiamata di routine locale.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.PageIn">
|
||||
<summary>Il thread è in attesa di una pagina di memoria virtuale nella memoria.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.PageOut">
|
||||
<summary>Il thread è in attesa di una pagina di memoria virtuale da scrivere nel disco.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Suspended">
|
||||
<summary>L'esecuzione del thread è stata sospesa.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.SystemAllocation">
|
||||
<summary>Il thread è in attesa dell'allocazione di sistema.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Unknown">
|
||||
<summary>Il thread è in attesa per un motivo sconosciuto.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.UserRequest">
|
||||
<summary>Il thread è in attesa di una richiesta dell'utente.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.VirtualMemory">
|
||||
<summary>Il thread è in attesa che il sistema allochi la memoria virtuale.</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
1000
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/ja/System.Diagnostics.Process.xml
vendored
Normal file
1000
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/ja/System.Diagnostics.Process.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1003
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/ko/System.Diagnostics.Process.xml
vendored
Normal file
1003
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/ko/System.Diagnostics.Process.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
977
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/ru/System.Diagnostics.Process.xml
vendored
Normal file
977
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/ru/System.Diagnostics.Process.xml
vendored
Normal file
@@ -0,0 +1,977 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Diagnostics.Process</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Win32.SafeHandles.SafeProcessHandle">
|
||||
<summary>[SECURITY CRITICAL] Предоставляет управляемую оболочку для дескриптора процесса.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)">
|
||||
<summary>[SECURITY CRITICAL] Инициализирует новый экземпляр класса <see cref="T:Microsoft.Win32.SafeHandles.SafeProcessHandle" /> класса для указанного дескриптора, указывающее, следует ли освободить дескриптор на стадии завершения. </summary>
|
||||
<param name="existingHandle">Инкапсулируемый дескриптор.</param>
|
||||
<param name="ownsHandle">trueЧтобы надежно <see cref="T:Microsoft.Win32.SafeHandles.SafeProcessHandle" /> освободить дескриптор на стадии завершения; в противном случае — false.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid"></member>
|
||||
<member name="T:System.Diagnostics.DataReceivedEventArgs">
|
||||
<summary>Предоставляет данные для событий <see cref="E:System.Diagnostics.Process.OutputDataReceived" /> и <see cref="E:System.Diagnostics.Process.ErrorDataReceived" />.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.DataReceivedEventArgs.Data">
|
||||
<summary>Возвращает строку символов, записанную в перенаправленный поток вывода <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Строка, записанная соответствующим процессом <see cref="T:System.Diagnostics.Process" /> в перенаправленный поток <see cref="P:System.Diagnostics.Process.StandardOutput" /> или <see cref="P:System.Diagnostics.Process.StandardError" />.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.DataReceivedEventHandler">
|
||||
<summary>Представляет метод, обрабатывающий событие <see cref="E:System.Diagnostics.Process.OutputDataReceived" /> или событие <see cref="E:System.Diagnostics.Process.ErrorDataReceived" /> объекта <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<param name="sender">Источник события. </param>
|
||||
<param name="e">Объект <see cref="T:System.Diagnostics.DataReceivedEventArgs" />, содержащий данные, которые относятся к событию. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.Process">
|
||||
<summary>Предоставляет доступ к локальным и удаленным процессам и позволяет запускать и останавливать локальные системные процессы.Исходный код .NET Framework для этого типа см. в указанном источнике.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.#ctor">
|
||||
<summary>Инициализирует новый экземпляр класса <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.BasePriority">
|
||||
<summary>Получает базовый приоритет связанного процесса.</summary>
|
||||
<returns>Базовый приоритет, который вычисляется свойством <see cref="P:System.Diagnostics.Process.PriorityClass" /> связанного процесса.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has exited.-or- The process has not started, so there is no process ID. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.BeginErrorReadLine">
|
||||
<summary>Начинает операции асинхронного чтения с перенаправленного потока <see cref="P:System.Diagnostics.Process.StandardError" /> приложения.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref="P:System.Diagnostics.Process.StandardError" /> stream.- or - The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has been used by a synchronous read operation. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.BeginOutputReadLine">
|
||||
<summary>Начинает операции асинхронного чтения с перенаправленного потока <see cref="P:System.Diagnostics.Process.StandardOutput" /> приложения.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream.- or - The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has been used by a synchronous read operation. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.CancelErrorRead">
|
||||
<summary>Отменяет операцию асинхронного чтения в перенаправленном потоке <see cref="P:System.Diagnostics.Process.StandardError" /> приложения.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardError" /> stream is not enabled for asynchronous read operations. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.CancelOutputRead">
|
||||
<summary>Отменяет операцию асинхронного чтения в перенаправленном потоке <see cref="P:System.Diagnostics.Process.StandardOutput" /> приложения.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream is not enabled for asynchronous read operations. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Dispose"></member>
|
||||
<member name="M:System.Diagnostics.Process.Dispose(System.Boolean)">
|
||||
<summary>Освобождает все ресурсы, используемые этим процессом.</summary>
|
||||
<param name="disposing">Значение true позволяет освободить как управляемые, так и неуправляемые ресурсы; значение false освобождает только неуправляемые ресурсы. </param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.EnableRaisingEvents">
|
||||
<summary>Получает или задает значение, указывающее, следует ли вызывать событие <see cref="E:System.Diagnostics.Process.Exited" /> при прекращении процесса.</summary>
|
||||
<returns>Значение true, если событие <see cref="E:System.Diagnostics.Process.Exited" /> должно быть вызвано при завершении связанного процесса (выход или вызов метода <see cref="M:System.Diagnostics.Process.Kill" />); в противном случае — значение false.Значение по умолчанию — false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.EnterDebugMode">
|
||||
<summary>Помещает компонент <see cref="T:System.Diagnostics.Process" /> в состояние взаимодействия с работающим системным процессом, выполняющимся в специальном режиме путем включения встроенного свойства SeDebugPrivilege в данном потоке.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.ErrorDataReceived">
|
||||
<summary>Происходит, когда приложение выполняет запись в свой перенаправленный поток <see cref="P:System.Diagnostics.Process.StandardError" />.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ExitCode">
|
||||
<summary>Получает значение, заданное связанным процессом при завершении.</summary>
|
||||
<returns>Код, который задал связанный процесс при завершении.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process has not exited.-or- The process <see cref="P:System.Diagnostics.Process.Handle" /> is not valid. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.ExitCode" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.Exited">
|
||||
<summary>Происходит при завершении процесса.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ExitTime">
|
||||
<summary>Получает время завершения связанного процесса.</summary>
|
||||
<returns>Класс <see cref="T:System.DateTime" />, показывающий время завершения связанного процесса.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.ExitTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetCurrentProcess">
|
||||
<summary>Получает новый компонент <see cref="T:System.Diagnostics.Process" /> и связывает его с активным в данный момент процессом.</summary>
|
||||
<returns>Новый компонент <see cref="T:System.Diagnostics.Process" />, связанный с ресурсом выполняющегося процесса в приложении.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessById(System.Int32)">
|
||||
<summary>Возвращает новый компонент <see cref="T:System.Diagnostics.Process" />, по заданному идентификатору процесса на локальном компьютере.</summary>
|
||||
<returns>Компонент <see cref="T:System.Diagnostics.Process" />, связанный с локальным ресурсом процесса, определенного параметром <paramref name="processId" />.</returns>
|
||||
<param name="processId">Уникальный в системе идентификатор ресурса процесса. </param>
|
||||
<exception cref="T:System.ArgumentException">The process specified by the <paramref name="processId" /> parameter is not running.The identifier might be expired.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process was not started by this object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)">
|
||||
<summary>Возвращает новый компонент <see cref="T:System.Diagnostics.Process" />, по заданному идентификатору процесса и имени компьютера в сети.</summary>
|
||||
<returns>Компонент <see cref="T:System.Diagnostics.Process" />, связанный с удаленным ресурсом процесса, определенного параметром <paramref name="processId" />.</returns>
|
||||
<param name="processId">Уникальный в системе идентификатор ресурса процесса. </param>
|
||||
<param name="machineName">Имя компьютера в сети. </param>
|
||||
<exception cref="T:System.ArgumentException">The process specified by the <paramref name="processId" /> parameter is not running.The identifier might be expired.-or- The <paramref name="machineName" /> parameter syntax is invalid.The name might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process was not started by this object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcesses">
|
||||
<summary>Создает новый компонент <see cref="T:System.Diagnostics.Process" /> для каждого ресурса процесса на локальном компьютере.</summary>
|
||||
<returns>Массив типа <see cref="T:System.Diagnostics.Process" />, представляющий все ресурсы процесса, выполняющегося на локальном компьютере.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcesses(System.String)">
|
||||
<summary>Создает новый компонент <see cref="T:System.Diagnostics.Process" /> для каждого ресурса процесса на указанном компьютере.</summary>
|
||||
<returns>Массив типа <see cref="T:System.Diagnostics.Process" />, представляющий все ресурсы процесса, выполняющегося на указанном компьютере.</returns>
|
||||
<param name="machineName">Компьютер, из которого читается список процессов. </param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="machineName" /> parameter syntax is invalid.It might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The operating system platform does not support this operation on remote computers. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A problem occurred accessing an underlying system API. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessesByName(System.String)">
|
||||
<summary>Создает массив из новых компонентов <see cref="T:System.Diagnostics.Process" /> и связывает их со всеми ресурсами процесса на локальном компьютере, для которых заданное имя процесса является общедоступным.</summary>
|
||||
<returns>Массив типа <see cref="T:System.Diagnostics.Process" />, представляющий ресурсы процесса, выполняющего указанное приложение или файл.</returns>
|
||||
<param name="processName">Понятное имя процесса. </param>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)">
|
||||
<summary>Создает массив из новых компонентов <see cref="T:System.Diagnostics.Process" /> и связывает их со всеми ресурсами процесса на удаленном компьютере, для которых заданное имя процесса является общедоступным.</summary>
|
||||
<returns>Массив типа <see cref="T:System.Diagnostics.Process" />, представляющий ресурсы процесса, выполняющего указанное приложение или файл.</returns>
|
||||
<param name="processName">Понятное имя процесса. </param>
|
||||
<param name="machineName">Имя компьютера в сети. </param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="machineName" /> parameter syntax is invalid.It might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The operating system platform does not support this operation on remote computers. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A problem occurred accessing an underlying system API. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.HasExited">
|
||||
<summary>Получает значение, определяющее завершение связанного процесса.</summary>
|
||||
<returns>Значение true, если процесс операционной системы, на который ссылается компонент <see cref="T:System.Diagnostics.Process" />, был завершен; в противном случае — значение false.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with the object. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The exit code for the process could not be retrieved. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.HasExited" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Id">
|
||||
<summary>Получает уникальный идентификатор связанного процесса.</summary>
|
||||
<returns>Созданный системой уникальный идентификатор, на который ссылается этот экземпляр <see cref="T:System.Diagnostics.Process" />.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process's <see cref="P:System.Diagnostics.Process.Id" /> property has not been set.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Kill">
|
||||
<summary>Немедленно останавливает связанный процесс.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to call <see cref="M:System.Diagnostics.Process.Kill" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has already exited. -or-There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.LeaveDebugMode">
|
||||
<summary>Выбирает компонент <see cref="T:System.Diagnostics.Process" /> из состояния, позволяющего ему взаимодействовать с процессами операционной системы, запущенными в специальном режиме.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MachineName">
|
||||
<summary>Получает имя компьютера, на котором выполняется связанный процесс.</summary>
|
||||
<returns>Имя компьютера, на котором выполняется связанный процесс.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MainModule">
|
||||
<summary>Получает главный модуль связанного процесса.</summary>
|
||||
<returns>Модуль <see cref="T:System.Diagnostics.ProcessModule" />, который был использован для запуска процесса.</returns>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MainModule" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A 32-bit process is trying to access the modules of a 64-bit process.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MaxWorkingSet">
|
||||
<summary>Возвращает или задает максимальный размер доступного рабочего множества для связанного процесса.</summary>
|
||||
<returns>Максимальный размер рабочего множества в байтах, доступного в памяти для процесса.</returns>
|
||||
<exception cref="T:System.ArgumentException">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MaxWorkingSet" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MinWorkingSet">
|
||||
<summary>Возвращает или задает минимальный размер доступного рабочего множества для связанного процесса.</summary>
|
||||
<returns>Минимальный размер рабочего множества в байтах, требуемый в памяти для процесса.</returns>
|
||||
<exception cref="T:System.ArgumentException">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MinWorkingSet" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Modules">
|
||||
<summary>Получает модули, которые были загружены связанным процессом.</summary>
|
||||
<returns>Массив объектов типа <see cref="T:System.Diagnostics.ProcessModule" />, который предоставляет модули, загруженные связанным процессом.</returns>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.Modules" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">You are attempting to access the <see cref="P:System.Diagnostics.Process.Modules" /> property for either the system process or the idle process.These processes do not have modules.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.NonpagedSystemMemorySize64">
|
||||
<summary>Получает количество невыгружаемой системной памяти, выделенной для связанного процесса.</summary>
|
||||
<returns>Количество системной памяти в байтах, выделенной для связанного процесса, которую нельзя записать в файл подкачки виртуальной памяти.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.OnExited">
|
||||
<summary>Вызывает событие <see cref="E:System.Diagnostics.Process.Exited" />.</summary>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.OutputDataReceived">
|
||||
<summary>Происходит, когда приложение записывает строку в свой перенаправленный поток <see cref="P:System.Diagnostics.Process.StandardOutput" />.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PagedMemorySize64">
|
||||
<summary>Получает количество выгружаемой системной памяти, выделенной для связанного процесса.</summary>
|
||||
<returns>Количество памяти в байтах, выделенной в файле подкачки виртуальной памяти для связанного процесса.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PagedSystemMemorySize64">
|
||||
<summary>Возвращает объем выгружаемой системной памяти, выделенной для связанного процесса.</summary>
|
||||
<returns>Количество системной памяти в байтах, выделенной для связанного процесса, которую можно записать в файл подкачки виртуальной памяти.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakPagedMemorySize64">
|
||||
<summary>Получает максимальное количество памяти в файле подкачки виртуальной памяти, используемой связанным процессом.</summary>
|
||||
<returns>Максимальное количество памяти в байтах, выделенной в файле подкачки виртуальной памяти для связанного процесса с момента его запуска.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakVirtualMemorySize64">
|
||||
<summary>Получает максимальное количество виртуальной памяти, используемой связанным процессом.</summary>
|
||||
<returns>Максимальное количество виртуальной памяти в байтах, выделенной для связанного процесса с момента его запуска.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakWorkingSet64">
|
||||
<summary>Получает максимальное количество физической памяти, используемой связанным процессом.</summary>
|
||||
<returns>Максимальное количество физической памяти в байтах, выделенной для связанного процесса с момента его запуска.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PriorityBoostEnabled">
|
||||
<summary>Возвращает или задает значение, указывающее, должна ли операционная система временно увеличить приоритет связанного процесса, когда основное окно процесса получит фокус.</summary>
|
||||
<returns>Значение true, если требуется динамическое увеличение приоритета процесса, когда процесс выходит из состояния ожидания; в противном случае — значение false.Значение по умолчанию — false.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Priority boost information could not be retrieved from the associated process resource. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PriorityBoostEnabled" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PriorityClass">
|
||||
<summary>Возвращает или задает общую категорию приоритета для процесса.</summary>
|
||||
<returns>Категория приоритета для связанного процесса, из которой вычисляется свойство <see cref="P:System.Diagnostics.Process.BasePriority" />.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PriorityClass" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">You have set the <see cref="P:System.Diagnostics.Process.PriorityClass" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>
|
||||
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">Priority class cannot be set because it does not use a valid value, as defined in the <see cref="T:System.Diagnostics.ProcessPriorityClass" /> enumeration.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PrivateMemorySize64">
|
||||
<summary>Получает количество закрытой памяти, выделенной для связанного процесса.</summary>
|
||||
<returns>Количество памяти в байтах, выделенное для связанного процесса, который не может быть доступен другим процессам.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PrivilegedProcessorTime">
|
||||
<summary>Получает права доступа на время процессора для этого процесса.</summary>
|
||||
<returns>Класс <see cref="T:System.TimeSpan" />, показывающий количество времени, которое процесс потратил на выполнение кода внутри ядра операционной системы.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PrivilegedProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ProcessName">
|
||||
<summary>Получает имя процесса.</summary>
|
||||
<returns>Имя, которое использует система для идентификации процесса для пользователя.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process does not have an identifier, or no process is associated with the <see cref="T:System.Diagnostics.Process" />.-or- The associated process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is not on this computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ProcessorAffinity">
|
||||
<summary>Возвращает или задает процессоры, на которых может быть запланировано выполнение потоков данного процесса.</summary>
|
||||
<returns>Битовая маска, представляющая процессоры, на которых могут выполняться потоки связанного процесса.По умолчанию маска зависит от числа процессоров в компьютере.Значение по умолчанию равно 2 n -1, где n — число процессоров.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<see cref="P:System.Diagnostics.Process.ProcessorAffinity" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.ProcessorAffinity" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> was not available.-or- The process has exited. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Refresh">
|
||||
<summary>Удаляет любые кэшированные внутри компонента процесса сведения о связанном процессе.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.SafeHandle">
|
||||
<summary>Возвращает собственный дескриптор процесса.</summary>
|
||||
<returns>Собственный дескриптор процесса.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.SessionId">
|
||||
<summary>Получает идентификатор сеанса служб терминалов для связанного процесса.</summary>
|
||||
<returns>Идентификатор сеанса служба терминалов для связанного процесса.</returns>
|
||||
<exception cref="T:System.NullReferenceException">There is no session associated with this process.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The <see cref="P:System.Diagnostics.Process.SessionId" /> property is not supported on Windows 98.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardError">
|
||||
<summary>Получает поток, используемый для чтения вывода ошибок приложения.</summary>
|
||||
<returns>Объект <see cref="T:System.IO.StreamReader" />, используемый для чтения стандартного потока ошибок приложения.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has not been defined for redirection; ensure <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> is set to true and <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is set to false.- or - The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has been opened for asynchronous read operations with <see cref="M:System.Diagnostics.Process.BeginErrorReadLine" />. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardInput">
|
||||
<summary>Получает поток, используемый для записи ввода приложения.</summary>
|
||||
<returns>Объект <see cref="T:System.IO.StreamWriter" />, используемый для записи стандартного входного потока приложения.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardInput" /> stream has not been defined because <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" /> is set to false. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardOutput">
|
||||
<summary>Получает поток, используемый для чтения текстовых выходных данных приложения.</summary>
|
||||
<returns>Объект <see cref="T:System.IO.StreamReader" />, используемый для чтения стандартного потока вывода приложения.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has not been defined for redirection; ensure <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" /> is set to true and <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is set to false.- or - The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has been opened for asynchronous read operations with <see cref="M:System.Diagnostics.Process.BeginOutputReadLine" />. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start">
|
||||
<summary>Запускает (или повторно использует) ресурс процесса, определенный свойством <see cref="P:System.Diagnostics.Process.StartInfo" /> этого компонента <see cref="T:System.Diagnostics.Process" />, и связывает его с компонентом.</summary>
|
||||
<returns>Значение true, если ресурс процесса запущен; значение false, если новый ресурс процесса не был запущен (например, при повторном использовании существующего процесса).</returns>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified in the <see cref="T:System.Diagnostics.Process" /> component's <see cref="P:System.Diagnostics.Process.StartInfo" />.-or- The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> member of the <see cref="P:System.Diagnostics.Process.StartInfo" /> property is true while <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" />, <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" />, or <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> is true. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">There was an error in opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)">
|
||||
<summary>Запускает ресурс процесса, определенный параметром, содержащим стартовую информацию процесса (например, имя файла запускаемого процесса), и связывает ресурс с новым компонентом <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Новый процесс <see cref="T:System.Diagnostics.Process" />, связанный с ресурсом процесса, или null, если ресурс процесса не запущен.Обратите внимание, что новый процесс, запущенный с уже выполняющимися экземплярами того же процесса, будет независимым от других.Кроме того, метод Start может вернуть ненулевой тип Process, свойство <see cref="T:System.Diagnostics.ProcessHasExited" /> которого равно true.В этом случае запущенный процесс может активировать существующий экземпляр самого себя, а затем завершить работу.</returns>
|
||||
<param name="startInfo">Объект <see cref="T:System.Diagnostics.ProcessStartInfo" />, который содержит информацию, использующуюся для запуска процесса, включая имя файла и все аргументы командной строки. </param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified in the <paramref name="startInfo" /> parameter's <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property.-or- The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property of the <paramref name="startInfo" /> parameter is true and the <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" />, <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" />, or <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> property is also true.-or-The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property of the <paramref name="startInfo" /> parameter is true and the <see cref="P:System.Diagnostics.ProcessStartInfo.UserName" /> property is not null or empty or the <see cref="P:System.Diagnostics.ProcessStartInfo.Password" /> property is not null.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="startInfo" /> parameter is null. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The file specified in the <paramref name="startInfo" /> parameter's <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property could not be found.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String)">
|
||||
<summary>Запускает ресурс процесса путем указания имени документа или файла приложения и связывает ресурс с новым компонентом <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Новый процесс <see cref="T:System.Diagnostics.Process" />, связанный с ресурсом процесса, или null, если ресурс процесса не запущен.Обратите внимание, что новый процесс, запущенный наряду с уже выполняющимися экземплярами того же процесса, будет независимым от других.Кроме того, метод Start может вернуть ненулевой тип Process, свойство <see cref="T:System.Diagnostics.ProcessHasExited" /> которого равно true.В этом случае запущенный процесс может активировать существующий экземпляр самого себя, а затем завершить работу.</returns>
|
||||
<param name="fileName">Имя документа или файла приложения для запуска в процессе. </param>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The PATH environment variable has a string containing quotes.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String)">
|
||||
<summary>Запускает ресурс процесса путем указания имени приложения и набора аргументов командной строки и связывает ресурс с новым компонентом <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Новый процесс <see cref="T:System.Diagnostics.Process" />, связанный с ресурсом процесса, или null, если ресурс процесса не запущен.Обратите внимание, что новый процесс, запущенный наряду с уже выполняющимися экземплярами того же процесса, будет независимым от других.Кроме того, метод Start может вернуть ненулевой тип Process, свойство <see cref="T:System.Diagnostics.ProcessHasExited" /> которого равно true.В этом случае запущенный процесс может активировать существующий экземпляр самого себя, а затем завершить работу.</returns>
|
||||
<param name="fileName">Имя файла приложения для запуска в процессе. </param>
|
||||
<param name="arguments">Аргументы командной строки для передачи при запуске процесса. </param>
|
||||
<exception cref="T:System.InvalidOperationException">The <paramref name="fileName" /> or <paramref name="arguments" /> parameter is null. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The PATH environment variable has a string containing quotes.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)">
|
||||
<summary>Запускает ресурс процесса путем указания имени приложения, имени пользователя, пароля и домена и связывает ресурс с новым компонентом <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Новый процесс <see cref="T:System.Diagnostics.Process" />, связанный с ресурсом процесса, или null, если ресурс процесса не запущен.Обратите внимание, что новый процесс, запущенный наряду с уже выполняющимися экземплярами того же процесса, будет независимым от других.Кроме того, метод Start может вернуть ненулевой тип Process, свойство <see cref="T:System.Diagnostics.ProcessHasExited" /> которого равно true.В этом случае запущенный процесс может активировать существующий экземпляр самого себя, а затем завершить работу.</returns>
|
||||
<param name="fileName">Имя файла приложения для запуска в процессе.</param>
|
||||
<param name="userName">Имя пользователя, используемое при запуске процесса.</param>
|
||||
<param name="password">Объект <see cref="T:System.Security.SecureString" />, содержащий пароль для использования при запуске процесса.</param>
|
||||
<param name="domain">Домен, используемый при запуске процесса.</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<paramref name="fileName" /> is not an executable (.exe) file.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">There was an error in opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)">
|
||||
<summary>Запускает ресурс процесса путем указания имени приложения, набора аргументов командной строки, имени пользователя, пароля и домена и связывает ресурс с новым компонентом <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Новый процесс <see cref="T:System.Diagnostics.Process" />, связанный с ресурсом процесса, или null, если ресурс процесса не запущен.Обратите внимание, что новый процесс, запущенный наряду с уже выполняющимися экземплярами того же процесса, будет независимым от других.Кроме того, метод Start может вернуть ненулевой тип Process, свойство <see cref="T:System.Diagnostics.ProcessHasExited" /> которого равно true.В этом случае запущенный процесс может активировать существующий экземпляр самого себя, а затем завершить работу.</returns>
|
||||
<param name="fileName">Имя файла приложения для запуска в процессе. </param>
|
||||
<param name="arguments">Аргументы командной строки для передачи при запуске процесса. </param>
|
||||
<param name="userName">Имя пользователя, используемое при запуске процесса.</param>
|
||||
<param name="password">Объект <see cref="T:System.Security.SecureString" />, содержащий пароль для использования при запуске процесса.</param>
|
||||
<param name="domain">Домен, используемый при запуске процесса.</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<paramref name="fileName" /> is not an executable (.exe) file.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StartInfo">
|
||||
<summary>Получает или задает свойства для передачи их методу <see cref="M:System.Diagnostics.Process.Start" /> объекта <see cref="T:System.Diagnostics.Process" />.</summary>
|
||||
<returns>Класс <see cref="T:System.Diagnostics.ProcessStartInfo" />, который представляет данные для запуска процесса.Эти аргументы включают имя исполняемого файла или документа, использованного для запуска процесса.</returns>
|
||||
<exception cref="T:System.ArgumentNullException">The value that specifies the <see cref="P:System.Diagnostics.Process.StartInfo" /> is null. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StartTime">
|
||||
<summary>Получает время запуска связанного процесса.</summary>
|
||||
<returns>Объект, показывающий время запуска процесса.Если процесс не выполняется, возникает исключение.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.StartTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has exited.-or-The process has not been started.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred in the call to the Windows function.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Threads">
|
||||
<summary>Получает множество потоков, выполняющихся в связанном процессе.</summary>
|
||||
<returns>Массив объектов типа <see cref="T:System.Diagnostics.ProcessThread" />, представляющий потоки операционной системы, которые в настоящий момент выполняются в связанном процессе.</returns>
|
||||
<exception cref="T:System.SystemException">The process does not have an <see cref="P:System.Diagnostics.Process.Id" />, or no process is associated with the <see cref="T:System.Diagnostics.Process" /> instance.-or- The associated process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.TotalProcessorTime">
|
||||
<summary>Получает полное время процессора для этого процесса.</summary>
|
||||
<returns>Объект <see cref="T:System.TimeSpan" />, указывающий количество времени, потраченного процессом на загрузку ЦП.Это значение является суммой значений свойств <see cref="P:System.Diagnostics.Process.UserProcessorTime" /> и <see cref="P:System.Diagnostics.Process.PrivilegedProcessorTime" />.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.TotalProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.UserProcessorTime">
|
||||
<summary>Получает пользовательское время процессора для этого процесса.</summary>
|
||||
<returns>Класс <see cref="T:System.TimeSpan" />, показывающий количество времени, которое связанный процесс потратил на выполнение кода внутри приложения (не внутри ядра операционной системы).</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.UserProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.VirtualMemorySize64">
|
||||
<summary>Получает количество виртуальной памяти, выделенной для связанного процесса.</summary>
|
||||
<returns>Возвращает количество виртуальной памяти в байтах, выделенной для связанного процесса.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.WaitForExit">
|
||||
<summary>Дает компоненту <see cref="T:System.Diagnostics.Process" /> команду ожидать завершения связанного процесса в течение неограниченного времени.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The wait setting could not be accessed. </exception>
|
||||
<exception cref="T:System.SystemException">No process <see cref="P:System.Diagnostics.Process.Id" /> has been set, and a <see cref="P:System.Diagnostics.Process.Handle" /> from which the <see cref="P:System.Diagnostics.Process.Id" /> property can be determined does not exist.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.-or- You are attempting to call <see cref="M:System.Diagnostics.Process.WaitForExit" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.WaitForExit(System.Int32)">
|
||||
<summary>Дает компоненту <see cref="T:System.Diagnostics.Process" /> команду ожидать завершения связанного процесса в течение указанного времени в миллисекундах.</summary>
|
||||
<returns>Значение true, если связанный процесс завершился; в противном случае — значение false.</returns>
|
||||
<param name="milliseconds">Количество времени в миллисекундах для ожидания завершения связанного процесса.Максимальным является наибольшее возможное 32-битное целое число, которое представляет для операционной системы бесконечность.</param>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The wait setting could not be accessed. </exception>
|
||||
<exception cref="T:System.SystemException">No process <see cref="P:System.Diagnostics.Process.Id" /> has been set, and a <see cref="P:System.Diagnostics.Process.Handle" /> from which the <see cref="P:System.Diagnostics.Process.Id" /> property can be determined does not exist.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.-or- You are attempting to call <see cref="M:System.Diagnostics.Process.WaitForExit(System.Int32)" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.WorkingSet64">
|
||||
<summary>Получает количество физической памяти, выделенной для связанного процесса.</summary>
|
||||
<returns>Количество физической памяти в байтах, выделенной для связанного процесса.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessModule">
|
||||
<summary>Представляет файл с расширением .dll или .exe, загруженный в определенный процесс.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.BaseAddress">
|
||||
<summary>Возвращает адрес в памяти, куда был загружен модуль.</summary>
|
||||
<returns>Адрес загрузки модуля.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.EntryPointAddress">
|
||||
<summary>Возвращает адрес памяти для функции, выполняющейся при загрузке и выполнении модуля системой.</summary>
|
||||
<returns>Точка входа модуля.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.FileName">
|
||||
<summary>Возвращает полный путь к модулю.</summary>
|
||||
<returns>Полный путь, который определяет место модуля.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.ModuleMemorySize">
|
||||
<summary>Возвращает объем памяти, необходимый для загрузки модуля.</summary>
|
||||
<returns>Размер памяти в байтах, которую занимает модуль.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.ModuleName">
|
||||
<summary>Возвращает имя модуля процесса.</summary>
|
||||
<returns>Имя модуля.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModule.ToString">
|
||||
<summary>Преобразует имя модуля в строку.</summary>
|
||||
<returns>Значение свойства <see cref="P:System.Diagnostics.ProcessModule.ModuleName" />.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessModuleCollection">
|
||||
<summary>Предоставляет строго типизированную коллекцию объектов <see cref="T:System.Diagnostics.ProcessModule" />.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.#ctor">
|
||||
<summary>Инициализирует новый экземпляр класса <see cref="T:System.Diagnostics.ProcessModuleCollection" /> без использования связанных экземпляров <see cref="T:System.Diagnostics.ProcessModule" />.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])">
|
||||
<summary>Инициализирует новый экземпляр класса <see cref="T:System.Diagnostics.ProcessModuleCollection" />, используя указанный массив экземпляров <see cref="T:System.Diagnostics.ProcessModule" />.</summary>
|
||||
<param name="processModules">Массив экземпляров <see cref="T:System.Diagnostics.ProcessModule" />, с помощью которого инициализируется экземпляр <see cref="T:System.Diagnostics.ProcessModuleCollection" />. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)">
|
||||
<summary>Определяет, существует ли в коллекции указанный модуль процесса.</summary>
|
||||
<returns>Значение true, если модуль присутствует в коллекции; в противном случае — значение false.</returns>
|
||||
<param name="module">Экземпляр <see cref="T:System.Diagnostics.ProcessModule" />, указывающий на искомый модуль в коллекции. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)">
|
||||
<summary>Копирует в коллекцию массив экземпляров <see cref="T:System.Diagnostics.ProcessModule" /> по указанному индексу.</summary>
|
||||
<param name="array">Массив экземпляров <see cref="T:System.Diagnostics.ProcessModule" /> для добавления в коллекцию. </param>
|
||||
<param name="index">Место, куда добавляются новые экземпляры. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.Count"></member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.GetEnumerator"></member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)">
|
||||
<summary>Предоставляет расположение указанного модуля в коллекции.</summary>
|
||||
<returns>Отсчитываемый от нуля индекс, по которому определяется место модуля в коллекции <see cref="T:System.Diagnostics.ProcessModuleCollection" />.</returns>
|
||||
<param name="module">Класс <see cref="T:System.Diagnostics.ProcessModule" />, чей индекс извлекается. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)">
|
||||
<summary>Возвращает индекс для выполнения итерации по набору модулей процесса.</summary>
|
||||
<returns>Класс <see cref="T:System.Diagnostics.ProcessModule" />, который индексирует модули в коллекции. </returns>
|
||||
<param name="index">Отсчитываемое от нуля индексное значение модуля в коллекции. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"></member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized"></member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot"></member>
|
||||
<member name="T:System.Diagnostics.ProcessPriorityClass">
|
||||
<summary>Указывает приоритет, который система связывает с процессом.Это значение вместе со значением приоритета каждого потока процесса определяет базовый уровень приоритета каждого потока.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.AboveNormal">
|
||||
<summary>Указывает, что значение приоритета процесса находится между Normal и <see cref="F:System.Diagnostics.ProcessPriorityClass.High" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.BelowNormal">
|
||||
<summary>Указывает, что значение приоритета процесса находится между Idle и Normal.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.High">
|
||||
<summary>Указывает, что процесс выполняет срочные задачи, которые должны быть выполнены немедленно, например диалоговое окно Task List, которое должно быстро отвечать при вызове пользователя независимо от загрузки операционной системы.Потоки процесса выгружают потоки процессов с нормальными или низкими приоритетами.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.Idle">
|
||||
<summary>Указывает, что потоки этого процесса выполняются, только когда система не занята. Примером может служить программа-заставка.Потоки данного процесса выгружаются потоками любых процессов с более высоким приоритетом.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.Normal">
|
||||
<summary>Указывает, что у процесса нет особых запланированных потребностей.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.RealTime">
|
||||
<summary>Указывает, что процесс обладает максимально высоким приоритетом.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessStartInfo">
|
||||
<summary>Задает набор значений, используемых при запуске процесса.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor">
|
||||
<summary>Инициализирует новый экземпляр класса <see cref="T:System.Diagnostics.ProcessStartInfo" />, не указывая имени файла, вместе с которым должен запускаться процесс.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)">
|
||||
<summary>Инициализирует новый экземпляр класса <see cref="T:System.Diagnostics.ProcessStartInfo" /> и задает имя файла, например приложение или документ, вместе с которым должен запускаться процесс.</summary>
|
||||
<param name="fileName">Приложение или документ, вместе с которыми должен запускаться процесс. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)">
|
||||
<summary>Инициализирует новый экземпляр класса <see cref="T:System.Diagnostics.ProcessStartInfo" />, задает имя файла приложения, вместе с которым должен запускаться процесс, и указывает передаваемые в приложение аргументы командной строки.</summary>
|
||||
<param name="fileName">Приложение, с которым должен запускаться процесс. </param>
|
||||
<param name="arguments">Аргументы командной строки, передаваемые в приложение при запуске процесса. </param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Arguments">
|
||||
<summary>Возвращает или задает набор аргументов командной строки, используемых при запуске приложения.</summary>
|
||||
<returns>Одна строка, содержащая аргументы для передачи в целевое приложение, указанное в свойстве <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" />.Значение по умолчанию — пустая строка ("").В Windows Vista и более ранних версиях операционной системы Windows длина аргументов, добавляемых к длине полного пути к процессу, должна быть меньше 2080.В Windows 7 и более поздних версиях длина должна быть меньше 32699.Аргументы анализируются и интерпретируются целевым приложением, поэтому они должны соответствовать ожидаемым аргументам приложения.Как показано в примерах ниже, для приложений .NET пробелы считаются разделителями между несколькими аргументами.Одиночный аргумент, включающий пробелы, должен быть заключен в кавычки, но кавычки не указываются в целевом приложении.В финальном проанализированном аргументе при включении кавычек к каждому знаку следует добавить escape-символ.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.CreateNoWindow">
|
||||
<summary>Возвращает или задает значение, позволяющее определить, нужно ли запускать процесс в новом окне.</summary>
|
||||
<returns>Значение true, если процесс должен быть запущен без создания для него нового окна; в противном случае — значение false.Значение по умолчанию — false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Domain">
|
||||
<summary>Возвращает или задает значение, позволяющее идентифицировать домен, используемый при запуске процесса. </summary>
|
||||
<returns>Домен Active Directory, используемый при запуске процесса.Свойство домена актуально преимущественно для пользователей, работающих в корпоративной среде и использующих службу Active Directory.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Environment"></member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.FileName">
|
||||
<summary>Возвращает или задает приложение или документ для запуска.</summary>
|
||||
<returns>Имя запускаемого приложения или имя документа, тип файла которого связан с приложением и для которого доступно действие открытия по умолчанию.Значение по умолчанию — пустая строка ("").</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.LoadUserProfile">
|
||||
<summary>Возвращает или задает значение, позволяющее определить, следует ли загружать профиль пользователя Windows из реестра. </summary>
|
||||
<returns>Значение true, если должен быть загружен профиль пользователя Windows; в противном случае — значение false.Значение по умолчанию — false.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Password">
|
||||
<summary>Возвращает или задает параметр безопасности, в котором содержится пароль пользователя, используемый при запуске процесса.</summary>
|
||||
<returns>Пароль пользователя, используемый при запуске процесса.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError">
|
||||
<summary>Возвращает или задает значение, позволяющее определить, записываются ли выходные данные об ошибках приложения в поток <see cref="P:System.Diagnostics.Process.StandardError" />.</summary>
|
||||
<returns>Значение true, если выходные данные должны записываться в <see cref="P:System.Diagnostics.Process.StandardError" />; в противном случае — значение false.Значение по умолчанию — false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput">
|
||||
<summary>Возвращает или задает значение, позволяющее определить, будут ли считываться входные данные приложения из потока <see cref="P:System.Diagnostics.Process.StandardInput" />.</summary>
|
||||
<returns>Значение true, если входные данные должны считываться из <see cref="P:System.Diagnostics.Process.StandardInput" />; в противном случае — значение false.Значение по умолчанию — false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput">
|
||||
<summary>Возвращает или задает значение, позволяющее определить, записываются ли текстовые выходные данные приложения в поток <see cref="P:System.Diagnostics.Process.StandardOutput" />.</summary>
|
||||
<returns>Значение true, если выходные данные должны записываться в <see cref="P:System.Diagnostics.Process.StandardOutput" />; в противном случае — значение false.Значение по умолчанию — false.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding">
|
||||
<summary>Возвращает или задает предпочтительную кодировку для вывода ошибок.</summary>
|
||||
<returns>Объект, представляющий предпочтительную кодировку для вывода ошибок.Значение по умолчанию — null.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding">
|
||||
<summary>Возвращает или задает предпочтительную кодировку для стандартного вывода.</summary>
|
||||
<returns>Объект, представляющий предпочтительную кодировку для стандартного вывода.Значение по умолчанию — null.</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.UserName">
|
||||
<summary>Возвращает или задает имя пользователя, которое следует использовать при запуске процесса.</summary>
|
||||
<returns>Имя пользователя, используемое при запуске процесса.</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.UseShellExecute">
|
||||
<summary>Возвращает или задает значение, позволяющее определить, нужно ли использовать оболочку операционной системы для запуска процесса.</summary>
|
||||
<returns>Значение true, если оболочка должна использоваться при запуске процесса; значение false, если процесс должен создаваться непосредственно из исполняемого файла.Значение по умолчанию — true.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.WorkingDirectory">
|
||||
<summary>Если свойство <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> имеет значение false, возвращает или задает рабочую папку для процесса для запуска.Если параметру <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> присвоено значение true, возвращает или задает каталог, содержащий процесс, который требуется запустить.</summary>
|
||||
<returns>Если <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> имеет значение true, полное имя каталога, в котором содержится запускаемый процесс.Если свойство <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> имеет значение false, рабочая папка для запускаемого процесса.Значение по умолчанию — пустая строка ("").</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessThread">
|
||||
<summary>Представляет поток процесса операционной системы.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.BasePriority">
|
||||
<summary>Возвращает базовый приоритет потока.</summary>
|
||||
<returns>Базовый приоритет потока, вычисляемый операционной системой путем совмещения класса приоритета процесса с уровнем приоритета соответствующего потока.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.CurrentPriority">
|
||||
<summary>Возвращает текущий приоритет потока.</summary>
|
||||
<returns>Текущий приоритет потока, который может отклоняться от базового, в зависимости от способа планирования потока в операционной системе.Для активного потока приоритет может быть временно увеличен.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.Id">
|
||||
<summary>Возвращает уникальный идентификатор потока.</summary>
|
||||
<returns>Уникальный идентификатор связан с конкретным потоком.</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.IdealProcessor">
|
||||
<summary>Устанавливает предпочтительный процессор для выполнения этого потока.</summary>
|
||||
<returns>Предпочтительный процессор для потока, используемый при планировании потока системой для определения процессора, на котором будет выполняться поток.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Системе не удалось задать поток для запуска на указанном процессоре. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Используется платформа Windows 98 или Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Данный процесс выполняется на удаленном компьютере.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PriorityBoostEnabled">
|
||||
<summary>Возвращает или задает значение, указывающее, должна ли операционная система временно увеличивать приоритет соответствующего потока всякий раз, когда основное окно процесса, которому принадлежит данный поток, получает фокус.</summary>
|
||||
<returns>Значение true для увеличения приоритета потока при взаимодействии пользователя с интерфейсом процесса или значение false в противном случае.Значение по умолчанию — false.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Не удается извлечь информацию о повышении приоритета.– или –Не удается задать информацию о повышении приоритета. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Используется платформа Windows 98 или Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Данный процесс выполняется на удаленном компьютере.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PriorityLevel">
|
||||
<summary>Возвращает или задает уровень приоритета потока.</summary>
|
||||
<returns>Одно из значений <see cref="T:System.Diagnostics.ThreadPriorityLevel" />, задающих диапазон, который ограничивает приоритет потока.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Не удается извлечь информацию об уровне приоритета потока. – или –Не удается задать информацию об уровне приоритета потока.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Используется платформа Windows 98 или Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Данный процесс выполняется на удаленном компьютере.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime">
|
||||
<summary>Возвращает количество времени, затрачиваемое потоком на выполнение кода внутри ядра операционной системы.</summary>
|
||||
<returns>Объект <see cref="T:System.TimeSpan" />, указывающий количество времени, которое поток потратил на выполнение кода внутри ядра операционной системы.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Не удалось извлечь затраченное потоком время. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Используется платформа Windows 98 или Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Данный процесс выполняется на удаленном компьютере.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.ProcessorAffinity">
|
||||
<summary>Задает процессоры, на которых может выполняться соответствующий поток.</summary>
|
||||
<returns>Объект <see cref="T:System.IntPtr" />, указывающий на набор битов, каждый из которых представляет процессор, где может выполняться поток.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Не удается задать сходство процессоров. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Используется платформа Windows 98 или Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Данный процесс выполняется на удаленном компьютере.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThread.ResetIdealProcessor">
|
||||
<summary>Отменяет идеальный процессор для данного потока, указывая тем самым на отсутствие единственного идеального процессора.Другими словами, для потока идеален любой процессор.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Не удается сбросить идеальный процессор. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Используется платформа Windows 98 или Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Данный процесс выполняется на удаленном компьютере.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.StartAddress">
|
||||
<summary>Возвращает адрес функции в памяти, которая была вызвана операционной системой и запустила этот поток.</summary>
|
||||
<returns>Начальный адрес потока, указывающий на определенную приложением функцию, которую выполняет данный поток.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Используется платформа Windows 98 или Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Данный процесс выполняется на удаленном компьютере.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.StartTime">
|
||||
<summary>Возвращает время запуска потока операционной системой.</summary>
|
||||
<returns>Класс <see cref="T:System.DateTime" />, представляющий системное время запуска потока операционной системой.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Не удалось извлечь затраченное потоком время. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Используется платформа Windows 98 или Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Данный процесс выполняется на удаленном компьютере.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.ThreadState">
|
||||
<summary>Возвращает текущее состояние данного потока.</summary>
|
||||
<returns>Объект <see cref="T:System.Diagnostics.ThreadState" />, указывающий на состояние выполнения потока, например, выполняется, ожидает или прекращен.</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Используется платформа Windows 98 или Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Данный процесс выполняется на удаленном компьютере.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.TotalProcessorTime">
|
||||
<summary>Возвращает общее количество времени, которое потратил поток на обработку процессором.</summary>
|
||||
<returns>Объект <see cref="T:System.TimeSpan" />, указывающий количество времени, на протяжении которого поток контролировал процессор.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Не удалось извлечь затраченное потоком время. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Используется платформа Windows 98 или Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Данный процесс выполняется на удаленном компьютере.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.UserProcessorTime">
|
||||
<summary>Возвращает количество времени, которое поток потратил на выполнение кода внутри приложения.</summary>
|
||||
<returns>Объект <see cref="T:System.TimeSpan" />, указывающий количество времени, которое поток потратил на выполнение кода внутри приложения, в отличие от выполнения в ядре операционной системы.</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Не удалось извлечь затраченное потоком время. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Используется платформа Windows 98 или Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Данный процесс выполняется на удаленном компьютере.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.WaitReason">
|
||||
<summary>Возвращает причину, по которой поток находится в состоянии ожидания.</summary>
|
||||
<returns>Объект <see cref="T:System.Diagnostics.ThreadWaitReason" />, представляющий причину нахождения потока в состоянии ожидания.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">Поток не находится в состоянии ожидания. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">Используется платформа Windows 98 или Windows Millennium Edition. </exception>
|
||||
<exception cref="T:System.NotSupportedException">Данный процесс выполняется на удаленном компьютере.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessThreadCollection">
|
||||
<summary>Содержит строго типизированную коллекцию объектов <see cref="T:System.Diagnostics.ProcessThread" />.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.#ctor">
|
||||
<summary>Инициализирует новый экземпляр класса <see cref="T:System.Diagnostics.ProcessThreadCollection" /> без использования связанных экземпляров <see cref="T:System.Diagnostics.ProcessThread" />.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])">
|
||||
<summary>Инициализирует новый экземпляр класса <see cref="T:System.Diagnostics.ProcessThreadCollection" />, используя указанный массив экземпляров <see cref="T:System.Diagnostics.ProcessThread" />.</summary>
|
||||
<param name="processThreads">Массив экземпляров <see cref="T:System.Diagnostics.ProcessThread" />, с помощью которого инициализируется экземпляр <see cref="T:System.Diagnostics.ProcessThreadCollection" />. </param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)">
|
||||
<summary>Добавляет поток процесса в коллекцию.</summary>
|
||||
<returns>Отсчитываемый с нуля индекс потока в коллекции.</returns>
|
||||
<param name="thread">Поток, который требуется добавить в коллекцию. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)">
|
||||
<summary>Определяет, существует ли указанный поток процесса в коллекции.</summary>
|
||||
<returns>Значение true, если поток присутствует в коллекции; в противном случае — значение false.</returns>
|
||||
<param name="thread">Экземпляр <see cref="T:System.Diagnostics.ProcessThread" />, указывающий на искомый поток в коллекции. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)">
|
||||
<summary>Копирует в коллекцию массив экземпляров <see cref="T:System.Diagnostics.ProcessThread" /> по указанному индексу.</summary>
|
||||
<param name="array">Массив экземпляров <see cref="T:System.Diagnostics.ProcessThread" /> для добавления в коллекцию. </param>
|
||||
<param name="index">Место, куда добавляются новые экземпляры. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.Count"></member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.GetEnumerator"></member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)">
|
||||
<summary>Предоставляет место указанного потока в коллекции.</summary>
|
||||
<returns>Отсчитываемый с нуля индекс, который определяет место потока в коллекции <see cref="T:System.Diagnostics.ProcessThreadCollection" />.</returns>
|
||||
<param name="thread">Класс <see cref="T:System.Diagnostics.ProcessThread" />, чей индекс извлекается. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)">
|
||||
<summary>Вставляет поток процесса в указанное место в коллекции.</summary>
|
||||
<param name="index">Отсчитываемый с нуля индекс, указывающий на место, в которое должен быть вставлен поток. </param>
|
||||
<param name="thread">Поток, вставляемый в коллекцию. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)">
|
||||
<summary>Получает индекс для итерационного перебора набора потоков процесса.</summary>
|
||||
<returns>Класс <see cref="T:System.Diagnostics.ProcessThread" />, который индексирует потоки в коллекции.</returns>
|
||||
<param name="index">Отсчитываемое с нуля значение потока в коллекции. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)">
|
||||
<summary>Удаляет поток процесса из коллекции.</summary>
|
||||
<param name="thread">Поток, который нужно удалить из коллекции. </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"></member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized"></member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot"></member>
|
||||
<member name="T:System.Diagnostics.ThreadPriorityLevel">
|
||||
<summary>Задает уровень приоритета потока.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.AboveNormal">
|
||||
<summary>Задает приоритет на один уровень выше нормального для связанного <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.BelowNormal">
|
||||
<summary>Задает приоритет на один уровень ниже нормального для связанного <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Highest">
|
||||
<summary>Задает высший приоритет.Он на два уровня выше нормального приоритета для связанного <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Idle">
|
||||
<summary>Задает приоритет простоя.Это самое низкое из возможных значений приоритета всех потоков, независимо от значения связанного <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Lowest">
|
||||
<summary>Задает низший приоритет.Он на два уровня ниже нормального приоритета для связанного <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Normal">
|
||||
<summary>Задает нормальный приоритет для связанного <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.TimeCritical">
|
||||
<summary>Задает критичный по времени приоритет.Это самый высокий приоритет всех потоков, независимо от значения связанного <see cref="T:System.Diagnostics.ProcessPriorityClass" />.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ThreadState">
|
||||
<summary>Задает текущее состояние выполнения потока.</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Initialized">
|
||||
<summary>Состояние, указывающее, что поток инициализирован, но еще не запущен.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Ready">
|
||||
<summary>Состояние, указывающее, что поток ожидает освобождения процессора.Поток готов к выполнению на следующем доступном процессоре.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Running">
|
||||
<summary>Состояние, указывающее, что поток в данный момент использует процессор.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Standby">
|
||||
<summary>Состояние, указывающее, что поток приступает к использованию процессора.В каждый момент времени в этом состоянии может быть только один поток.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Terminated">
|
||||
<summary>Состояние, указывающее, что выполнение потока завершено и он выполнил выход.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Transition">
|
||||
<summary>Состояние, указывающее, что поток ожидает ресурс (не процессор), необходимый для его выполнения.Например, он может ожидать считывания с диска стека его выполнения.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Unknown">
|
||||
<summary>Состояние потока неизвестно.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Wait">
|
||||
<summary>Состояние, указывающее, что поток не готов использовать процессор, поскольку ожидает завершения внешней операции или освобождения ресурса.Когда поток становится готовым, его выполнение планируется повторно.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ThreadWaitReason">
|
||||
<summary>Указывает причину, по которой поток находится в состоянии ожидания.</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.EventPairHigh">
|
||||
<summary>Поток ожидает старшую составляющую пары события.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.EventPairLow">
|
||||
<summary>Поток ожидает младшую составляющую пары события.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.ExecutionDelay">
|
||||
<summary>Выполнение потока отложено.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Executive">
|
||||
<summary>Поток ожидает планировщик.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.FreePage">
|
||||
<summary>Поток ожидает свободную страницу виртуальной памяти.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.LpcReceive">
|
||||
<summary>Поток ожидает поступления вызова локальной процедуры.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.LpcReply">
|
||||
<summary>Поток ожидает поступления ответа на вызов локальной процедуры.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.PageIn">
|
||||
<summary>Поток ожидает поступления страницы виртуальной памяти в память.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.PageOut">
|
||||
<summary>Поток ожидает записи страницы виртуальной памяти на диск.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Suspended">
|
||||
<summary>Выполнение потока приостановлено.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.SystemAllocation">
|
||||
<summary>Поток ожидает системных ресурсов.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Unknown">
|
||||
<summary>Причина ожидания потока неизвестна.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.UserRequest">
|
||||
<summary>Поток ожидает запроса пользователя.</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.VirtualMemory">
|
||||
<summary>Поток ожидает выделения системой виртуальной памяти.</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
997
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml
vendored
Normal file
997
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml
vendored
Normal file
@@ -0,0 +1,997 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Diagnostics.Process</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Win32.SafeHandles.SafeProcessHandle">
|
||||
<summary>[SECURITY CRITICAL] 为一个进程句柄提供托管包装。</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)">
|
||||
<summary>[SECURITY CRITICAL] 初始化的新实例<see cref="T:Microsoft.Win32.SafeHandles.SafeProcessHandle" />从,该值指示是否在终结阶段释放该句柄指定的句柄的类。</summary>
|
||||
<param name="existingHandle">要包装的句柄。</param>
|
||||
<param name="ownsHandle">true若要可靠地让<see cref="T:Microsoft.Win32.SafeHandles.SafeProcessHandle" />在终结阶段 ; 释放该句柄否则为false。</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid"></member>
|
||||
<member name="T:System.Diagnostics.DataReceivedEventArgs">
|
||||
<summary>为 <see cref="E:System.Diagnostics.Process.OutputDataReceived" /> 和 <see cref="E:System.Diagnostics.Process.ErrorDataReceived" /> 事件提供数据。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.DataReceivedEventArgs.Data">
|
||||
<summary>获取写入到重定向 <see cref="T:System.Diagnostics.Process" /> 输出流的字符行。</summary>
|
||||
<returns>由关联的 <see cref="T:System.Diagnostics.Process" /> 写入到其重定向 <see cref="P:System.Diagnostics.Process.StandardOutput" /> 或 <see cref="P:System.Diagnostics.Process.StandardError" /> 流中的行。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.DataReceivedEventHandler">
|
||||
<summary>表示将要处理 <see cref="T:System.Diagnostics.Process" /> 的 <see cref="E:System.Diagnostics.Process.OutputDataReceived" /> 事件或 <see cref="E:System.Diagnostics.Process.ErrorDataReceived" /> 事件的方法。</summary>
|
||||
<param name="sender">事件源。</param>
|
||||
<param name="e">包含事件数据的 <see cref="T:System.Diagnostics.DataReceivedEventArgs" />。 </param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.Process">
|
||||
<summary>提供对本地和远程进程的访问权限并使你能够启动和停止本地系统进程。若要浏览此类型的 .NET Framework 源代码,请参阅引用源。</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.#ctor">
|
||||
<summary>初始化 <see cref="T:System.Diagnostics.Process" /> 类的新实例。</summary>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.BasePriority">
|
||||
<summary>获取关联进程的基本优先级。</summary>
|
||||
<returns>基本优先级别,它从关联进程的 <see cref="P:System.Diagnostics.Process.PriorityClass" /> 计算。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has exited.-or- The process has not started, so there is no process ID. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.BeginErrorReadLine">
|
||||
<summary>在应用程序的重定向 <see cref="P:System.Diagnostics.Process.StandardError" /> 流上开始进行异步读取操作。</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref="P:System.Diagnostics.Process.StandardError" /> stream.- or - The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has been used by a synchronous read operation. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.BeginOutputReadLine">
|
||||
<summary>在应用程序的重定向 <see cref="P:System.Diagnostics.Process.StandardOutput" /> 流上开始进行异步读取操作。</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream.- or - The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has been used by a synchronous read operation. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.CancelErrorRead">
|
||||
<summary>取消在应用程序的重定向 <see cref="P:System.Diagnostics.Process.StandardError" /> 流上执行的异步读取操作。</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardError" /> stream is not enabled for asynchronous read operations. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.CancelOutputRead">
|
||||
<summary>取消在应用程序的重定向 <see cref="P:System.Diagnostics.Process.StandardOutput" /> 流上执行的异步读取操作。</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream is not enabled for asynchronous read operations. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Dispose"></member>
|
||||
<member name="M:System.Diagnostics.Process.Dispose(System.Boolean)">
|
||||
<summary>释放此进程使用的所有资源。</summary>
|
||||
<param name="disposing">若要释放托管资源和非托管资源,则为 true;若仅释放非托管资源,则为 false。</param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.EnableRaisingEvents">
|
||||
<summary>获取或设置在进程终止时是否应激发 <see cref="E:System.Diagnostics.Process.Exited" /> 事件。</summary>
|
||||
<returns>如果关联的进程终止(通过退出或者调用 <see cref="M:System.Diagnostics.Process.Kill" />)时应引发 <see cref="E:System.Diagnostics.Process.Exited" /> 事件,则为 true;否则为 false。默认值为 false。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.EnterDebugMode">
|
||||
<summary>通过启用当前线程的本机属性 SeDebugPrivilege,将 <see cref="T:System.Diagnostics.Process" /> 组件置于与以特殊模式运行的操作系统进程交互的状态。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.ErrorDataReceived">
|
||||
<summary>当应用程序写入其重定向 <see cref="P:System.Diagnostics.Process.StandardError" /> 流中时发生。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ExitCode">
|
||||
<summary>获取关联进程终止时指定的值。</summary>
|
||||
<returns>关联进程终止时指定的代码。</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process has not exited.-or- The process <see cref="P:System.Diagnostics.Process.Handle" /> is not valid. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.ExitCode" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.Exited">
|
||||
<summary>在进程退出时发生。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ExitTime">
|
||||
<summary>获取关联进程退出的时间。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.DateTime" />,它指示关联进程终止的时间。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.ExitTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetCurrentProcess">
|
||||
<summary>获取新的 <see cref="T:System.Diagnostics.Process" /> 组件并将其与当前活动的进程关联。</summary>
|
||||
<returns>与运行调用应用程序的进程资源关联的新的 <see cref="T:System.Diagnostics.Process" /> 组件。</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessById(System.Int32)">
|
||||
<summary>返回新的 <see cref="T:System.Diagnostics.Process" /> 组件(给定本地计算机上某个进程的标识符)。</summary>
|
||||
<returns>一个与 <paramref name="processId" /> 参数标识的本地进程资源关联的 <see cref="T:System.Diagnostics.Process" /> 组件。</returns>
|
||||
<param name="processId">进程资源的系统唯一标识符。</param>
|
||||
<exception cref="T:System.ArgumentException">The process specified by the <paramref name="processId" /> parameter is not running.The identifier might be expired.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process was not started by this object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)">
|
||||
<summary>返回新的 <see cref="T:System.Diagnostics.Process" /> 组件(给定进程标识符和网络中计算机的名称)。</summary>
|
||||
<returns>一个与 <paramref name="processId" /> 参数标识的远程进程资源关联的 <see cref="T:System.Diagnostics.Process" /> 组件。</returns>
|
||||
<param name="processId">进程资源的系统唯一标识符。</param>
|
||||
<param name="machineName">网络上计算机的名称。</param>
|
||||
<exception cref="T:System.ArgumentException">The process specified by the <paramref name="processId" /> parameter is not running.The identifier might be expired.-or- The <paramref name="machineName" /> parameter syntax is invalid.The name might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process was not started by this object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcesses">
|
||||
<summary>为本地计算机上的每个进程资源创建一个新的 <see cref="T:System.Diagnostics.Process" /> 组件。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.Process" /> 类型的数组,它表示本地计算机上运行的所有进程资源。</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcesses(System.String)">
|
||||
<summary>为指定计算机上的每个进程资源创建一个新的 <see cref="T:System.Diagnostics.Process" /> 组件。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.Process" /> 类型的数组,表示指定计算机上运行的所有进程资源。</returns>
|
||||
<param name="machineName">从其中读取进程列表的计算机。</param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="machineName" /> parameter syntax is invalid.It might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The operating system platform does not support this operation on remote computers. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A problem occurred accessing an underlying system API. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessesByName(System.String)">
|
||||
<summary>创建新的 <see cref="T:System.Diagnostics.Process" /> 组件的数组,并将它们与本地计算机上共享指定的进程名称的所有进程资源关联。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.Process" /> 类型的数组,表示运行指定应用程序或文件的进程资源。</returns>
|
||||
<param name="processName">该进程的友好名称。</param>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)">
|
||||
<summary>创建新的 <see cref="T:System.Diagnostics.Process" /> 组件的数组,并将它们与远程计算机上共享指定进程名称的所有进程资源关联。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.Process" /> 类型的数组,表示运行指定应用程序或文件的进程资源。</returns>
|
||||
<param name="processName">该进程的友好名称。</param>
|
||||
<param name="machineName">网络上计算机的名称。</param>
|
||||
<exception cref="T:System.ArgumentException">The <paramref name="machineName" /> parameter syntax is invalid.It might have length zero (0).</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="machineName" /> parameter is null. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The operating system platform does not support this operation on remote computers. </exception>
|
||||
<exception cref="T:System.InvalidOperationException">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A problem occurred accessing an underlying system API. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.HasExited">
|
||||
<summary>获取指示关联进程是否已终止的值。</summary>
|
||||
<returns>如果 <see cref="T:System.Diagnostics.Process" /> 组件引用的操作系统进程已终止,则为 true;否则为 false。</returns>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with the object. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The exit code for the process could not be retrieved. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.HasExited" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Id">
|
||||
<summary>获取关联进程的唯一标识符。</summary>
|
||||
<returns>此 <see cref="T:System.Diagnostics.Process" /> 实例引用的、由系统生成的进程的唯一标识符。</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process's <see cref="P:System.Diagnostics.Process.Id" /> property has not been set.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Kill">
|
||||
<summary>立即停止关联的进程。</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to call <see cref="M:System.Diagnostics.Process.Kill" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has already exited. -or-There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.LeaveDebugMode">
|
||||
<summary>使 <see cref="T:System.Diagnostics.Process" /> 组件离开允许它与以特殊模式运行的操作系统进程交互的状态。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MachineName">
|
||||
<summary>获取关联进程正在其上运行的计算机的名称。</summary>
|
||||
<returns>关联进程正在其上运行的计算机的名称。</returns>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MainModule">
|
||||
<summary>获取关联进程的主模块。</summary>
|
||||
<returns>用于启动进程的 <see cref="T:System.Diagnostics.ProcessModule" />。</returns>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MainModule" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">A 32-bit process is trying to access the modules of a 64-bit process.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MaxWorkingSet">
|
||||
<summary>获取或设置关联进程的允许的最大工作集大小。</summary>
|
||||
<returns>内存中允许的进程的最大工作集大小(以字节为单位)。</returns>
|
||||
<exception cref="T:System.ArgumentException">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MaxWorkingSet" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.MinWorkingSet">
|
||||
<summary>获取或设置关联进程的允许的最小工作集大小。</summary>
|
||||
<returns>内存中进程所需的最小工作集大小(以字节为单位)。</returns>
|
||||
<exception cref="T:System.ArgumentException">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are trying to access the <see cref="P:System.Diagnostics.Process.MinWorkingSet" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.-or- The process has exited.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Modules">
|
||||
<summary>获取已由关联进程加载的模块。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.ProcessModule" /> 类型的数组,它表示已由关联进程加载的模块。</returns>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.Modules" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">You are attempting to access the <see cref="P:System.Diagnostics.Process.Modules" /> property for either the system process or the idle process.These processes do not have modules.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.NonpagedSystemMemorySize64">
|
||||
<summary>获取为关联的进程分配的非分页系统内存量。</summary>
|
||||
<returns>为关联的进程分配的、不能写入虚拟内存分页文件中的系统内存量(以字节为单位)。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.OnExited">
|
||||
<summary>引发 <see cref="E:System.Diagnostics.Process.Exited" /> 事件。</summary>
|
||||
</member>
|
||||
<member name="E:System.Diagnostics.Process.OutputDataReceived">
|
||||
<summary>每次应用程序向其重定向 <see cref="P:System.Diagnostics.Process.StandardOutput" /> 流中写入行时发生。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PagedMemorySize64">
|
||||
<summary>获取为关联的进程分配的分页内存量。</summary>
|
||||
<returns>在虚拟内存分页文件中为关联进程分配的内存量(以字节为单位)。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PagedSystemMemorySize64">
|
||||
<summary>获取为关联进程分配的可分页系统内存量。</summary>
|
||||
<returns>为可写入虚拟内存分页文件的关联内存分配的系统内存量(以字节为单位)。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakPagedMemorySize64">
|
||||
<summary>获取关联的进程使用的虚拟内存分页文件中的最大内存量。</summary>
|
||||
<returns>从启动关联的进程以来在为虚拟内存分页文件中关联进程分配的最大内存量(以字节为单位)。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakVirtualMemorySize64">
|
||||
<summary>获取关联进程使用的最大虚拟内存量。</summary>
|
||||
<returns>从关联进程启动以来为关联进程分配的最大虚拟内存量(以字节为单位)。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PeakWorkingSet64">
|
||||
<summary>获取关联进程使用的最大物理内存量。</summary>
|
||||
<returns>从启动关联进程以来为关联进程分配的最大物理内存量(以字节为单位)。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PriorityBoostEnabled">
|
||||
<summary>获取或设置一个值,该值指示主窗口拥有焦点时是否应由操作系统暂时提升关联进程优先级。</summary>
|
||||
<returns>如果进程离开等待状态时应动态提升进程优先级别,则为 true;否则为 false。默认值为 false。</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Priority boost information could not be retrieved from the associated process resource. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PriorityBoostEnabled" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PriorityClass">
|
||||
<summary>获取或设置关联进程的总体优先级类别。</summary>
|
||||
<returns>关联进程的优先级别类别,可从该类别计算进程的 <see cref="P:System.Diagnostics.Process.BasePriority" />。</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PriorityClass" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> is not available.</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">You have set the <see cref="P:System.Diagnostics.Process.PriorityClass" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>
|
||||
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">Priority class cannot be set because it does not use a valid value, as defined in the <see cref="T:System.Diagnostics.ProcessPriorityClass" /> enumeration.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PrivateMemorySize64">
|
||||
<summary>获取为关联进程分配的专用内存量。</summary>
|
||||
<returns>为关联进程分配的不能与其他进程共享的内存量(以字节为单位)。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.PrivilegedProcessorTime">
|
||||
<summary>获取此进程的特权处理器时间。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.TimeSpan" />,它指示进程在操作系统内核中运行代码所用的时间。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.PrivilegedProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ProcessName">
|
||||
<summary>获取该进程的名称。</summary>
|
||||
<returns>系统用以向用户标识该进程的名称。</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The process does not have an identifier, or no process is associated with the <see cref="T:System.Diagnostics.Process" />.-or- The associated process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<exception cref="T:System.NotSupportedException">The process is not on this computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.ProcessorAffinity">
|
||||
<summary>获取或设置一些处理器,此进程中的线程可以按计划在这些处理器上运行。</summary>
|
||||
<returns>位掩码,表示关联进程内的线程可以在其上运行的处理器。默认值取决于计算机上的处理器数。默认值为 2 n -1,其中 n 是处理器数。</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<see cref="P:System.Diagnostics.Process.ProcessorAffinity" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.ProcessorAffinity" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process <see cref="P:System.Diagnostics.Process.Id" /> was not available.-or- The process has exited. </exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Refresh">
|
||||
<summary>放弃已缓存到进程组件的关联仅存的任何相关信息。</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.SafeHandle">
|
||||
<summary>获取此进程的本机句柄。</summary>
|
||||
<returns>此进程的本机句柄。</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.SessionId">
|
||||
<summary>获取关联进程的终端服务会话标识符。</summary>
|
||||
<returns>关联进程的终端服务会话标识符。</returns>
|
||||
<exception cref="T:System.NullReferenceException">There is no session associated with this process.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The <see cref="P:System.Diagnostics.Process.SessionId" /> property is not supported on Windows 98.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardError">
|
||||
<summary>获取用于读取应用程序错误输出的流。</summary>
|
||||
<returns>一个 <see cref="T:System.IO.StreamReader" />,可用于读取应用程序的标准错误流。</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has not been defined for redirection; ensure <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> is set to true and <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is set to false.- or - The <see cref="P:System.Diagnostics.Process.StandardError" /> stream has been opened for asynchronous read operations with <see cref="M:System.Diagnostics.Process.BeginErrorReadLine" />. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardInput">
|
||||
<summary>获取用于写入应用程序输入的流。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.IO.StreamWriter" />,可用于写入应用程序的标准输入流。</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardInput" /> stream has not been defined because <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" /> is set to false. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StandardOutput">
|
||||
<summary>获取用于读取应用程序文本输出的流。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.IO.StreamReader" />,可用于读取应用程序的标准输出流。</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has not been defined for redirection; ensure <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" /> is set to true and <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> is set to false.- or - The <see cref="P:System.Diagnostics.Process.StandardOutput" /> stream has been opened for asynchronous read operations with <see cref="M:System.Diagnostics.Process.BeginOutputReadLine" />. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start">
|
||||
<summary>启动(或重用)此 <see cref="T:System.Diagnostics.Process" /> 组件的 <see cref="P:System.Diagnostics.Process.StartInfo" /> 属性指定的进程资源,并将其与该组件关联。</summary>
|
||||
<returns>如果启动了进程资源,则为 true;如果没有启动新的进程资源(例如,如果重用了现有进程),则为 false。</returns>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified in the <see cref="T:System.Diagnostics.Process" /> component's <see cref="P:System.Diagnostics.Process.StartInfo" />.-or- The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> member of the <see cref="P:System.Diagnostics.Process.StartInfo" /> property is true while <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" />, <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" />, or <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> is true. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">There was an error in opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)">
|
||||
<summary>启动由包含进程启动信息(例如,要启动的进程的文件名)的参数指定的进程资源,并将该资源与新的 <see cref="T:System.Diagnostics.Process" /> 组件关联。</summary>
|
||||
<returns>一个与进程资源关联的新 <see cref="T:System.Diagnostics.Process" />,如果未启动进程资源,则为 null。请注意,随着同一进程已在运行的实例启动的新进程将独立于其他进程。此外,启动可能返回一个 <see cref="T:System.Diagnostics.ProcessHasExited" /> 属性已设置为 true 的非 null 进程。在这种情况下,启动的进程可能已激活现有实例自身,然后退出。</returns>
|
||||
<param name="startInfo">
|
||||
<see cref="T:System.Diagnostics.ProcessStartInfo" />,包含用于启动进程的信息(包括文件名和任何命令行参数)。</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified in the <paramref name="startInfo" /> parameter's <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property.-or- The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property of the <paramref name="startInfo" /> parameter is true and the <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput" />, <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput" />, or <see cref="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError" /> property is also true.-or-The <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> property of the <paramref name="startInfo" /> parameter is true and the <see cref="P:System.Diagnostics.ProcessStartInfo.UserName" /> property is not null or empty or the <see cref="P:System.Diagnostics.ProcessStartInfo.Password" /> property is not null.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="startInfo" /> parameter is null. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The file specified in the <paramref name="startInfo" /> parameter's <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> property could not be found.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String)">
|
||||
<summary>通过指定文档或应用程序文件的名称来启动进程资源,并将资源与新的 <see cref="T:System.Diagnostics.Process" /> 组件关联。</summary>
|
||||
<returns>一个与进程资源关联的新 <see cref="T:System.Diagnostics.Process" />,如果未启动进程资源,则为 null。请注意,随着同一进程已在运行的实例启动的新进程将独立于其他进程。此外,启动可能返回一个 <see cref="T:System.Diagnostics.ProcessHasExited" /> 属性已设置为 true 的非 null 进程。在这种情况下,启动的进程可能已激活现有实例自身,然后退出。</returns>
|
||||
<param name="fileName">要在进程中运行的文档或应用程序文件的名称。</param>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The PATH environment variable has a string containing quotes.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String)">
|
||||
<summary>通过指定应用程序的名称和一组命令行参数来启动一个进程资源,并将该资源与新的 <see cref="T:System.Diagnostics.Process" /> 组件相关联。</summary>
|
||||
<returns>一个与进程资源关联的新 <see cref="T:System.Diagnostics.Process" />,如果未启动进程资源,则为 null。请注意,随着同一进程已在运行的实例启动的新进程将独立于其他进程。此外,启动可能返回一个 <see cref="T:System.Diagnostics.ProcessHasExited" /> 属性已设置为 true 的非 null 进程。在这种情况下,启动的进程可能已激活现有实例自身,然后退出。</returns>
|
||||
<param name="fileName">要在进程中运行的应用程序文件的名称。</param>
|
||||
<param name="arguments">启动该进程时传递的命令行参数。</param>
|
||||
<exception cref="T:System.InvalidOperationException">The <paramref name="fileName" /> or <paramref name="arguments" /> parameter is null. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">The PATH environment variable has a string containing quotes.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)">
|
||||
<summary>通过指定应用程序的名称、用户名、密码和域来启动一个进程资源,并将该资源与新的 <see cref="T:System.Diagnostics.Process" /> 组件关联起来。</summary>
|
||||
<returns>一个与进程资源关联的新 <see cref="T:System.Diagnostics.Process" />,如果未启动进程资源,则为 null。请注意,随着同一进程已在运行的实例启动的新进程将独立于其他进程。此外,启动可能返回一个 <see cref="T:System.Diagnostics.ProcessHasExited" /> 属性已设置为 true 的非 null 进程。在这种情况下,启动的进程可能已激活现有实例自身,然后退出。</returns>
|
||||
<param name="fileName">要在进程中运行的应用程序文件的名称。</param>
|
||||
<param name="userName">启动进程时使用的用户名。</param>
|
||||
<param name="password">一个 <see cref="T:System.Security.SecureString" />,它包含启动进程时要使用的密码。</param>
|
||||
<param name="domain">启动进程时要使用的域。</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified. </exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<paramref name="fileName" /> is not an executable (.exe) file.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">There was an error in opening the associated file. </exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)">
|
||||
<summary>通过指定应用程序的名称、一组命令行参数、用户名、密码和域来启动一个进程资源,并将该资源与新的 <see cref="T:System.Diagnostics.Process" /> 组件关联起来。</summary>
|
||||
<returns>一个与进程资源关联的新 <see cref="T:System.Diagnostics.Process" />,如果未启动进程资源,则为 null。请注意,随着同一进程已在运行的实例启动的新进程将独立于其他进程。此外,启动可能返回一个 <see cref="T:System.Diagnostics.ProcessHasExited" /> 属性已设置为 true 的非 null 进程。在这种情况下,启动的进程可能已激活现有实例自身,然后退出。</returns>
|
||||
<param name="fileName">要在进程中运行的应用程序文件的名称。</param>
|
||||
<param name="arguments">启动该进程时传递的命令行参数。</param>
|
||||
<param name="userName">启动进程时使用的用户名。</param>
|
||||
<param name="password">一个 <see cref="T:System.Security.SecureString" />,它包含启动进程时要使用的密码。</param>
|
||||
<param name="domain">启动进程时要使用的域。</param>
|
||||
<exception cref="T:System.InvalidOperationException">No file name was specified.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">
|
||||
<paramref name="fileName" /> is not an executable (.exe) file.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: "The data area passed to a system call is too small." or "Access is denied."</exception>
|
||||
<exception cref="T:System.ObjectDisposedException">The process object has already been disposed. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StartInfo">
|
||||
<summary>获取或设置要传递给 <see cref="T:System.Diagnostics.Process" /> 的 <see cref="M:System.Diagnostics.Process.Start" /> 方法的属性。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.ProcessStartInfo" />,它表示启动该进程时要使用的数据。这些参数包括用于启动该进程的可执行文件或文档的名称。</returns>
|
||||
<exception cref="T:System.ArgumentNullException">The value that specifies the <see cref="P:System.Diagnostics.Process.StartInfo" /> is null. </exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.StartTime">
|
||||
<summary>获取关联进程启动的时间。</summary>
|
||||
<returns>指示进程启动的时间的对象。如果进程未运行,将会引发异常。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.StartTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The process has exited.-or-The process has not been started.</exception>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">An error occurred in the call to the Windows function.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.Threads">
|
||||
<summary>获取在关联进程中运行的一组线程。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.ProcessThread" /> 类型的数组,它表示当前在关联进程中运行的操作系统线程。</returns>
|
||||
<exception cref="T:System.SystemException">The process does not have an <see cref="P:System.Diagnostics.Process.Id" />, or no process is associated with the <see cref="T:System.Diagnostics.Process" /> instance.-or- The associated process has exited. </exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> to false to access this property on Windows 98 and Windows Me.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.TotalProcessorTime">
|
||||
<summary>获取此进程的总的处理器时间。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.TimeSpan" />,它指示关联进程使用 CPU 的时间。此值是 <see cref="P:System.Diagnostics.Process.UserProcessorTime" /> 和 <see cref="P:System.Diagnostics.Process.PrivilegedProcessorTime" /> 的和。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.TotalProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.UserProcessorTime">
|
||||
<summary>获取此进程的用户处理器时间。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.TimeSpan" />,它指示关联进程在该进程的应用程序部分内(而不是在操作系统内核中)运行代码所用的时间。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>
|
||||
<exception cref="T:System.NotSupportedException">You are attempting to access the <see cref="P:System.Diagnostics.Process.UserProcessorTime" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.VirtualMemorySize64">
|
||||
<summary>获取为关联进程分配的虚拟内存量。</summary>
|
||||
<returns>为关联进程分配的虚拟内存量(以字节为单位)。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.WaitForExit">
|
||||
<summary>指示 <see cref="T:System.Diagnostics.Process" /> 组件无限期地等待关联进程退出。</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The wait setting could not be accessed. </exception>
|
||||
<exception cref="T:System.SystemException">No process <see cref="P:System.Diagnostics.Process.Id" /> has been set, and a <see cref="P:System.Diagnostics.Process.Handle" /> from which the <see cref="P:System.Diagnostics.Process.Id" /> property can be determined does not exist.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.-or- You are attempting to call <see cref="M:System.Diagnostics.Process.WaitForExit" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.Process.WaitForExit(System.Int32)">
|
||||
<summary>指示 <see cref="T:System.Diagnostics.Process" /> 组件在指定的毫秒数内等待关联进程退出。</summary>
|
||||
<returns>如果关联进程已退出,则为 true;否则为 false。</returns>
|
||||
<param name="milliseconds">等待关联进程退出的时间(以毫秒为单位)。最大值为 32 位整数的最大可能值,这对于操作系统而言表示无限大。</param>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The wait setting could not be accessed. </exception>
|
||||
<exception cref="T:System.SystemException">No process <see cref="P:System.Diagnostics.Process.Id" /> has been set, and a <see cref="P:System.Diagnostics.Process.Handle" /> from which the <see cref="P:System.Diagnostics.Process.Id" /> property can be determined does not exist.-or- There is no process associated with this <see cref="T:System.Diagnostics.Process" /> object.-or- You are attempting to call <see cref="M:System.Diagnostics.Process.WaitForExit(System.Int32)" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.Process.WorkingSet64">
|
||||
<summary>获取为关联进程分配的物理内存量。</summary>
|
||||
<returns>为关的进程分配的物理内存量(以字节为单位)。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessModule">
|
||||
<summary>表示加载到特定进程中的 .dll 或 .exe 文件。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.BaseAddress">
|
||||
<summary>获取加载模块的内存地址。</summary>
|
||||
<returns>模块的加载地址。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.EntryPointAddress">
|
||||
<summary>获取在系统加载和运行模块时运行的函数的内存地址。</summary>
|
||||
<returns>模块的入口点。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.FileName">
|
||||
<summary>获取模块的完整路径。</summary>
|
||||
<returns>定义模块位置的完全限定路径。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.ModuleMemorySize">
|
||||
<summary>获取加载模块所需内存量。</summary>
|
||||
<returns>模块占用的内存大小(以字节为单位)。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModule.ModuleName">
|
||||
<summary>获取进程模块的名称。</summary>
|
||||
<returns>模块的名称。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModule.ToString">
|
||||
<summary>将模块的名称转换为字符串。</summary>
|
||||
<returns>
|
||||
<see cref="P:System.Diagnostics.ProcessModule.ModuleName" /> 属性的值。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessModuleCollection">
|
||||
<summary>提供 <see cref="T:System.Diagnostics.ProcessModule" /> 对象的强类型集合。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.#ctor">
|
||||
<summary>在没有关联的 <see cref="T:System.Diagnostics.ProcessModule" /> 实例的情况下,初始化 <see cref="T:System.Diagnostics.ProcessModuleCollection" /> 类的新实例。</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])">
|
||||
<summary>使用指定的 <see cref="T:System.Diagnostics.ProcessModule" /> 实例数组来初始化 <see cref="T:System.Diagnostics.ProcessModuleCollection" /> 类的新实例。</summary>
|
||||
<param name="processModules">用来初始化该 <see cref="T:System.Diagnostics.ProcessModuleCollection" /> 实例的 <see cref="T:System.Diagnostics.ProcessModule" /> 实例的数组。</param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)">
|
||||
<summary>确定集合中是否存在指定的进程模块。</summary>
|
||||
<returns>如果集合中存在该模块,则为 true;否则为 false。</returns>
|
||||
<param name="module">一个 <see cref="T:System.Diagnostics.ProcessModule" /> 实例,它指示要该集合中查找的模块。</param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)">
|
||||
<summary>将 <see cref="T:System.Diagnostics.ProcessModule" /> 实例的数组复制到集合的指定索引处。</summary>
|
||||
<param name="array">要添加到集合的 <see cref="T:System.Diagnostics.ProcessModule" /> 实例的数组。</param>
|
||||
<param name="index">要添加新实例的位置。</param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.Count"></member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.GetEnumerator"></member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)">
|
||||
<summary>提供指定模块在集合中的位置。</summary>
|
||||
<returns>从零开始的索引,它定义模块在 <see cref="T:System.Diagnostics.ProcessModuleCollection" /> 中的位置。</returns>
|
||||
<param name="module">检索其索引的 <see cref="T:System.Diagnostics.ProcessModule" />。</param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)">
|
||||
<summary>获取用于循环访问进程模块集的索引。</summary>
|
||||
<returns>一个 <see cref="T:System.Diagnostics.ProcessModule" />,它对集合中的模块进行索引</returns>
|
||||
<param name="index">集合中该模块的从零开始的索引值。</param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"></member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized"></member>
|
||||
<member name="P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot"></member>
|
||||
<member name="T:System.Diagnostics.ProcessPriorityClass">
|
||||
<summary>指示系统将与进程关联的优先级。此值与进程的每个线程的优先级值一起来确定每个线程的基本优先级别。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.AboveNormal">
|
||||
<summary>指定进程的优先级在 Normal 之上,但在 <see cref="F:System.Diagnostics.ProcessPriorityClass.High" /> 之下。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.BelowNormal">
|
||||
<summary>指定进程的优先级在 Idle 之上,但在 Normal 之下。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.High">
|
||||
<summary>指定进程执行必须立即执行的时间关键任务,如 Task List 对话框,不管操作系统的负荷如何,用户调用该对话框后均必须迅速响应。该进程的线程优先于普通或空闲优先级类进程的线程。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.Idle">
|
||||
<summary>指定此进程的线程只能在系统空闲时运行,如屏幕保护程序。更高优先级类中运行的任何进程的线程都优先于此进程的线程。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.Normal">
|
||||
<summary>指定进程没有特殊的安排需求。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ProcessPriorityClass.RealTime">
|
||||
<summary>指定进程拥有可能的最高优先级。</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessStartInfo">
|
||||
<summary>指定启动进程时使用的一组值。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor">
|
||||
<summary>初始化 <see cref="T:System.Diagnostics.ProcessStartInfo" /> 类的新实例,而不指定启动进程时使用的文件名。</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)">
|
||||
<summary>初始化 <see cref="T:System.Diagnostics.ProcessStartInfo" /> 类的新实例,并指定启动进程时使用的诸如应用程序或文档的文件名。</summary>
|
||||
<param name="fileName">启动进程时使用的应用程序或文档。</param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)">
|
||||
<summary>初始化 <see cref="T:System.Diagnostics.ProcessStartInfo" /> 类的新实例,指定启动该进程时使用的应用程序文件名以及要传递给该应用程序的一组命令行参数。</summary>
|
||||
<param name="fileName">启动进程时使用的应用程序。</param>
|
||||
<param name="arguments">进程启动时要传递给应用程序的命令行参数。</param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Arguments">
|
||||
<summary>获取或设置启动应用程序时要使用的一组命令行参数。</summary>
|
||||
<returns>单个字符串包含要传递给在 <see cref="P:System.Diagnostics.ProcessStartInfo.FileName" /> 属性中指定的目标应用程序的参数。默认值为空字符串 ("")。在 Windows Vista 和早期的 Windows 操作系统上,添加至进程全径的长度的参数长度必须小于 2080。在 Windows 7 和更高版本,此长度必须小于 32699。参数由目标应用程序进行分析和解释,因此必须与该应用程序的预期保持一致。对于以下示例中所演示的 .NET 的应用程序,空格被解释为多个参数之间的分隔符。包含空格的单个参数必须用引号引起来,但这些引号不会传递到目标应用程序。在包括引号在内的最终已分析的参数中,每个标记均会进行三重转义。</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.CreateNoWindow">
|
||||
<summary>获取或设置指示是否在新窗口中启动该进程的值。</summary>
|
||||
<returns>如果应启动该进程而不创建包含它的新窗口,则为 true;否则为 false。默认值为 false。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Domain">
|
||||
<summary>获取或设置一个值,该值标识要在启动进程时使用的域。</summary>
|
||||
<returns>要在启动进程时使用的 Active Directory 域。域属性主要与使用 Active Directory 的企业级环境内的用户相关。</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Environment"></member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.FileName">
|
||||
<summary>获取或设置要启动的应用程序或文档。</summary>
|
||||
<returns>要启动的应用程序的名称或某文件类型的文档的名称,该文件类型与应用程序关联并且拥有可用的默认打开操作。默认值为空字符串 ("")。</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.LoadUserProfile">
|
||||
<summary>获取或设置一个值,该值指示是否从注册表加载 Windows 用户配置文件。</summary>
|
||||
<returns>如果应加载 Windows 用户概况,则为 true;否则为 false。默认值为 false。</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.Password">
|
||||
<summary>获取或设置一个安全字符串,其中包含要在启动进程时使用的用户密码。</summary>
|
||||
<returns>启动进程时使用的用户密码。</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardError">
|
||||
<summary>获取或设置一个值,该值指示是否将应用程序的错误输出写入 <see cref="P:System.Diagnostics.Process.StandardError" /> 流中。</summary>
|
||||
<returns>如果错误输出应写入 <see cref="P:System.Diagnostics.Process.StandardError" />,则为 true;否则为 false。默认值为 false。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput">
|
||||
<summary>获取或设置一个值,该值指示应用程序的输入是否从 <see cref="P:System.Diagnostics.Process.StandardInput" /> 流中读取。</summary>
|
||||
<returns>如果应从 <see cref="P:System.Diagnostics.Process.StandardInput" /> 读取输入,则为 true;否则为 false。默认值为 false。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput">
|
||||
<summary>获取或设置一个值,该值指示是否将应用程序的输出写入 <see cref="P:System.Diagnostics.Process.StandardOutput" /> 流中。</summary>
|
||||
<returns>如果输出应写入 <see cref="P:System.Diagnostics.Process.StandardOutput" />,则为 true;否则为 false。默认值为 false。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding">
|
||||
<summary>获取或设置错误输出的首选编码。</summary>
|
||||
<returns>一个对象,表示错误输出的首选编码。默认值为 null。</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding">
|
||||
<summary>获取或设置标准输出的首选编码。</summary>
|
||||
<returns>一个对象,表示标准输出的首选编码。默认值为 null。</returns>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.UserName">
|
||||
<summary>获取或设置在启动进程时使用的用户名。</summary>
|
||||
<returns>启动进程时使用的用户名。</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.UseShellExecute">
|
||||
<summary>获取或设置一个值,该值指示是否使用操作系统 shell 启动进程。</summary>
|
||||
<returns>如果应在启动进程时使用 shell,则为 true;如果直接从可执行文件创建进程,则为 false。默认值为 true。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessStartInfo.WorkingDirectory">
|
||||
<summary>当 <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> 属性为 false 时,将获取或设置要启动的进程的工作目录。当 <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> 为 true 时,获取或设置包含要启动的进程的目录。</summary>
|
||||
<returns>当 <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> 为 true 时,是包含要启动的进程的目录的完全限定名。当 <see cref="P:System.Diagnostics.ProcessStartInfo.UseShellExecute" /> 属性为 false 时,则为要启动的进程的工作目录。默认值为空字符串 ("")。</returns>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessThread">
|
||||
<summary>表示操作系统进程线程。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.BasePriority">
|
||||
<summary>获取线程的基本优先级。</summary>
|
||||
<returns>线程的基本优先级,它由操作系统通过将进程优先级类与关联线程的优先级别相结合进行计算。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.CurrentPriority">
|
||||
<summary>获取线程的当前优先级。</summary>
|
||||
<returns>线程的当前优先级,可根据操作系统如何安排该线程而偏离基本优先级。可为活动线程暂时提升优先级。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.Id">
|
||||
<summary>获取线程的唯一标识符。</summary>
|
||||
<returns>与指定线程关联的唯一标识符。</returns>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.IdealProcessor">
|
||||
<summary>设置让此线程在其上运行的首选处理器。</summary>
|
||||
<returns>线程的首选处理器,用来在系统安排线程时确定在哪个处理器上运行线程。</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">系统未能设置线程在指定的处理器上启动。</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">平台为 Windows 98 或 Windows Millennium Edition。</exception>
|
||||
<exception cref="T:System.NotSupportedException">进程在远程计算机上。</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PriorityBoostEnabled">
|
||||
<summary>获取或设置一个值,该值指示每当关联线程的进程主窗口接收焦点时,操作系统是否暂时提升该线程的优先级。</summary>
|
||||
<returns>若要在用户与进程的界面交互时提升线程的优先级,则为 true;否则为 false。默认值为 false。</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">未能检索到优先级提升信息。- 或 -未能设置优先级提升信息。</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">平台为 Windows 98 或 Windows Millennium Edition。</exception>
|
||||
<exception cref="T:System.NotSupportedException">进程在远程计算机上。</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PriorityLevel">
|
||||
<summary>获取或设置线程的优先级别。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.Diagnostics.ThreadPriorityLevel" /> 值之一,它指定限制线程优先级的范围。</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">未能检索到线程优先级别信息。- 或 -未能设置线程优先级别。</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">平台为 Windows 98 或 Windows Millennium Edition。</exception>
|
||||
<exception cref="T:System.NotSupportedException">进程在远程计算机上。</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime">
|
||||
<summary>获取线程在操作系统内核中运行代码所用的时间。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.TimeSpan" />,它指示线程在操作系统内核中运行代码所用的时间。</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">未能检索到线程时间。</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">平台为 Windows 98 或 Windows Millennium Edition。</exception>
|
||||
<exception cref="T:System.NotSupportedException">进程在远程计算机上。</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.ProcessorAffinity">
|
||||
<summary>设置关联线程可以在其上运行的处理器。</summary>
|
||||
<returns>指向一组位的 <see cref="T:System.IntPtr" />,每个位表示该线程可在其上运行的一个处理器。</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">未能设置处理器关联。</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">平台为 Windows 98 或 Windows Millennium Edition。</exception>
|
||||
<exception cref="T:System.NotSupportedException">进程在远程计算机上。</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThread.ResetIdealProcessor">
|
||||
<summary>重置此线程的理想处理器,以指示没有单个的理想处理器。换言之,任何处理器都是理想处理器。</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">未能重置理想处理器。</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">平台为 Windows 98 或 Windows Millennium Edition。</exception>
|
||||
<exception cref="T:System.NotSupportedException">进程在远程计算机上。</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.StartAddress">
|
||||
<summary>获取操作系统调用的、启动此线程的函数的内存地址。</summary>
|
||||
<returns>线程的起始地址,它指向线程执行的应用程序定义的函数。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">平台为 Windows 98 或 Windows Millennium Edition。</exception>
|
||||
<exception cref="T:System.NotSupportedException">进程在远程计算机上。</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.StartTime">
|
||||
<summary>获取操作系统启动该线程的时间。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.DateTime" />,它表示操作系统启动该线程时系统上的时间。</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">未能检索到线程时间。</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">平台为 Windows 98 或 Windows Millennium Edition。</exception>
|
||||
<exception cref="T:System.NotSupportedException">进程在远程计算机上。</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.ThreadState">
|
||||
<summary>获取此线程的当前状态。</summary>
|
||||
<returns>指示线程执行情况的 <see cref="T:System.Diagnostics.ThreadState" />(例如运行、等待或终止)。</returns>
|
||||
<exception cref="T:System.PlatformNotSupportedException">平台为 Windows 98 或 Windows Millennium Edition。</exception>
|
||||
<exception cref="T:System.NotSupportedException">进程在远程计算机上。</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.TotalProcessorTime">
|
||||
<summary>获取此线程使用处理器的时间总量。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.TimeSpan" />,它指示线程控制处理器的时间。</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">未能检索到线程时间。</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">平台为 Windows 98 或 Windows Millennium Edition。</exception>
|
||||
<exception cref="T:System.NotSupportedException">进程在远程计算机上。</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.UserProcessorTime">
|
||||
<summary>获取关联的线程在应用程序内运行代码所用的时间。</summary>
|
||||
<returns>
|
||||
<see cref="T:System.TimeSpan" />,它指示线程在应用程序内(相对于在操作系统内核中)运行代码所用的时间。</returns>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">未能检索到线程时间。</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">平台为 Windows 98 或 Windows Millennium Edition。</exception>
|
||||
<exception cref="T:System.NotSupportedException">进程在远程计算机上。</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThread.WaitReason">
|
||||
<summary>获取线程等待的原因。</summary>
|
||||
<returns>一个 <see cref="T:System.Diagnostics.ThreadWaitReason" />,表示线程处于等待状态的原因。</returns>
|
||||
<exception cref="T:System.InvalidOperationException">线程不在等待状态。</exception>
|
||||
<exception cref="T:System.PlatformNotSupportedException">平台为 Windows 98 或 Windows Millennium Edition。</exception>
|
||||
<exception cref="T:System.NotSupportedException">进程在远程计算机上。</exception>
|
||||
<filterpriority>2</filterpriority>
|
||||
<PermissionSet>
|
||||
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
||||
</PermissionSet>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ProcessThreadCollection">
|
||||
<summary>提供 <see cref="T:System.Diagnostics.ProcessThread" /> 对象的强类型集合。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.#ctor">
|
||||
<summary>在没有关联的 <see cref="T:System.Diagnostics.ProcessThread" /> 实例的情况下,初始化 <see cref="T:System.Diagnostics.ProcessThreadCollection" /> 类的新实例。</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])">
|
||||
<summary>使用指定的 <see cref="T:System.Diagnostics.ProcessThread" /> 实例数组来初始化 <see cref="T:System.Diagnostics.ProcessThreadCollection" /> 类的新实例。</summary>
|
||||
<param name="processThreads">用来初始化该 <see cref="T:System.Diagnostics.ProcessThreadCollection" /> 实例的 <see cref="T:System.Diagnostics.ProcessThread" /> 实例的数组。</param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)">
|
||||
<summary>将进程线程附加到集合。</summary>
|
||||
<returns>集合中线程的从零开始的索引。</returns>
|
||||
<param name="thread">要添加到集合中的线程。</param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)">
|
||||
<summary>确定集合中是否存在指定的进程线程。</summary>
|
||||
<returns>如果集合中存在该线程,则为 true;否则为 false。</returns>
|
||||
<param name="thread">一个 <see cref="T:System.Diagnostics.ProcessThread" /> 实例,它指示要在该集合中查找的线程。</param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)">
|
||||
<summary>将 <see cref="T:System.Diagnostics.ProcessThread" /> 实例的数组复制到集合的指定索引处。</summary>
|
||||
<param name="array">要添加到集合的 <see cref="T:System.Diagnostics.ProcessThread" /> 实例的数组。</param>
|
||||
<param name="index">要添加新实例的位置。</param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.Count"></member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.GetEnumerator"></member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)">
|
||||
<summary>提供指定线程在集合中的位置。</summary>
|
||||
<returns>从零开始的索引,它定义线程在 <see cref="T:System.Diagnostics.ProcessThreadCollection" /> 中的位置。</returns>
|
||||
<param name="thread">检索其索引的 <see cref="T:System.Diagnostics.ProcessThread" />。</param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)">
|
||||
<summary>在集合中的指定位置插入进程线程。</summary>
|
||||
<param name="index">从零开始的索引,指示插入线程的位置。</param>
|
||||
<param name="thread">要插入到集合中的线程。</param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)">
|
||||
<summary>获取用于循环访问进程线程集的索引。</summary>
|
||||
<returns>一个 <see cref="T:System.Diagnostics.ProcessThread" />,它对集合中的线程进行索引。</returns>
|
||||
<param name="index">集合中该值的从零开始的索引。</param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)">
|
||||
<summary>从集合中删除进程线程。</summary>
|
||||
<param name="thread">要从该集合中移除的线程。</param>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)"></member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized"></member>
|
||||
<member name="P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot"></member>
|
||||
<member name="T:System.Diagnostics.ThreadPriorityLevel">
|
||||
<summary>指定线程的优先级别。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.AboveNormal">
|
||||
<summary>指定的优先级比关联的 <see cref="T:System.Diagnostics.ProcessPriorityClass" /> 的普通优先级高一级。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.BelowNormal">
|
||||
<summary>指定的优先级比关联的 <see cref="T:System.Diagnostics.ProcessPriorityClass" /> 的普通优先级低一级。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Highest">
|
||||
<summary>指定最高优先级。这比关联的 <see cref="T:System.Diagnostics.ProcessPriorityClass" /> 的普通优先级高两级。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Idle">
|
||||
<summary>指定空闲优先级。它是所有线程的可能的最低优先级值,与关联的 <see cref="T:System.Diagnostics.ProcessPriorityClass" /> 的值无关。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Lowest">
|
||||
<summary>指定最低优先级。这比关联的 <see cref="T:System.Diagnostics.ProcessPriorityClass" /> 的普通优先级低两级。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.Normal">
|
||||
<summary>指定关联的 <see cref="T:System.Diagnostics.ProcessPriorityClass" /> 的普通优先级。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadPriorityLevel.TimeCritical">
|
||||
<summary>指定时间关键优先级。这是所有线程中的最高优先级,与关联的 <see cref="T:System.Diagnostics.ProcessPriorityClass" /> 的值无关。</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ThreadState">
|
||||
<summary>指定线程的当前执行状态。</summary>
|
||||
<filterpriority>1</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Initialized">
|
||||
<summary>此状态指示线程已初始化但尚未启动。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Ready">
|
||||
<summary>此状态指示线程因无可用的处理器而等待使用处理器。线程准备在下一个可用的处理器上运行。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Running">
|
||||
<summary>此状态指示线程当前正在使用处理器。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Standby">
|
||||
<summary>此状态指示线程将要使用处理器。一次只能有一个线程处于此状态。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Terminated">
|
||||
<summary>此状态指示线程已完成执行并已退出。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Transition">
|
||||
<summary>此状态指示线程在可以执行前等待处理器之外的资源。例如,它可能正在等待其执行堆栈从磁盘中分页。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Unknown">
|
||||
<summary>线程的状态未知。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadState.Wait">
|
||||
<summary>此状态指示线程尚未准备好使用处理器,因为它正在等待外围操作完成或等待资源释放。当线程就绪后,将对其进行重排。</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.ThreadWaitReason">
|
||||
<summary>指定线程等待的原因。</summary>
|
||||
<filterpriority>2</filterpriority>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.EventPairHigh">
|
||||
<summary>线程正在等待事件对高。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.EventPairLow">
|
||||
<summary>线程正在等待事件对低。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.ExecutionDelay">
|
||||
<summary>线程执行延迟。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Executive">
|
||||
<summary>线程正在等待计划程序。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.FreePage">
|
||||
<summary>线程正在等待可用的虚拟内存页。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.LpcReceive">
|
||||
<summary>线程正在等待本地过程调用到达。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.LpcReply">
|
||||
<summary>线程正在等待对本地过程调用的回复到达。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.PageIn">
|
||||
<summary>线程正在等待虚拟内存页到达内存。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.PageOut">
|
||||
<summary>线程正在等待虚拟内存页写入磁盘。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Suspended">
|
||||
<summary>线程执行暂停。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.SystemAllocation">
|
||||
<summary>线程正在等待系统分配。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.Unknown">
|
||||
<summary>线程正在因未知原因而等待。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.UserRequest">
|
||||
<summary>线程正在等待用户请求。</summary>
|
||||
</member>
|
||||
<member name="F:System.Diagnostics.ThreadWaitReason.VirtualMemory">
|
||||
<summary>线程正在等待系统分配虚拟内存。</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
1012
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml
vendored
Normal file
1012
packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
0
packages/System.Diagnostics.Process.4.3.0/ref/xamarinios10/_._
vendored
Normal file
0
packages/System.Diagnostics.Process.4.3.0/ref/xamarinios10/_._
vendored
Normal file
0
packages/System.Diagnostics.Process.4.3.0/ref/xamarinmac20/_._
vendored
Normal file
0
packages/System.Diagnostics.Process.4.3.0/ref/xamarinmac20/_._
vendored
Normal file
0
packages/System.Diagnostics.Process.4.3.0/ref/xamarintvos10/_._
vendored
Normal file
0
packages/System.Diagnostics.Process.4.3.0/ref/xamarintvos10/_._
vendored
Normal file
0
packages/System.Diagnostics.Process.4.3.0/ref/xamarinwatchos10/_._
vendored
Normal file
0
packages/System.Diagnostics.Process.4.3.0/ref/xamarinwatchos10/_._
vendored
Normal file
Reference in New Issue
Block a user