PortCollection.Add(Port) 方法

定义

将指定的 Port 添加到 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

参数

port
Port

要添加到集合中的 Port

返回

Int32

添加了 port 参数的位置的从零开始的索引。

示例

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)

适用于