Beispiel #1
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: public void executeShellCommand(String command, IShellOutputReceiver receiver, int maxTimeToOutputResponse) throws TimeoutException, AdbCommandRejectedException, ShellCommandUnresponsiveException, java.io.IOException
        public void executeShellCommand(string command, IShellOutputReceiver receiver, int maxTimeToOutputResponse)
        {
            AdbHelper.executeRemoteCommand(AndroidDebugBridge.socketAddress, command, this, receiver, maxTimeToOutputResponse);
        }
Beispiel #2
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: public void executeShellCommand(String command, IShellOutputReceiver receiver) throws TimeoutException, AdbCommandRejectedException, ShellCommandUnresponsiveException, java.io.IOException
        public void executeShellCommand(string command, IShellOutputReceiver receiver)
        {
            AdbHelper.executeRemoteCommand(AndroidDebugBridge.socketAddress, command, this, receiver, DdmPreferences.timeOut);
        }