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

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

DiscoveryClientDocumentCollection.Keys プロパティ

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.Keys
public ICollection Keys { get; }
public:
property ICollection^ Keys {
    ICollection^ get ();
}
/** @property */
public ICollection get_Keys ()

プロパティ
DiscoveryClientDocumentCollectionキー保持している ICollection

使用例使用例

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

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



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

辞書ショートカット

すべての辞書の索引

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

   

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



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

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

©2024 GRAS Group, Inc.RSS