Freigeben über


ProcessStartInfo.Verb-Eigenschaft

Ruft das Verb ab, das beim Öffnen der in der FileName-Eigenschaft angegebenen Anwendung oder des in dieser Eigenschaft angegebenen Dokuments verwendet wird, oder legt dieses fest.

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

Syntax

'Declaration
Public Property Verb As String
'Usage
Dim instance As ProcessStartInfo
Dim value As String

value = instance.Verb

instance.Verb = value
public string Verb { get; set; }
public:
property String^ Verb {
    String^ get ();
    void set (String^ value);
}
/** @property */
public String get_Verb ()

/** @property */
public void set_Verb (String value)
public function get Verb () : String

public function set Verb (value : String)

Eigenschaftenwert

Die Aktion, die mit der vom Prozess geöffneten Datei durchzuführen ist. Der Standardwert ist eine leere Zeichenfolge ("").

Hinweise

Jede Dateinamenerweiterung verfügt über einen eigenen Satz Verben, der über die Verbs-Eigenschaft abgerufen werden kann. Das Verb "print" druckt beispielsweise ein mit FileName angegebenes Dokument. Das Standardverb kann mit einer leeren Zeichenfolge ("") angegeben werden.

Wenn Sie die Verbs-Eigenschaft verwenden, müssen Sie beim Festlegen des Werts der FileName-Eigenschaft die Dateinamenerweiterung einschließen. Für den Dateinamen ist keine Erweiterung erforderlich, wenn Sie manuell einen Wert für die Verb-Eigenschaft eingeben.

Beispiel

Im folgenden Beispiel wird ein neuer Prozess mit der angegebenen Aktion und dem Dateinamen gestartet.

Public Shared Sub StartWithVerb(fileName As String, verb As String, _
                                args As String)

   If Not (fileName Is Nothing) AndAlso fileName.Length > 0 _
      AndAlso Not (verb Is Nothing) AndAlso verb.Length > 0

       If File.Exists(fileName)

           Dim startInfo As ProcessStartInfo
           startInfo = New ProcessStartInfo(fileName)

           startInfo.Verb = verb
           startInfo.Arguments = args

            Dim newProcess As New Process()
            newProcess.StartInfo = startInfo
            
            Try
               newProcess.Start()
               
               Console.WriteLine( _
                   "{0} for file {1} started successfully with verb ""{2}""!", _
                   newProcess.ProcessName, fileName, startInfo.Verb)


            Catch e As System.ComponentModel.Win32Exception
               Console.WriteLine("  Win32Exception caught!")
               Console.WriteLine("  Win32 error = {0}", e.Message)

            Catch e As System.InvalidOperationException
                ' Catch this exception if the process exits quickly, 
                ' and the properties are not accessible.
                Console.WriteLine("File {0} started with verb {1}", _
                    startInfo.FileName, startInfo.Verb.ToString())

            End Try
       
       End If
    End If
End Sub
public static void StartWithVerb(string fileName, string verb, string args)
{
    if (((fileName != null) && (fileName.Length > 0)) &&
        ((verb != null) && (verb.Length > 0)))
    {
        if (File.Exists(fileName))
        {
            ProcessStartInfo startInfo;
            startInfo = new ProcessStartInfo(fileName);

            startInfo.Verb = verb;
            startInfo.Arguments = args;

            Process newProcess = new Process();
            newProcess.StartInfo = startInfo;

            try 
            {
                newProcess.Start();
    
                Console.WriteLine(
                    "{0} for file {1} started successfully with verb \"{2}\"!", 
                    newProcess.ProcessName, fileName, startInfo.Verb);
            }
            catch (System.ComponentModel.Win32Exception e)
            {
                Console.WriteLine("  Win32Exception caught!");
                Console.WriteLine("  Win32 error = {0}", 
                    e.Message);
            }
            catch (System.InvalidOperationException)
            {
                // Catch this exception if the process exits quickly, 
                // and the properties are not accessible.
                Console.WriteLine("File {0} started with verb {1}",
                    fileName, verb);
            }
        }
        else 
        {
            Console.WriteLine("File not found:  {0}", fileName);
        }
    }
    else 
    {
        Console.WriteLine("Invalid input for file name or verb.");
    }
}
void StartWithVerb( String^ fileName, String^ verb, String^ args )
{
   if ( ((fileName != nullptr) && (fileName->Length > 0)) && ((verb != nullptr) && (verb->Length > 0)) )
   {
      if ( File::Exists( fileName ) )
      {
         ProcessStartInfo^ startInfo;
         startInfo = gcnew ProcessStartInfo( fileName );
         startInfo->Verb = verb;
         startInfo->Arguments = args;
         Process^ newProcess = gcnew Process;
         newProcess->StartInfo = startInfo;
         try
         {
            newProcess->Start();
            Console::WriteLine( "{0} for file {1} started successfully with verb \"{2}\"!", newProcess->ProcessName, fileName, startInfo->Verb );
         }
         catch ( System::ComponentModel::Win32Exception^ e ) 
         {
            Console::WriteLine( "  Win32Exception caught!" );
            Console::WriteLine( "  Win32 error = {0}", e->Message );
         }
         catch ( System::InvalidOperationException^ ) 
         {
            
            // Catch this exception if the process exits quickly, 
            // and the properties are not accessible.
            Console::WriteLine( "File {0} started with verb {1}", fileName, verb );
         }

      }
      else
      {
         Console::WriteLine( "File not found:  {0}", fileName );
      }
   }
   else
   {
      Console::WriteLine( "Invalid input for file name or verb." );
   }
}

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

ProcessStartInfo-Klasse
ProcessStartInfo-Member
System.Diagnostics-Namespace
Verbs