C# Класс RemoteViewing.Vnc.Server.PasswordProvidedEventArgs

Provides data for the VncServerSession.PasswordProvided event.
Наследование: System.EventArgs
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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