PortTypeCollection.CopyTo メソッドとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > PortTypeCollection.CopyTo メソッドの意味・解説 

PortTypeCollection.CopyTo メソッド

PortType 型の 1 次元配列に、その配列内の指定した 0 から始まるインデックス開始位置として PortTypeCollection 全体コピーします

名前空間: System.Web.Services.Description
アセンブリ: System.Web.Services (system.web.services.dll 内)
構文構文

使用例使用例
Dim myPortTypeCollection As PortTypeCollection

Dim myServiceDescription As ServiceDescription
 = _
   ServiceDescription.Read("MathService_VB.wsdl")
myPortTypeCollection = myServiceDescription.PortTypes
Dim noOfPortTypes As Integer
 = myServiceDescription.PortTypes.Count
Console.WriteLine( _
   ControlChars.NewLine + "Total number of PortTypes: "
 & _
   myServiceDescription.PortTypes.Count.ToString())

' Copy the collection into an array.
Dim myPortTypeArray(noOfPortTypes-1) As PortType
myPortTypeCollection.CopyTo(myPortTypeArray, 0)

' Display names of all PortTypes.
Dim i As Integer
For i = 0 To noOfPortTypes - 1
   Console.WriteLine("PortType Name: " + myPortTypeArray(i).Name)
Next i
myServiceDescription.Write("MathService_New.wsdl")
PortTypeCollection myPortTypeCollection;

ServiceDescription myServiceDescription = 
   ServiceDescription.Read("MathService_CS.wsdl");

myPortTypeCollection = myServiceDescription.PortTypes;
int noOfPortTypes = myServiceDescription.PortTypes.Count;
Console.WriteLine("\nTotal number of PortTypes: " 
   + myServiceDescription.PortTypes.Count);

// Copy the collection into an array.
 PortType[] myPortTypeArray = new PortType[noOfPortTypes];
 myPortTypeCollection.CopyTo(myPortTypeArray, 0);

// Display names of all PortTypes.
 for(int i = 0; i < noOfPortTypes; i++)
    Console.WriteLine("PortType name: " + myPortTypeArray[i].Name);
 myServiceDescription.Write("MathService_New.wsdl");
PortTypeCollection^ myPortTypeCollection;

ServiceDescription^ myServiceDescription =
   ServiceDescription::Read( "MathService_CS.wsdl" );

myPortTypeCollection = myServiceDescription->PortTypes;
int noOfPortTypes = myServiceDescription->PortTypes->Count;
Console::WriteLine( "\nTotal number of PortTypes: {0}",
   myServiceDescription->PortTypes->Count );

// Copy the collection into an array.
array<PortType^>^ myPortTypeArray = gcnew array<PortType^>(noOfPortTypes);
myPortTypeCollection->CopyTo( myPortTypeArray, 0 );

// Display names of all PortTypes.
for ( int i = 0; i < noOfPortTypes; i++
 )
{
   Console::WriteLine( "PortType name: {0}", myPortTypeArray[ i ]->Name
 );
}
myServiceDescription->Write( "MathService_New.wsdl" );
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
PortTypeCollection クラス
PortTypeCollection メンバ
System.Web.Services.Description 名前空間


このページでは「.NET Framework クラス ライブラリ リファレンス」からPortTypeCollection.CopyTo メソッドを検索した結果を表示しています。
Weblioに収録されているすべての辞書からPortTypeCollection.CopyTo メソッドを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からPortTypeCollection.CopyTo メソッド を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

PortTypeCollection.CopyTo メソッドのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



PortTypeCollection.CopyTo メソッドのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS