CertificateOperations.CreateCertificateFromPfx 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.
Surcharges
CreateCertificateFromPfx(Byte[], String) |
Obsolète.
Avertissement : cette opération est déconseillée et sera supprimée après février 2024. Utilisez plutôt l’extension Azure KeyVault . Crée un nouveau Certificate à partir des données au format .pfx en mémoire. |
CreateCertificateFromPfx(String, String) |
Obsolète.
Avertissement : cette opération est déconseillée et sera supprimée après février 2024. Utilisez plutôt l’extension Azure KeyVault . Crée un nouveau Certificate à partir d’un fichier .pfx. |
CreateCertificateFromPfx(Byte[], String)
- Source:
- CertificateOperations.cs
Attention
This operation is deprecated and will be removed after February, 2024. Please use the Azure KeyVault Extension instead.
Avertissement : cette opération est déconseillée et sera supprimée après février 2024. Utilisez plutôt l’extension Azure KeyVault . Crée un nouveau Certificate à partir des données au format .pfx en mémoire.
[System.Obsolete("This operation is deprecated and will be removed after February, 2024. Please use the Azure KeyVault Extension instead.", false)]
public Microsoft.Azure.Batch.Certificate CreateCertificateFromPfx (byte[] data, string password = default);
[<System.Obsolete("This operation is deprecated and will be removed after February, 2024. Please use the Azure KeyVault Extension instead.", false)>]
member this.CreateCertificateFromPfx : byte[] * string -> Microsoft.Azure.Batch.Certificate
Public Function CreateCertificateFromPfx (data As Byte(), Optional password As String = Nothing) As Certificate
Paramètres
- data
- Byte[]
Données de certificat au format .pfx.
- password
- String
Mot de passe pour accéder à la clé privée du certificat. Cela peut être null si le PFX n’est pas protégé par un mot de passe.
Retours
Certificate représentant un nouveau certificat qui n’a pas été ajouté au service Batch.
- Attributs
S’applique à
CreateCertificateFromPfx(String, String)
- Source:
- CertificateOperations.cs
Attention
This operation is deprecated and will be removed after February, 2024. Please use the Azure KeyVault Extension instead.
Avertissement : cette opération est déconseillée et sera supprimée après février 2024. Utilisez plutôt l’extension Azure KeyVault . Crée un nouveau Certificate à partir d’un fichier .pfx.
[System.Obsolete("This operation is deprecated and will be removed after February, 2024. Please use the Azure KeyVault Extension instead.", false)]
public Microsoft.Azure.Batch.Certificate CreateCertificateFromPfx (string path, string password = default);
[<System.Obsolete("This operation is deprecated and will be removed after February, 2024. Please use the Azure KeyVault Extension instead.", false)>]
member this.CreateCertificateFromPfx : string * string -> Microsoft.Azure.Batch.Certificate
Public Function CreateCertificateFromPfx (path As String, Optional password As String = Nothing) As Certificate
Paramètres
- path
- String
Chemin d’accès au fichier .pfx.
- password
- String
Mot de passe pour accéder à la clé privée du certificat. Cela peut être null si le PFX n’est pas protégé par un mot de passe.
Retours
Certificate représentant un nouveau certificat qui n’a pas été ajouté au service Batch.
- Attributs
S’applique à
Azure SDK for .NET