Udostępnij za pośrednictwem


ImportCollection.Add(Import) Metoda

Definicja

Dodaje określony Import element na końcu obiektu ImportCollection.

public:
 int Add(System::Web::Services::Description::Import ^ import);
public int Add (System.Web.Services.Description.Import import);
member this.Add : System.Web.Services.Description.Import -> int
Public Function Add (import As Import) As Integer

Parametry

import
Import

Element Import do dodania do kolekcji.

Zwraca

Indeks oparty na zerze, w którym import dodano parametr.

Przykłady

W poniższym przykładzie pokazano użycie Add metody . Aby uzyskać więcej informacji na temat metody używanej CreateImport w przykładzie, zobacz przykład w Import klasie .

ServiceDescription^ myServiceDescription = ServiceDescription::Read( "StockQuote_cpp.wsdl" );
myServiceDescription->Imports->Add( CreateImport( "http://localhost/stockquote/schemas", "http://localhost/stockquote/stockquote_cpp.xsd" ) );
ServiceDescription myServiceDescription =
   ServiceDescription.Read("StockQuote_cs.wsdl");
myServiceDescription.Imports.Add(
   CreateImport("http://localhost/stockquote/schemas",
   "http://localhost/stockquote/stockquote_cs.xsd"));
Dim myServiceDescription As ServiceDescription = _
   ServiceDescription.Read("StockQuote_vb.wsdl")
myServiceDescription.Imports.Add( _
   CreateImport("http://localhost/stockquote/schemas", _
   "http://localhost/stockquote/stockquote_vb.xsd"))

Dotyczy