TempFileCollection.KeepFiles Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value indicating whether to keep the files, by default, when the Delete() method is called or the collection is disposed.
public:
property bool KeepFiles { bool get(); void set(bool value); };
public bool KeepFiles { get; set; }
member this.KeepFiles : bool with get, set
Public Property KeepFiles As Boolean
Property Value
true
if the files should be kept; otherwise, false
.
Remarks
The value of the KeepFiles property is used as the default value when the AddExtension overload that does not have a keepFile
parameter is called to add a temporary file to the collection. Each temporary file in the collection has an associated keep file flag that determines, on a per-file basis, whether that file is to be kept or deleted. Files are automatically kept or deleted on completion of the compilation based on their associated keep files value. However, after compilation is complete, files that were kept can be released by setting KeepFiles false and calling the Delete method. This will result in all files being deleted.
Applies to
.NET