C# Class SharpAdbClient.Exceptions.AdbException

Represents an exception with communicating with ADB
Inheritance: System.Exception
Afficher le fichier Open project: ArduPilot/MissionPlanner

Méthodes publiques

Méthode Description
AdbException ( ) : System

Initializes a new instance of the AdbException class.

AdbException ( SerializationInfo serializationInfo, StreamingContext context ) : System

Initializes a new instance of the AdbException class.

AdbException ( string message ) : System

Initializes a new instance of the AdbException class with the specified error message.

AdbException ( string message, AdbResponse response ) : System

Initializes a new instance of the AdbException class with the specified client error message and AdbResponse

AdbException ( string message, Exception innerException ) : System

Initializes a new instance of the AdbException class.

AdbException ( string message, string adbError ) : System

Initializes a new instance of the AdbException class with the specified client error message and adb error message.

Method Details

AdbException() public méthode

Initializes a new instance of the AdbException class.
public AdbException ( ) : System
Résultat System

AdbException() public méthode

Initializes a new instance of the AdbException class.
public AdbException ( SerializationInfo serializationInfo, StreamingContext context ) : System
serializationInfo System.Runtime.Serialization.SerializationInfo The serialization info.
context System.Runtime.Serialization.StreamingContext The context.
Résultat System

AdbException() public méthode

Initializes a new instance of the AdbException class with the specified error message.
public AdbException ( string message ) : System
message string /// The message that describes the error. ///
Résultat System

AdbException() public méthode

Initializes a new instance of the AdbException class with the specified client error message and AdbResponse
public AdbException ( string message, AdbResponse response ) : System
message string /// The message that describes the error on the client side. ///
response AdbResponse /// The that was sent by adb. ///
Résultat System

AdbException() public méthode

Initializes a new instance of the AdbException class.
public AdbException ( string message, Exception innerException ) : System
message string The message.
innerException System.Exception The inner exception.
Résultat System

AdbException() public méthode

Initializes a new instance of the AdbException class with the specified client error message and adb error message.
public AdbException ( string message, string adbError ) : System
message string /// The message that describes the error on the client side. ///
adbError string /// The raw error message that was sent by adb. ///
Résultat System