StorageItemMostRecentlyUsedList.GetFileAsync Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
GetFileAsync(String) |
Recupera l'oggetto storageFile specificato dall'elenco degli ultimi file usati. |
GetFileAsync(String, AccessCacheOptions) |
Recupera l'oggetto storageFile specificato dall'elenco degli ultimi elementi usati (MRU) usando le opzioni specificate. |
GetFileAsync(String)
Recupera l'oggetto storageFile specificato dall'elenco degli ultimi file usati.
public:
virtual IAsyncOperation<StorageFile ^> ^ GetFileAsync(Platform::String ^ token) = GetFileAsync;
/// [Windows.Foundation.Metadata.Overload("GetFileAsync")]
IAsyncOperation<StorageFile> GetFileAsync(winrt::hstring const& token);
[Windows.Foundation.Metadata.Overload("GetFileAsync")]
public IAsyncOperation<StorageFile> GetFileAsync(string token);
function getFileAsync(token)
Public Function GetFileAsync (token As String) As IAsyncOperation(Of StorageFile)
Parametri
- token
-
String
Platform::String
winrt::hstring
Token del file di archiviazione da recuperare.
Restituisce
Al termine di questo metodo, restituisce il file di archiviazione associato al token specificato.
Implementazioni
- Attributi
Vedi anche
Si applica a
GetFileAsync(String, AccessCacheOptions)
Recupera l'oggetto storageFile specificato dall'elenco degli ultimi elementi usati (MRU) usando le opzioni specificate.
public:
virtual IAsyncOperation<StorageFile ^> ^ GetFileAsync(Platform::String ^ token, AccessCacheOptions options) = GetFileAsync;
/// [Windows.Foundation.Metadata.Overload("GetFileWithOptionsAsync")]
IAsyncOperation<StorageFile> GetFileAsync(winrt::hstring const& token, AccessCacheOptions const& options);
[Windows.Foundation.Metadata.Overload("GetFileWithOptionsAsync")]
public IAsyncOperation<StorageFile> GetFileAsync(string token, AccessCacheOptions options);
function getFileAsync(token, options)
Public Function GetFileAsync (token As String, options As AccessCacheOptions) As IAsyncOperation(Of StorageFile)
Parametri
- token
-
String
Platform::String
winrt::hstring
Token del file di archiviazione da recuperare.
- options
- AccessCacheOptions
Valore enumerazione che descrive il comportamento da usare quando l'app accede all'elemento.
Restituisce
Al termine di questo metodo, restituisce il file di archiviazione associato al token specificato.
Implementazioni
- Attributi