You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <summary> /// The protocol that a client is using to connect to a terminal server as returned by /// <see cref="ITerminalServicesSession.ClientProtocolType" />. /// </summary> public enum ClientProtocolType : short { /// <summary> /// The client is directly connected to the console session. /// </summary> Console = 0, /// <summary> /// This value exists for legacy purposes. /// </summary> Legacy = 1, /// <summary> /// The client is connected via the RDP protocol. /// </summary> Rdp = 2, }
I need the protocol type because i want to enumerate which sessions are connected either via console or rdp.
It still has relevance and i dont see any reason for having this property not exposed :)
The text was updated successfully, but these errors were encountered:
/// <summary> /// The protocol that a client is using to connect to a terminal server as returned by /// <see cref="ITerminalServicesSession.ClientProtocolType" />. /// </summary> public enum ClientProtocolType : short { /// <summary> /// The client is directly connected to the console session. /// </summary> Console = 0, /// <summary> /// This value exists for legacy purposes. /// </summary> Legacy = 1, /// <summary> /// The client is connected via the RDP protocol. /// </summary> Rdp = 2, }
I need the protocol type because i want to enumerate which sessions are connected either via console or rdp.
It still has relevance and i dont see any reason for having this property not exposed :)
The text was updated successfully, but these errors were encountered: