MimePartCollection.CopyTo(MimePart[], Int32) Methode
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Kopieert het hele MimePartCollection naar een compatibele eendimensionale matrix van het type MimePart, beginnend bij de opgegeven op nul gebaseerde index van de doelmatrix.
public:
void CopyTo(cli::array <System::Web::Services::Description::MimePart ^> ^ array, int index);
public void CopyTo(System.Web.Services.Description.MimePart[] array, int index);
member this.CopyTo : System.Web.Services.Description.MimePart[] * int -> unit
Public Sub CopyTo (array As MimePart(), index As Integer)
Parameters
- array
- MimePart[]
Een matrix van het type MimePart dat fungeert als de bestemming voor de kopieeractie.
- index
- Int32
De op nul gebaseerde index waarop de gekopieerde verzameling moet worden geplaatst.
Voorbeelden
In het volgende voorbeeld ziet u een typisch gebruik van de CopyTo methode.
array<MimePart^>^myArray = gcnew array<MimePart^>(myMimePartCollection->Count);
// Copy the mimepartcollection to an array.
myMimePartCollection->CopyTo( myArray, 0 );
Console::WriteLine( "Displaying the array copied from mimepartcollection" );
for ( int j = 0; j < myMimePartCollection->Count; j++ )
{
Console::WriteLine( "Mimepart object at position : {0}", j );
for ( int i = 0; i < myArray[ j ]->Extensions->Count; i++ )
{
MimeXmlBinding^ myMimeXmlBinding3 = (MimeXmlBinding^)(myArray[ j ]->Extensions[ i ]);
Console::WriteLine( "Part: {0}", (myMimeXmlBinding3->Part) );
}
}
MimePart[] myArray = new MimePart[myMimePartCollection.Count];
// Copy the mimepartcollection to an array.
myMimePartCollection.CopyTo(myArray,0);
Console.WriteLine("Displaying the array copied from mimepartcollection");
for(int j=0;j<myMimePartCollection.Count;j++)
{
Console.WriteLine("Mimepart object at position : " + j);
for(int i=0;i<myArray[j].Extensions.Count;i++)
{
MimeXmlBinding myMimeXmlBinding3 = (MimeXmlBinding)myArray[j].Extensions[i];
Console.WriteLine("Part: "+(myMimeXmlBinding3.Part));
}
}
Dim myArray(myMimePartCollection.Count-1) As MimePart
' Copy the mimepartcollection to an array.
myMimePartCollection.CopyTo(myArray, 0)
Console.WriteLine("Displaying the array copied from mimepartcollection")
Dim j As Integer
For j = 0 To myMimePartCollection.Count - 1
Console.WriteLine("Mimepart object at position : " + j.ToString())
For i = 0 To (myArray(j).Extensions.Count) - 1
Dim myMimeXmlBinding3 As MimeXmlBinding = CType(myArray(j).Extensions(i), _
MimeXmlBinding)
Console.WriteLine("Part: " + myMimeXmlBinding3.Part)
Next i
Next j