Freigeben über


Process.GetCurrentProcess-Methode

Ruft eine neue Process-Komponente ab und ordnet diese dem gegenwärtig aktiven Prozess zu.

Namespace: System.Diagnostics
Assembly: System (in system.dll)

Syntax

'Declaration
Public Shared Function GetCurrentProcess As Process
'Usage
Dim returnValue As Process

returnValue = Process.GetCurrentProcess
public static Process GetCurrentProcess ()
public:
static Process^ GetCurrentProcess ()
public static Process GetCurrentProcess ()
public static function GetCurrentProcess () : Process

Rückgabewert

Eine neue Process-Komponente, die der Prozessressource zugeordnet ist, die die aufrufende Anwendung ausführt.

Hinweise

Verwenden Sie diese Methode zum Erstellen einer neuen Process-Instanz, und ordnen Sie diese der Prozessressource auf dem lokalen Computer zu.

Wie die Ähnlichkeit aufweisende GetProcessById-Methode, die GetProcessesByName-Methode und die GetProcesses-Methode ordnet GetCurrentProcess eine vorhandene Ressource einer neuen Process-Komponente zu.

Beispiel

Im folgenden Beispiel werden diese Informationen abgerufen: Informationen über den aktuellen Prozess sowie über alle auf dem lokalen Computer ausgeführten Instanzen von Editor, über alle auf einem bestimmten Computer ausgeführten Instanzen von Editor (mithilfe des Computeralias und einer IP-Adresse), über alle auf dem lokalen und einem Remotecomputer ausgeführten Prozesse und über einen bestimmten Prozess auf dem lokalen Computer oder auf einem Remotecomputer (mithilfe der Prozess-ID).

Imports System
Imports System.Diagnostics
Imports System.ComponentModel


Namespace MyProcessSample
    _
   '/ <summary>
   '/ Shell for the sample.
   '/ </summary>
   Class MyProcess
      
      
      
      
      Sub BindToRunningProcesses()
         ' Get the current process.
         Dim currentProcess As Process = Process.GetCurrentProcess()
         
         
         ' Get all instances of Notepad running on the local
         ' computer.
         Dim localByName As Process() = Process.GetProcessesByName("notepad")
         
         
         ' Get all instances of Notepad running on the specifiec
         ' computer.
         ' 1. Using the computer alias (do not precede with "\\").
         Dim remoteByName As Process() = Process.GetProcessesByName("notepad", "myComputer")
         
         ' 2. Using an IP address to specify the machineName parameter. 
         Dim ipByName As Process() = Process.GetProcessesByName("notepad", "169.0.0.0")
         
         
         ' Get all processes running on the local computer.
         Dim localAll As Process() = Process.GetProcesses()
         
         
         ' Get all processes running on the remote computer.
         Dim remoteAll As Process() = Process.GetProcesses("myComputer")
         
         
         ' Get a process on the local computer, using the process id.
         Dim localById As Process = Process.GetProcessById(1234)
         
         
         ' Get a process on a remote computer, using the process id.
         Dim remoteById As Process = Process.GetProcessById(2345, "myComputer")
      End Sub 'BindToRunningProcesses
       
      
      
      
      Shared Sub Main()
         
         Dim myProcess As New MyProcess()
         
         
         myProcess.BindToRunningProcesses()
      End Sub 'Main 
   End Class 'MyProcess
End Namespace 'MyProcessSample
using System;
using System.Diagnostics;
using System.ComponentModel;

namespace MyProcessSample
{
    /// <summary>
    /// Shell for the sample.
    /// </summary>
    class MyProcess
    {
        
       
        
        void BindToRunningProcesses()
        {
            // Get the current process.
            Process currentProcess = Process.GetCurrentProcess();

            
            // Get all instances of Notepad running on the local
            // computer.
            Process [] localByName = Process.GetProcessesByName("notepad");

            
            // Get all instances of Notepad running on the specifiec
            // computer.
            // 1. Using the computer alias (do not precede with "\\").
            Process [] remoteByName = Process.GetProcessesByName("notepad", "myComputer");
            
            // 2. Using an IP address to specify the machineName parameter. 
            Process [] ipByName = Process.GetProcessesByName("notepad", "169.0.0.0");
            
            
            // Get all processes running on the local computer.
            Process [] localAll = Process.GetProcesses();

            
            // Get all processes running on the remote computer.
            Process [] remoteAll = Process.GetProcesses("myComputer");

            
            // Get a process on the local computer, using the process id.
            Process localById = Process.GetProcessById(1234);

            
            // Get a process on a remote computer, using the process id.
            Process remoteById = Process.GetProcessById(2345, "myComputer");
            
        }
        


        static void Main()
        {
                
                MyProcess myProcess = new MyProcess();
            

            myProcess.BindToRunningProcesses();

            }   
    }
}
#using <System.dll>

using namespace System;
using namespace System::Diagnostics;
using namespace System::ComponentModel;
int main()
{
   
   // Get the current process.
   Process^ currentProcess = Process::GetCurrentProcess();
   
   // Get all instances of Notepad running on the local
   // computer.
   array<Process^>^localByName = Process::GetProcessesByName( "notepad" );
   
   // Get all instances of Notepad running on the specific
   // computer.
   // 1. Using the computer alias (do not precede with "\\").
   array<Process^>^remoteByName = Process::GetProcessesByName( "notepad", "myComputer" );
   
   // 2. Using an IP address to specify the machineName parameter. 
   array<Process^>^ipByName = Process::GetProcessesByName( "notepad", "169.0.0.0" );
   
   // Get all processes running on the local computer.
   array<Process^>^localAll = Process::GetProcesses();
   
   // Get all processes running on the remote computer.
   array<Process^>^remoteAll = Process::GetProcesses( "myComputer" );
   
   // Get a process on the local computer, using the process id.
   Process^ localById = Process::GetProcessById( 1234 );
   
   // Get a process on a remote computer, using the process id.
   Process^ remoteById = Process::GetProcessById( 2345, "myComputer" );
}

.NET Framework-Sicherheit

Plattformen

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

.NET Compact Framework

Unterstützt in: 2.0

Siehe auch

Referenz

Process-Klasse
Process-Member
System.Diagnostics-Namespace
GetProcessById
GetProcessesByName
GetProcesses