指定したコマンドを実行します。
オーバーロードの一覧
指定した一時ファイルを使用して、指定したコマンドを実行し、それに対して返される呼び出しを待機します。また、指定した文字列にコンパイラからの出力およびエラー情報を格納します。
[Visual Basic] Overloads Public Shared Function ExecWaitWithCapture(String, TempFileCollection, ByRef String, ByRef String) As Integer
[C#] public static int ExecWaitWithCapture(string, TempFileCollection, ref string, ref string);
[C++] public: static int ExecWaitWithCapture(String**, TempFileCollection*, String**, String**);
[JScript] public static function ExecWaitWithCapture(String, TempFileCollection, String, String) : int;
指定したユーザー トークンと一時ファイルを使用して、指定したコマンドを実行し、それに対して返される呼び出しを待機します。また、指定した文字列にコンパイラからの出力およびエラー情報を格納します。
[Visual Basic] Overloads Public Shared Function ExecWaitWithCapture(IntPtr, String, TempFileCollection, ByRef String, ByRef String) As Integer
[C#] public static int ExecWaitWithCapture(IntPtr, string, TempFileCollection, ref string, ref string);
[C++] public: static int ExecWaitWithCapture(IntPtr, String**, TempFileCollection*, String**, String**);
指定した現在のディレクトリと一時ファイルを使用して、指定したコマンドを実行し、それに対して返される呼び出しを待機します。また、指定した文字列にコンパイラからの出力およびエラー情報を格納します。
[Visual Basic] Overloads Public Shared Function ExecWaitWithCapture(String, String, TempFileCollection, ByRef String, ByRef String) As Integer
[C#] public static int ExecWaitWithCapture(string, string, TempFileCollection, ref string, ref string);
[C++] public: static int ExecWaitWithCapture(String**, String**, TempFileCollection*, String**, String**);
指定したユーザー トークン、現在のディレクトリ、および一時ファイルを使用して、指定したコマンドを実行し、それに対して返される呼び出しを待機します。また、指定した文字列にコンパイラからの出力およびエラー情報を格納します。
[Visual Basic] Overloads Public Shared Function ExecWaitWithCapture(IntPtr, String, String, TempFileCollection, ByRef String, ByRef String) As Integer