NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ResourceManager.ReleaseAllResources

Tells the ResourceManager to call Close on all ResourceSet objects and release all resources. This will shrink the working set in a running application. Any future resource lookups on this ResourceManager will be as expensive as the first lookup, since it will need to search and load resources again.

This may be useful in some complex threading scenarios, where creating a new ResourceManager is not quite the correct behavior.

[Visual Basic]
Overridable Public Sub ReleaseAllResources()
[C#]
public virtual void ReleaseAllResources();
[C++]
public: virtual void ReleaseAllResources();
[JScript]
public function ReleaseAllResources();

See Also

ResourceManager Class | ResourceManager Members | System.Resources Namespace