10 instantiations of dSPropertyCollection
System.DirectoryServices.AccountManagement (10)
System\DirectoryServices\AccountManagement\AD\ADDNConstraintLinkedAttrSet.cs (2)
112
resultPropCollection = new
dSPropertyCollection
(((SearchResult)this.current).Properties);
116
resultPropCollection = new
dSPropertyCollection
(((DirectoryEntry)this.current).Properties);
System\DirectoryServices\AccountManagement\AD\ADStoreCtx_LoadStore.cs (3)
365
props = new
dSPropertyCollection
(de.Properties);
369
props = new
dSPropertyCollection
(sr.Properties);
420
entry.ldapToPapiConverter(new
dSPropertyCollection
(de.Properties), entry.suggestedADPropertyName, p, entry.propertyName);
System\DirectoryServices\AccountManagement\SAM\SAMStoreCtx_LoadStore.cs (5)
777
SDSUtils.SingleScalarFromDirectoryEntry<string>(new
dSPropertyCollection
(de.Properties), suggestedWinNTProperty, p, propertyName);
803
SDSUtils.MultiScalarFromDirectoryEntry<string>(new
dSPropertyCollection
(de.Properties), suggestedWinNTProperty, p, propertyName);
808
SDSUtils.SingleScalarFromDirectoryEntry<int>(new
dSPropertyCollection
(de.Properties), suggestedWinNTProperty, p, propertyName);
813
SDSUtils.SingleScalarFromDirectoryEntry<byte[]>(new
dSPropertyCollection
(de.Properties), suggestedWinNTProperty, p, propertyName);
893
SDSUtils.AccountControlFromDirectoryEntry(new
dSPropertyCollection
(de.Properties), suggestedWinNTProperty, p, propertyName, true);
25 references to dSPropertyCollection
System.DirectoryServices.AccountManagement (25)
System\DirectoryServices\AccountManagement\AD\ADDNConstraintLinkedAttrSet.cs (2)
30
internal delegate bool ResultValidator(
dSPropertyCollection
resultPropCollection);
109
dSPropertyCollection
resultPropCollection = null;
System\DirectoryServices\AccountManagement\AD\ADStoreCtx.cs (1)
1222
resultValidator = delegate (
dSPropertyCollection
resultPropCollection)
System\DirectoryServices\AccountManagement\AD\ADStoreCtx_LoadStore.cs (19)
356
dSPropertyCollection
props;
816
protected delegate void FromLdapConverterDelegate(
dSPropertyCollection
properties, string suggestedAdProperty, Principal p, string propertyName);
826
protected static void SidFromLdapConverter(
dSPropertyCollection
properties, string suggestedAdProperty, Principal p, string propertyName)
842
protected static void GuidFromLdapConverter(
dSPropertyCollection
properties, string suggestedAdProperty, Principal p, string propertyName)
860
protected static void StringFromLdapConverter(
dSPropertyCollection
properties, string suggestedAdProperty, Principal p, string propertyName)
865
protected static void MultiStringFromLdapConverter(
dSPropertyCollection
properties, string suggestedAdProperty, Principal p, string propertyName)
871
protected static void BoolFromLdapConverter(
dSPropertyCollection
properties, string suggestedAdProperty, Principal p, string propertyName)
878
protected static void AcctDisabledFromLdapConverter(
dSPropertyCollection
properties, string suggestedAdProperty, Principal p, string propertyName)
890
protected static void CommaStringFromLdapConverter(
dSPropertyCollection
properties, string suggestedAdProperty, Principal p, string propertyName)
919
protected static void IntFromLdapConverter(
dSPropertyCollection
properties, string suggestedAdProperty, Principal p, string propertyName)
924
protected static void BinaryFromLdapConverter(
dSPropertyCollection
properties, string suggestedAdProperty, Principal p, string propertyName)
929
protected static void CertFromLdapConverter(
dSPropertyCollection
properties, string suggestedAdProperty, Principal p, string propertyName)
935
protected static void UACFromLdapConverter(
dSPropertyCollection
properties, string suggestedAdProperty, Principal p, string propertyName)
942
protected static void GenericDateTimeFromLdapConverter(
dSPropertyCollection
properties, string suggestedAdProperty, Principal p, string propertyName)
947
protected static void ObjectClassFromLdapConverter(
dSPropertyCollection
properties, string suggestedAdProperty, Principal p, string propertyName)
959
protected static void LastLogonFromLdapConverter(
dSPropertyCollection
properties, string suggestedAdProperty, Principal p, string propertyName)
982
protected static void AcctExpirFromLdapConverter(
dSPropertyCollection
properties, string suggestedAdProperty, Principal p, string propertyName)
987
protected static void DateTimeFromLdapConverter(
dSPropertyCollection
properties, string suggestedAdProperty, Principal p, string propertyName, bool useAcctExpLogic)
1017
protected static void GroupTypeFromLdapConverter(
dSPropertyCollection
properties, string suggestedAdProperty, Principal p, string propertyName)
System\DirectoryServices\AccountManagement\AD\SDSUtils.cs (3)
486
internal static void SingleScalarFromDirectoryEntry<T>(
dSPropertyCollection
properties, string suggestedProperty, Principal p, string propertyName)
498
internal static void MultiScalarFromDirectoryEntry<T>(
dSPropertyCollection
properties, string suggestedProperty, Principal p, string propertyName)
568
internal static void AccountControlFromDirectoryEntry(
dSPropertyCollection
properties, string suggestedProperty, Principal p, string propertyName, bool testCantChangePassword)