C# 클래스 SharpAdbClient.Exceptions.AdbException

Represents an exception with communicating with ADB
상속: System.Exception
파일 보기 프로젝트 열기: ArduPilot/MissionPlanner

공개 메소드들

메소드 설명
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.

메소드 상세

AdbException() 공개 메소드

Initializes a new instance of the AdbException class.
public AdbException ( ) : System
리턴 System

AdbException() 공개 메소드

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.
리턴 System

AdbException() 공개 메소드

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. ///
리턴 System

AdbException() 공개 메소드

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. ///
리턴 System

AdbException() 공개 메소드

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.
리턴 System

AdbException() 공개 메소드

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. ///
리턴 System