using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.DirectoryServices.AccountManagement; // referansa ekle
framevowrk 4.0 çalışıyor
namespace LDAP_Sorgu
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
label1.Text = LDAPAuthenticateUser("kurumum.com.tr", "Username", "****").ToString();
}
public bool LDAPAuthenticateUser(string domain, string username, string password)
{
bool loginBasarili = false;
using (PrincipalContext pc = new PrincipalContext(ContextType.Domain, domain))
{
loginBasarili = pc.ValidateCredentials(username, password);
}
return loginBasarili;
}
}
}
Kaydol:
Kayıt Yorumları (Atom)
Ücretsiz Resim, Müzik Video yapım için siteler
Resim,Müzik Video yapım için ücretsiz siteler Ücretsiz Kaynak bulma siteleri: videvo.net : Ses ve Video dosyaları pixabay.com : Resimler, m...
-
I. Kıssa Avrupa'nın ünlü sanat merkezilerinden birinde, çocuğun biri, vitrinde çok hoş bir tablo görür. Tablonun bedeli oldukça yüks...
-
DELPHİDE SHELL EXECUTE - WinExec APISI VE KULLANIMI Uses ShellApi; //Bir web sayfası açma ShellExecute(0,'open',' www.turkiye....
Hiç yorum yok:
Yorum Gönder