ImportCollection.Insert(Int32, Import) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将指定的 Import 实例添加到 ImportCollection 中指定的从零开始的索引处。
public:
void Insert(int index, System::Web::Services::Description::Import ^ import);
public void Insert (int index, System.Web.Services.Description.Import import);
member this.Insert : int * System.Web.Services.Description.Import -> unit
Public Sub Insert (index As Integer, import As Import)
参数
- index
- Int32
将在该处插入 import
参数的从零开始的索引。
例外
示例
下面的示例演示 Insert
方法的用法。 若要查看用户定义的 CreateImport
方法的源,请参阅 类中包含的 Import 示例。
myServiceDescription = ServiceDescription::Read( "StockQuoteService_cpp.wsdl" );
myServiceDescription->Imports->Insert( 0, CreateImport( "http://localhost/stockquote/definitions", "http://localhost/stockquote/stockquote_cpp.wsdl" ) );
myServiceDescription =
ServiceDescription.Read("StockQuoteService_cs.wsdl");
myServiceDescription.Imports.Insert(
0,CreateImport("http://localhost/stockquote/definitions",
"http://localhost/stockquote/stockquote_cs.wsdl"));
myServiceDescription = _
ServiceDescription.Read("StockQuoteService_vb.wsdl")
myServiceDescription.Imports.Insert(0, _
CreateImport("http://localhost/stockquote/definitions", _
"http://localhost/stockquote/stockquote_vb.wsdl"))
注解
如果集合中的项数已等于集合的容量,则通过在插入新元素之前自动重新分配内部数组,容量将增加一倍。
index
如果 参数等于 Count,则会将 import
参数添加到 的ImportCollection末尾。
插入点后的元素向下移动以适应新元素。