DiscoveryClientDocumentCollection.Values プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > DiscoveryClientDocumentCollection.Values プロパティの意味・解説 

DiscoveryClientDocumentCollection.Values プロパティ

DiscoveryClientDocumentCollection 内のすべての値を保持している System.Collections.ICollection オブジェクト取得します

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

Dim instance As DiscoveryClientDocumentCollection
Dim value As ICollection

value = instance.Values
public ICollection Values { get; }
public:
property ICollection^ Values {
    ICollection^ get ();
}
/** @property */
public ICollection get_Values ()

プロパティ
DiscoveryClientDocumentCollection 内の値を格納している ICollection

使用例使用例

DiscoveryClientDocumentCollection 内の値をコンソール出力するコード例次に示します

' 'Values' in the collection are retrieved.
Dim myCollection1 As ICollection = myDiscoveryClientDocumentCollection.Values
Dim myObjectCollection1(myDiscoveryClientDocumentCollection.Count-1)
 As Object
myCollection1.CopyTo(myObjectCollection1, 0)
Console.WriteLine("The objects in the collection are :")
For iIndex = 0 To myObjectCollection1.Length
 - 1
   Console.WriteLine(myObjectCollection1(iIndex))
Next iIndex 
// 'Values' in the collection are retrieved.
ICollection myCollection1 = myDiscoveryClientDocumentCollection.Values;
object[] myObjectCollection1 = 
               new object[myDiscoveryClientDocumentCollection.Count];
myCollection1.CopyTo(myObjectCollection1, 0);
Console.WriteLine("The objects in the collection are :");
for (int iIndex=0; iIndex < myObjectCollection1.Length;
 iIndex++)
   Console.WriteLine(myObjectCollection1[iIndex]);
// 'Values' in the collection are retrieved.
ICollection^ myCollection1 = myDiscoveryClientDocumentCollection->Values;
array<Object^>^myObjectCollection1 =
   gcnew array<Object^>(myDiscoveryClientDocumentCollection->Count);
myCollection1->CopyTo( myObjectCollection1, 0 );
Console::WriteLine( "The objects in the collection are :"
 );
for ( int iIndex = 0; iIndex < myObjectCollection1->Length;
 iIndex++ )
   Console::WriteLine( myObjectCollection1[ iIndex ] );
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
DiscoveryClientDocumentCollection クラス
DiscoveryClientDocumentCollection メンバ
System.Web.Services.Discovery 名前空間
Values



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

辞書ショートカット

すべての辞書の索引

DiscoveryClientDocumentCollection.Values プロパティのお隣キーワード
検索ランキング

   

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



DiscoveryClientDocumentCollection.Values プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

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

©2024 GRAS Group, Inc.RSS