C# 클래스 RemoteViewing.Vnc.Server.PasswordProvidedEventArgs

Provides data for the VncServerSession.PasswordProvided event.
상속: System.EventArgs
파일 보기 프로젝트 열기: qmfrederik/remoteviewing 1 사용 예제들

공개 메소드들

메소드 설명
Accept ( ) : bool

Successfully authenticates the client.

Accept ( byte password ) : bool

Authenticates the client, if the password bytes match.

Accept ( char password ) : bool

Authenticates the client, if the password characters match.

PasswordProvidedEventArgs ( byte challenge, byte response ) : System

Initializes a new instance of the PasswordProvidedEventArgs class.

비공개 메소드들

메소드 설명
Test ( byte response ) : bool

메소드 상세

Accept() 공개 메소드

Successfully authenticates the client.
public Accept ( ) : bool
리턴 bool

Accept() 공개 메소드

Authenticates the client, if the password bytes match.
public Accept ( byte password ) : bool
password byte The bytes of the password.
리턴 bool

Accept() 공개 메소드

Authenticates the client, if the password characters match.
public Accept ( char password ) : bool
password char The characters of the password.
리턴 bool

PasswordProvidedEventArgs() 공개 메소드

Initializes a new instance of the PasswordProvidedEventArgs class.
public PasswordProvidedEventArgs ( byte challenge, byte response ) : System
challenge byte The VNC the server sent.
response byte The bytes of the response from the client.
리턴 System