38 lines
688 B
C#
38 lines
688 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace WebsitePanel.Providers.RemoteDesktopServices
|
|
{
|
|
public enum BrokenConnectionActionValues
|
|
{
|
|
Disconnect,
|
|
LogOff
|
|
}
|
|
|
|
public enum ClientDeviceRedirectionOptionValues
|
|
{
|
|
AudioVideoPlayBack,
|
|
AudioRecording,
|
|
SmartCard,
|
|
PlugAndPlayDevice,
|
|
Drive,
|
|
Clipboard
|
|
}
|
|
|
|
public enum SecurityLayerValues
|
|
{
|
|
RDP,
|
|
Negotiate,
|
|
SSL
|
|
}
|
|
|
|
public enum EncryptionLevel
|
|
{
|
|
Low,
|
|
ClientCompatible,
|
|
High,
|
|
FipsCompliant
|
|
}
|
|
}
|