[TASK] update to latest dll

This commit is contained in:
TLRZ Seyfferth
2020-04-08 18:40:10 +02:00
parent c94e357006
commit 980257a2d0
9 changed files with 394 additions and 45 deletions
+18
View File
@@ -0,0 +1,18 @@
using Chrosey.Extensions.Interfaces;
using System.DirectoryServices;
namespace Chrosey.Extensions.Wrapper
{
public abstract class ASearchResultWrapper : ISearchResultWrapper
{
public readonly string[] propertiesToLoad = new string[2]
{
"SAMAccountName",
"sn"
};
public virtual void Bind(SearchResult source)
{
}
}
}