Where can I find documentation on the C# MSTSCLib, specifically the MsRdpClient classes?

后端 未结 2 1326
死守一世寂寞
死守一世寂寞 2021-01-06 04:58

I would like to figure out how to create a C# Remote Desktop client and the documentation on the internet varies from sparse to non-existent. Or if you have this information

2条回答
  •  南笙
    南笙 (楼主)
    2021-01-06 05:44

    The documentation for the advanced settings can be found here: IMsRdpClientAdvancedSettings interface

    An extensive implementation of RDP is available on github (RemoteNG on github). Looking there is probably the best way to solve own implementation problems. Because mRemote is an implementation for several protocols (RDP, VNC, Citrix and others) it takes some time to understand what they are doing.

    Another, simplier implementation can be found here: Mulit RDP client .NET. The disadvantage is that this solution is over 10 years old, so a fairly old version of the OCX is implemented there. The big advantage is that, unlike mRemote, this code is not published under the GPL.

提交回复
热议问题