Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

IAppDomainSetup::ShadowCopyDirectories Property

 

Gets or sets the names of the directories containing assemblies to be shadow copied.

Namespace:   System
Assembly:  mscorlib (in mscorlib.dll)

property String^ ShadowCopyDirectories {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

A String containing a list of directory names, where each name is separated by a semicolon.

All directories specified by PrivateBinPath, including the directory specified by ApplicationBase, are shadow copied by default if this property is not set.

If an executable file is in use, updates to the executable file are stored in a shadow copy directory. Existing users continue using the original executable file until it terminates, while new users use the shadow copied executable file.

This property cannot be changed after the AppDomain has finished its first bind.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft