Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Kopiert die gesamte PortCollection in ein eindimensionales Array vom Typ Port, wobei am angegebenen nullbasierten Index des Zielarrays begonnen wird.
Namespace: System.Web.Services.Description
Assembly: System.Web.Services (in system.web.services.dll)
Syntax
'Declaration
Public Sub CopyTo ( _
array As Port(), _
index As Integer _
)
'Usage
Dim instance As PortCollection
Dim array As Port()
Dim index As Integer
instance.CopyTo(array, index)
public void CopyTo (
Port[] array,
int index
)
public:
void CopyTo (
array<Port^>^ array,
int index
)
public void CopyTo (
Port[] array,
int index
)
public function CopyTo (
array : Port[],
index : int
)
Parameter
- array
Ein Array vom Typ Port, das als Ziel des Kopiervorgangs fungiert.
- index
Der nullbasierte Index, an dem mit dem Platzieren der kopierten Auflistung begonnen werden soll.
Beispiel
myPortCollection = myService.Ports
' Create an array of Port objects.
Console.WriteLine(ControlChars.NewLine & "Port collection :")
Dim myPortArray(myService.Ports.Count) As Port
myPortCollection.CopyTo(myPortArray, 0)
Dim i1 As Integer
For i1 = 0 to myService.Ports.Count -1
Console.WriteLine("Port[" & i1.ToString + "] : " & _
myPortArray(i1).Name)
Next
myPortCollection = myService.Ports;
// Create an array of Port objects.
Console.WriteLine("\nPort collection :");
Port[] myPortArray = new Port[myService.Ports.Count];
myPortCollection.CopyTo(myPortArray, 0);
for(int i1=0 ; i1 < myService.Ports.Count ; ++i1)
{
Console.WriteLine("Port[" + i1+ "] : " + myPortArray[i1].Name);
}
myPortCollection = myService->Ports;
// Create an array of Port objects.
Console::WriteLine( "\nPort collection :" );
array<Port^>^myPortArray = gcnew array<Port^>(myService->Ports->Count);
myPortCollection->CopyTo( myPortArray, 0 );
for ( int i1 = 0; i1 < myService->Ports->Count; ++i1 )
{
Console::WriteLine( "Port[{0}] : {1}", i1, myPortArray[ i1 ]->Name );
}
myPortCollection = myService.get_Ports();
// Create an array of Port objects.
Console.WriteLine("\nPort collection :");
Port myPortArray[] =
new Port[myService.get_Ports().get_Count()];
myPortCollection.CopyTo(myPortArray, 0);
for (int i1 = 0; i1 < myService.get_Ports().get_Count();
++i1) {
Console.WriteLine("Port[" + i1 + "] : "
+ myPortArray[i1].get_Name());
}
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
PortCollection-Klasse
PortCollection-Member
System.Web.Services.Description-Namespace