public LdpAuthRequestHandler()
 {
     serverHandler = LdpServer.GetInstance();
     packetFactory = new LdpProtocolPacketFactory();
     userSettings = new LdpUserSettings();
     settingsPassword = userSettings.GetPassword;
 }
 public void Dispose()
 {
     authResponse = null;
     responsePacket = null;
     serverHandler = null;
     userSettings = null;
     packetFactory = null;
     GC.SuppressFinalize(this);
 }
 public Password_form()
 {
     InitializeComponent();
     settings = new LdpUserSettings();
     ShowPassword();
 }