Is there an open source RDP implementation in C #?

Does anyone know of an open source RDP implementation in C #? In particular, something similar to ProperJavaRDP or Rdesktop.

I am not looking for addins, 3party controles, etc. I am looking for a C # inline implementation with source.

+4
source share
4 answers

It is best to port the rdesktop code. He has already ported it to Java to give you a good starting point.

http://properjavardp.sourceforge.net/

+3
source

Just letting you know: I'm working on writing C # bindings to FreeRDP as a child project called Screenary: https://github.com/Screenary/Screenary

+1
source

Try a Look at This CodeProject How to Create a Terminal Services Add-in in Pure C # by Selvin

Update: Or look at gnome-rdp at sourceforge.net. (close - but "no cigar" - since it is a C # (Mono) shell for rdesktop, etc.), The difficult way is to port an existing RDP client from C / C ++ to C # - ex. CoRD (found on sourceforge.net)

/ Erling Damsgaard DNS-IT ApS

0
source

or use terminals (terminal.codeplex.com)

0
source

Source: https://habr.com/ru/post/1299756/


All Articles