IAsyncPersistFile.LoadAsync(String, UInt32, IVsProgress) Method
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.
Opens a specified file asynchronously and initializes an object from the file contents.
public Microsoft.VisualStudio.Shell.Interop.IVsTask LoadAsync (string filename, uint grfMode, Microsoft.VisualStudio.Shell.Interop.IVsProgress? progress);
abstract member LoadAsync : string * uint32 * Microsoft.VisualStudio.Shell.Interop.IVsProgress -> Microsoft.VisualStudio.Shell.Interop.IVsTask
Public Function LoadAsync (filename As String, grfMode As UInteger, progress As IVsProgress) As IVsTask
Parameters
- filename
- String
The name of the file to load.
- grfMode
- UInt32
File format mode. If zero, the object uses the usual defaults as if the user had opened the file.
- progress
- IVsProgress
The interface through which progress is reported.
Returns
A task representing the asynchronous operation.
Remarks
This method is safe to access from any thread.