21 references to Value
System.DirectoryServices.AccountManagement (21)
System\DirectoryServices\AccountManagement\AD\ADStoreCtx_LoadStore.cs (16)
1329
if (!kvp.Value.Filter && null != kvp.Value.
Value
&& kvp.Value.
Value
.Length != 0)
1334
GlobalDebug.WriteLineIf(GlobalDebug.Info, "ADStoreCtx", "ExtensionCacheToLdapConverter - Value Type " + kvp.Value.
Value
.GetType().ToString());
1336
if ((kvp.Value.
Value
.Length == 1 && kvp.Value.
Value
[0] is ICollection) || (kvp.Value.
Value
.Length > 1))
1338
if (kvp.Value.
Value
.Length > 1 && (kvp.Value.
Value
[0] is ICollection))
1346
if (kvp.Value.
Value
.Length == 1 && kvp.Value.
Value
[0] is ICollection && !(kvp.Value.
Value
[0] is byte[]))
1348
valueCollection = (ICollection)kvp.Value.
Value
[0];
1352
valueCollection = (ICollection)kvp.Value.
Value
;
1386
GlobalDebug.WriteLineIf(GlobalDebug.Info, "ADStoreCtx", "ExtensionCacheToLdapConverter - Adding " + kvp.Value.
Value
.ToString());
1389
if (p.unpersisted && (null == kvp.Value.
Value
[0]))
1392
de.Properties[kvp.Key].Value = kvp.Value.
Value
[0];
System\DirectoryServices\AccountManagement\AD\ADStoreCtx_Query.cs (4)
980
Type type = kvp.Value.Type ?? kvp.Value.
Value
.GetType();
985
if (kvp.Value.
Value
is ICollection)
989
ICollection collection = (ICollection)kvp.Value.
Value
;
998
query.Append(ExtensionTypeConverter(kvp.Key, type, kvp.Value.
Value
, kvp.Value.MatchType));
System\DirectoryServices\AccountManagement\Principal.cs (1)
633
return val.
Value
;