Freigeben über


MimeTextMatchCollection.CopyTo-Methode

Kopiert die gesamte MimeTextMatchCollection beginnend am angegebenen nullbasierten Index des Zielarrays in ein kompatibles eindimensionales Array vom Typ MimeTextMatch.

Namespace: System.Web.Services.Description
Assembly: System.Web.Services (in system.web.services.dll)

Syntax

'Declaration
Public Sub CopyTo ( _
    array As MimeTextMatch(), _
    index As Integer _
)
'Usage
Dim instance As MimeTextMatchCollection
Dim array As MimeTextMatch()
Dim index As Integer

instance.CopyTo(array, index)
public void CopyTo (
    MimeTextMatch[] array,
    int index
)
public:
void CopyTo (
    array<MimeTextMatch^>^ array, 
    int index
)
public void CopyTo (
    MimeTextMatch[] array, 
    int index
)
public function CopyTo (
    array : MimeTextMatch[], 
    index : int
)

Parameter

  • array
    Das Array vom Typ MimeTextMatch, das als Ziel des Kopiervorgangs fungiert.
  • index
    Der nullbasierte Index, an dem mit dem Platzieren der kopierten Auflistung begonnen werden soll.

Beispiel

Das folgende Beispiel veranschaulicht die Verwendung der CopyTo-Methode.

' Get an array instance of 'MimeTextMatch' class.
Dim myMimeTextMatch(3) As MimeTextMatch
myMimeTextMatchCollection = myMimeTextBinding.Matches
' Initialize properties of 'MimeTextMatch' class.
For myInt = 0 To 3
   ' Create the 'MimeTextMatch' instance.
   myMimeTextMatch(myInt) = New MimeTextMatch()
   myMimeTextMatch(myInt).Name = "Title"
   myMimeTextMatch(myInt).Type = "*/*"
   myMimeTextMatch(myInt).IgnoreCase = True

   If True = myMimeTextMatchCollection.Contains(myMimeTextMatch(0)) Then
      myMimeTextMatch(myInt).Name = "Title" + Convert.ToString(myInt)
      myMimeTextMatch(myInt).Capture = 2
      myMimeTextMatch(myInt).Group = 2
      myMimeTextMatchCollection.Add(myMimeTextMatch(myInt))
   Else
      myMimeTextMatchCollection.Add(myMimeTextMatch(myInt))
      myMimeTextMatchCollection(myInt).RepeatsString = "2"
   End If
Next myInt
myMimeTextMatchCollection = myMimeTextBinding.Matches
' Copy collection to 'MimeTextMatch' array instance.
myMimeTextMatchCollection.CopyTo(myMimeTextMatch, 0)
// Get an array instance of 'MimeTextMatch' class.
MimeTextMatch[] myMimeTextMatch = new MimeTextMatch[4];
myMimeTextMatchCollection = myMimeTextBinding.Matches;
// Initialize properties of 'MimeTextMatch' class.
for( myInt = 0 ; myInt < 4 ; myInt++ )
{
   // Create the 'MimeTextMatch' instance.
   myMimeTextMatch[ myInt ]  = new MimeTextMatch();
   myMimeTextMatch[ myInt ].Name = "Title";
   myMimeTextMatch[ myInt ].Type = "*/*";
   myMimeTextMatch[ myInt ].IgnoreCase = true;

   if(  true == myMimeTextMatchCollection.Contains( myMimeTextMatch[ 0 ] ) )
   {
      myMimeTextMatch[ myInt ].Name = "Title" + Convert.ToString( myInt );
      myMimeTextMatch[ myInt ].Capture = 2;
      myMimeTextMatch[ myInt ].Group = 2;
      myMimeTextMatchCollection.Add( myMimeTextMatch[ myInt ] );
   }
   else
   {
      myMimeTextMatchCollection.Add( myMimeTextMatch[ myInt ] );
      myMimeTextMatchCollection[ myInt ].RepeatsString = "2";
   }
}
myMimeTextMatchCollection = myMimeTextBinding.Matches;
// Copy collection to 'MimeTextMatch' array instance.
myMimeTextMatchCollection.CopyTo( myMimeTextMatch, 0 );
// Get an array instance of 'MimeTextMatch' class.
array<MimeTextMatch^>^myMimeTextMatch = gcnew array<MimeTextMatch^>(4);
myMimeTextMatchCollection = myMimeTextBinding->Matches;

// Initialize properties of 'MimeTextMatch' class.
for ( myInt = 0; myInt < 4; myInt++ )
{
   // Create the 'MimeTextMatch' instance.
   myMimeTextMatch[ myInt ] = gcnew MimeTextMatch;
   myMimeTextMatch[ myInt ]->Name = "Title";
   myMimeTextMatch[ myInt ]->Type = "*/*";
   myMimeTextMatch[ myInt ]->IgnoreCase = true;
   if ( true == myMimeTextMatchCollection->Contains( myMimeTextMatch[ 0 ] ) )
   {
      myMimeTextMatch[ myInt ]->Name = String::Format( "Title{0}", Convert::ToString( myInt ) );
      myMimeTextMatch[ myInt ]->Capture = 2;
      myMimeTextMatch[ myInt ]->Group = 2;
      myMimeTextMatchCollection->Add( myMimeTextMatch[ myInt ] );
   }
   else
   {
      myMimeTextMatchCollection->Add( myMimeTextMatch[ myInt ] );
      myMimeTextMatchCollection[ myInt ]->RepeatsString = "2";
   }
}
myMimeTextMatchCollection = myMimeTextBinding->Matches;

// Copy collection to 'MimeTextMatch' array instance.
myMimeTextMatchCollection->CopyTo( myMimeTextMatch, 0 );
// Get an array instance of 'MimeTextMatch' class.
MimeTextMatch myMimeTextMatch[] = new MimeTextMatch[4];
myMimeTextMatchCollection = myMimeTextBinding.get_Matches();

// Initialize properties of 'MimeTextMatch' class.
for (myInt = 0; myInt < 4; myInt++) {
    // Create the 'MimeTextMatch' instance.
    myMimeTextMatch.set_Item(myInt, new MimeTextMatch());
    ((MimeTextMatch)myMimeTextMatch.get_Item(myInt)).
        set_Name("Title");
    ((MimeTextMatch)myMimeTextMatch.get_Item(myInt)).
        set_Type("*/*");
    ((MimeTextMatch)myMimeTextMatch.get_Item(myInt)).
        set_IgnoreCase(true);

    if (true == myMimeTextMatchCollection.
        Contains(myMimeTextMatch.get_Item(0))) {

        ((MimeTextMatch)myMimeTextMatch.get_Item(myInt)).
            set_Name("Title" + Convert.ToString(myInt));
        ((MimeTextMatch)myMimeTextMatch.get_Item(myInt)).
            set_Capture(2);
        ((MimeTextMatch)myMimeTextMatch.get_Item(myInt)).
            set_Group(2);
        myMimeTextMatchCollection.Add(myMimeTextMatch.
            get_Item(myInt));
    }
    else {
        myMimeTextMatchCollection.Add(myMimeTextMatch.
            get_Item(myInt));
        ((MimeTextMatch)myMimeTextMatchCollection.get_Item(myInt)).
            set_RepeatsString("2");
    }
}
myMimeTextMatchCollection = myMimeTextBinding.get_Matches();

// Copy collection to 'MimeTextMatch' array instance.
myMimeTextMatchCollection.CopyTo(myMimeTextMatch, 0);

Plattformen

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

Siehe auch

Referenz

MimeTextMatchCollection-Klasse
MimeTextMatchCollection-Member
System.Web.Services.Description-Namespace