DirectoryEntry::UsePropertyCache Property
Gets or sets a value indicating whether the cache should be committed after each operation.
Assembly: System.DirectoryServices (in System.DirectoryServices.dll)
[DSDescriptionAttribute(L"DSUsePropertyCache")] public: property bool UsePropertyCache { bool get (); void set (bool value); }
Property Value
Type: System::Booleantrue if the cache should not be committed after each operation; otherwise, false. The default is true.
By default, changes to properties are made locally to a cache, and property values to be read are cached after the first read. When the UsePropertyCache property is true, access to the DirectoryEntry object's properties is faster. Setting this to false will cause the cache to be committed after each operation.
If the UsePropertyCache property is true and you want to commit cached changes, call the CommitChanges method. To update values in the cache after changes to the directory are made, call the RefreshCache method.
Caution |
|---|
If you call RefreshCache before calling CommitChanges, any uncommitted changes to the property cache will be lost. |
Note |
|---|
The Internet Information Services (IIS) provider does not support committing the cache after each operation. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Caution