コード例 #1
0
 internal static string GetCompany(this LdapEntry ldapEntry)
 {
     return(ldapEntry.GetProperty(LdapConfiguration.Attribute.Company));
 }
コード例 #2
0
 internal static string GetDistinguishedName(this LdapEntry ldapEntry)
 {
     return(ldapEntry.GetProperty(LdapConfiguration.Attribute.DistinguishedName));
 }
コード例 #3
0
 internal static string GetPhone(this LdapEntry ldapEntry)
 {
     return(ldapEntry.GetProperty(LdapConfiguration.Attribute.TelephoneNumber));
 }
コード例 #4
0
 internal static string GetUniqueName(this LdapEntry ldapEntry)
 {
     return(ldapEntry.GetProperty(LdapConfiguration.Attribute.UniqueName));
 }
コード例 #5
0
 internal static string GetMail(this LdapEntry ldapEntry)
 {
     return(ldapEntry.GetProperty(LdapConfiguration.Attribute.Mail));
 }