X509Certificate2Collection.RemoveRange Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Remove vários objetos X509Certificate2 de um objeto X509Certificate2Collection.
Sobrecargas
RemoveRange(X509Certificate2[]) |
Remove vários objetos X509Certificate2 em uma matriz de um objeto X509Certificate2Collection. |
RemoveRange(X509Certificate2Collection) |
Remove vários objetos X509Certificate2 em um objeto X509Certificate2Collection de outro objeto X509Certificate2Collection. |
RemoveRange(X509Certificate2[])
Remove vários objetos X509Certificate2 em uma matriz de um objeto X509Certificate2Collection.
public:
void RemoveRange(cli::array <System::Security::Cryptography::X509Certificates::X509Certificate2 ^> ^ certificates);
public void RemoveRange (System.Security.Cryptography.X509Certificates.X509Certificate2[] certificates);
member this.RemoveRange : System.Security.Cryptography.X509Certificates.X509Certificate2[] -> unit
Public Sub RemoveRange (certificates As X509Certificate2())
Parâmetros
- certificates
- X509Certificate2[]
Uma matriz de objetos de X509Certificate2.
Exceções
certificates
é null
.
Comentários
Use esse método se você tiver uma matriz de X509Certificate2 objetos para remover de um X509Certificate2Collection objeto . Os AddRange métodos e RemoveRange processam solicitações transacionalmente, de modo que, se uma única adição ou remoção falhar, toda a operação será anulada.
Aplica-se a
RemoveRange(X509Certificate2Collection)
Remove vários objetos X509Certificate2 em um objeto X509Certificate2Collection de outro objeto X509Certificate2Collection.
public:
void RemoveRange(System::Security::Cryptography::X509Certificates::X509Certificate2Collection ^ certificates);
public void RemoveRange (System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates);
member this.RemoveRange : System.Security.Cryptography.X509Certificates.X509Certificate2Collection -> unit
Public Sub RemoveRange (certificates As X509Certificate2Collection)
Parâmetros
- certificates
- X509Certificate2Collection
Um objeto X509Certificate2Collection.
Exceções
certificates
é null
.
Comentários
Use esse método se você tiver certificados em um X509Certificate2Collection objeto que deseja remover de outro X509Certificate2Collection objeto. Os AddRange métodos e RemoveRange processam solicitações transacionalmente, de modo que, se uma única adição ou remoção falhar, toda a operação será anulada.