Where can I find documentation in C # MSTSCLib, in particular the MsRdpClient classes?

I would like to figure out how to create a C # remote desktop client, and the online documentation ranges from sparse to nonexistent. Or, if you have this information, please let me know. I collect as much information as possible and post it somewhere

I would like to know the following information:

  • How to connect programmatically to a remote desktop server? Which client class should I use? There are approximately 20 of them.
  • I know that you can directly set the server and username. How to set a password safely?
  • Why does the following code not work?

    MsRdpClient7 rdc = new MSTSCLib.MsRdpClient7();
    rdc.Server = "fake.bogus.com";
    rdc.UserName = "JChen";
    rdc.AdvancedSettings2.ClearTextPassword = "insecure";
    rdc.Connect();
    
  • What is the complete API for an RDP client? What information can I get from her?

RDP #, , . , API , , : -)

! Jieren

: , RDP-, , RDP-. Forms RDP AxMsTscAxNotSafeForScripting.

+3
1

MSDN ActiveX

( :))

+5

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


All Articles