RoleProviderCollection.CopyTo(RoleProvider[], Int32) 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.
Copie la collection des fournisseurs de rôles dans un tableau unidimensionnel.
public:
void CopyTo(cli::array <System::Web::Security::RoleProvider ^> ^ array, int index);
public void CopyTo (System.Web.Security.RoleProvider[] array, int index);
override this.CopyTo : System.Web.Security.RoleProvider[] * int -> unit
Public Sub CopyTo (array As RoleProvider(), index As Integer)
Paramètres
- array
- RoleProvider[]
Array unidimensionnel constituant la destination des éléments copiés à partir de RoleProviderCollection. Ce tableau doit avoir une indexation de base zéro.
- index
- Int32
Index de base zéro dans l'array
à partir duquel la copie commence.
Exemples
L’exemple de code suivant utilise la CopyTo méthode pour copier le contenu d’un RoleProviderCollection dans un tableau d’objets RoleProvider .
RoleProviderCollection providers = Roles.Providers;
RoleProvider[] copiedProviders = new RoleProvider[providers.Count];
providers.CopyTo(copiedProviders, 0);
Dim providers As RoleProviderCollection = Roles.Providers
Dim copiedProviders(providers.Count) As RoleProvider
providers.CopyTo(copiedProviders, 0)
Remarques
Cette méthode utilise ArrayList.CopyTo pour copier des objets de fournisseur de rôle dans le tableau spécifié.