AzureMLBatchExecutionActivity.GlobalParameters Propriété
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.
Paires clé/valeur à passer au point de terminaison du service d’exécution Azure ML Batch. Les clés doivent correspondre aux noms des paramètres de service web définis dans le service web Azure ML publié. Les valeurs sont passées dans la propriété GlobalParameters de la demande d’exécution de lot Azure ML.
Pour affecter un objet à la valeur de cette propriété, utilisez FromObjectAsJson<T>(T, JsonSerializerOptions).
Pour affecter une chaîne json déjà mise en forme à cette propriété, utilisez FromString(String).
Exemples :
- BinaryData.FromObjectAsJson(« foo »)Crée une charge utile de « foo ».
- BinaryData.FromString(« \"foo\" »)Crée une charge utile de « foo ».
- BinaryData.FromObjectAsJson(new { key = « value » })Crée une charge utile de { « key »: « value » }.
- BinaryData.FromString(« {\"key\ »: \"value\"} »)Crée une charge utile de { « key »: « value » }.
public System.Collections.Generic.IDictionary<string,BinaryData> GlobalParameters { get; }
member this.GlobalParameters : System.Collections.Generic.IDictionary<string, BinaryData>
Public ReadOnly Property GlobalParameters As IDictionary(Of String, BinaryData)