PortCollection.Add(Port) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds the specified Port to the end of the PortCollection.
public:
int Add(System::Web::Services::Description::Port ^ port);
public int Add (System.Web.Services.Description.Port port);
member this.Add : System.Web.Services.Description.Port -> int
Public Function Add (port As Port) As Integer
Parameters
Returns
The zero-based index where the port
parameter has been added.
Examples
myPortCollection = myService->Ports;
Port^ myNewPort = myPortCollection[ 0 ];
myPortCollection->Remove( myNewPort );
// Display the number of ports.
Console::WriteLine( "\nTotal number of ports before adding a new port : {0}", myService->Ports->Count );
// Add a new port.
myPortCollection->Add( myNewPort );
// Display the number of ports after adding a port.
Console::WriteLine( "Total number of ports after adding a new port : {0}", myService->Ports->Count );
myPortCollection = myService.Ports;
Port myNewPort = myPortCollection[0];
myPortCollection.Remove(myNewPort);
// Display the number of ports.
Console.WriteLine("\nTotal number of ports before"
+ " adding a new port : " + myService.Ports.Count);
// Add a new port.
myPortCollection.Add(myNewPort);
// Display the number of ports after adding a port.
Console.WriteLine("Total number of ports after"
+ " adding a new port : " + myService.Ports.Count);
myPortCollection = myService.Ports
Dim myNewPort As Port = myPortCollection(0)
myPortCollection.Remove(myNewPort)
' Display the number of ports.
Console.WriteLine(ControlChars.NewLine & _
"Total number of ports before " & _
"adding a new port : " & _
myService.Ports.Count.ToString)
' Add a new port.
myPortCollection.Add(myNewPort)
' Display the number of ports after adding a port.
Console.WriteLine("Total number of ports after " & _
"adding a new port : " & _
myService.Ports.Count.ToString)
Applies to
Spolupracujte s námi na GitHubu
Zdroj tohoto obsahu najdete na GitHubu, kde můžete také vytvářet a kontrolovat problémy a žádosti o přijetí změn. Další informace najdete v našem průvodci pro přispěvatele.