IAppDomainSetup.ShadowCopyDirectories Property

Definition

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

public:
 property System::String ^ ShadowCopyDirectories { System::String ^ get(); void set(System::String ^ value); };
public string ShadowCopyDirectories { get; set; }
member this.ShadowCopyDirectories : string with get, set
Public Property ShadowCopyDirectories As String

Property Value

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

Remarks

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.

Applies to