IFileStagingProvider Interface
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.
Provides basic file staging features.
public interface IFileStagingProvider
type IFileStagingProvider = interface
Public Interface IFileStagingProvider
- Derived
Properties
StagedFiles |
The collection of ResourceFile objects that are the result of file staging. |
Methods
CreateStagingArtifact() |
Returns an instance of IFileStagingArtifact with whatever values the implementation requires. This will be called during file staging whenever a staging artifact has not been otherwise provided. |
StageFilesAsync(List<IFileStagingProvider>, IFileStagingArtifact) |
Begins an asynchronous operation to stage all of the files in the given collection. When file staging begins, all instances of IFileStagingProvider are bucketized by their implementation type. This produces one collection of instances per implementation. Each implementation of IFileStagingProvider has a StageFilesAsync() method. That method is called once with the collection produced by the bucketization step oulined above. |
Validate() |
Performs client-side validation on the current object. |