Scenes.Download(String, RequestContext) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Télécharge et retourne le fichier Stream en tant que réponse pour le filePath d’entrée donné.
public virtual Azure.Response Download (string filePath, Azure.RequestContext context = default);
abstract member Download : string * Azure.RequestContext -> Azure.Response
override this.Download : string * Azure.RequestContext -> Azure.Response
Public Overridable Function Download (filePath As String, Optional context As RequestContext = Nothing) As Response
Paramètres
- filePath
- String
chemin de stockage cloud du fichier de scène.
- context
- RequestContext
Contexte de requête, qui peut remplacer les comportements par défaut du pipeline client par appel.
Retours
Réponse retournée par le service.
Exceptions
filePath
a la valeur null.
Le service a retourné un code de status non réussi.
Exemples
Cet exemple montre comment appeler Download avec les paramètres requis et analyser le résultat.
var credential = new DefaultAzureCredential();
var client = new FarmBeatsClient(credential).GetScenesClient(<2022-11-01-preview>);
Response response = client.Download("<filePath>");
if (response.ContentStream != null)
{
using(Stream outFileStream = File.OpenWrite("<filePath>")
{
response.ContentStream.CopyTo(outFileStream);
}
}
S’applique à
Azure SDK for .NET