DiscoveryClientReferenceCollection クラス
アセンブリ: System.Web.Services (system.web.services.dll 内)


DiscoveryClientProtocol の References プロパティが DiscoveryClientReferenceCollection 型です。

Imports System Imports System.Net Imports System.Collections Imports System.Security.Permissions Imports System.Web.Services.Discovery Class MyDiscoveryClientReferenceCollection Shared Sub Main() Run() End Sub 'Main <PermissionSetAttribute(SecurityAction.Demand, Name := "FullTrust")> _ Shared Sub Run() Dim myDiscoveryClientProtocol As New DiscoveryClientProtocol() myDiscoveryClientProtocol.Credentials = CredentialCache.DefaultCredentials ' 'dataservice.vsdisco' is a sample discovery document. Dim myStringUrl As String = "http://localhost/dataservice.vsdisco" ' Call the Discover method to populate the References property. Dim myDiscoveryDocument As DiscoveryDocument = _ myDiscoveryClientProtocol.Discover(myStringUrl) ' Resolve all references found in the discovery document. myDiscoveryClientProtocol.ResolveAll() Dim myDiscoveryClientReferenceCollection As DiscoveryClientReferenceCollection = _ myDiscoveryClientProtocol.References ' Retrieve the keys from the collection. Dim myCollection As ICollection = myDiscoveryClientReferenceCollection.Keys Dim myObjectCollection(myDiscoveryClientReferenceCollection.Count) As Object myCollection.CopyTo(myObjectCollection, 0) Console.WriteLine("The discovery documents, service descriptions, and XML schema") Console.WriteLine(" definitions in the collection are:") Dim i As Integer For i = 0 To myObjectCollection.Length - 1 Console.WriteLine(myObjectCollection(i)) Next i ' Retrieve the values from the collection. Dim myCollection1 As ICollection = myDiscoveryClientReferenceCollection.Values Dim myObjectCollection1(myDiscoveryClientReferenceCollection.Count - 1) As Object myCollection1.CopyTo(myObjectCollection1, 0) Console.WriteLine("The objects in the collection are:") For i = 0 To myObjectCollection1.Length - 1 Console.WriteLine(myObjectCollection1(i)) Next i Dim myStringUrl1 As String = "http://localhost/dataservice.vsdisco" If myDiscoveryClientReferenceCollection.Contains(myStringUrl1) Then Console.WriteLine("The document reference {0} is part of the collection.", _ myStringUrl1) End If End Sub 'Run End Class 'MyDiscoveryClientReferenceCollection
using System; using System.Net; using System.Collections; using System.Security.Permissions; using System.Web.Services.Discovery; class MyDiscoveryClientReferenceCollection { static void Main() { Run(); } [PermissionSetAttribute(SecurityAction.Demand, Name="FullTrust")] static void Run() { DiscoveryClientProtocol myDiscoveryClientProtocol = new DiscoveryClientProtocol(); myDiscoveryClientProtocol.Credentials = CredentialCache.DefaultCredentials; // 'dataservice.vsdisco' is a sample discovery document. string myStringUrl = "http://localhost/dataservice.vsdisco"; // Call the Discover method to populate the References property. DiscoveryDocument myDiscoveryDocument = myDiscoveryClientProtocol.Discover(myStringUrl); // Resolve all references found in the discovery document. myDiscoveryClientProtocol.ResolveAll(); DiscoveryClientReferenceCollection myDiscoveryClientReferenceCollection = myDiscoveryClientProtocol.References; // Retrieve the keys from the collection. ICollection myCollection = myDiscoveryClientReferenceCollection.Keys; object[] myObjectCollection = new object[myDiscoveryClientReferenceCollection.Count]; myCollection.CopyTo(myObjectCollection, 0); Console.WriteLine("The discovery documents, service descriptions, " + "and XML schema"); Console.WriteLine(" definitions in the collection are: "); for (int i=0; i< myObjectCollection.Length; i++) { Console.WriteLine(myObjectCollection[i]); } Console.WriteLine(""); // Retrieve the values from the collection. ICollection myCollection1 = myDiscoveryClientReferenceCollection.Values; object[] myObjectCollection1 = new object[myDiscoveryClientReferenceCollection.Count]; myCollection1.CopyTo(myObjectCollection1, 0); Console.WriteLine("The objects in the collection are: "); for (int i=0; i< myObjectCollection1.Length; i++) { Console.WriteLine(myObjectCollection1[i]); } Console.WriteLine(""); string myStringUrl1 = "http://localhost/dataservice.vsdisco"; if (myDiscoveryClientReferenceCollection.Contains(myStringUrl1)) { Console.WriteLine("The document reference {0} is part of the collection." , myStringUrl1); } } }
#using <System.dll> #using <System.Web.Services.dll> using namespace System; using namespace System::Net; using namespace System::Collections; using namespace System::Web::Services::Discovery; int main() { DiscoveryClientProtocol^ myDiscoveryClientProtocol = gcnew DiscoveryClientProtocol; myDiscoveryClientProtocol->Credentials = CredentialCache::DefaultCredentials; // 'dataservice.vsdisco' is a sample discovery document. String^ myStringUrl = "http://localhost/dataservice.vsdisco"; // Call the Discover method to populate the References property. DiscoveryDocument^ myDiscoveryDocument = myDiscoveryClientProtocol->Discover( myStringUrl ); // Resolve all references found in the discovery document. myDiscoveryClientProtocol->ResolveAll(); DiscoveryClientReferenceCollection^ myDiscoveryClientReferenceCollection = myDiscoveryClientProtocol->References; // Retrieve the keys from the collection. ICollection^ myCollection = myDiscoveryClientReferenceCollection->Keys; array<Object^>^myObjectCollection = gcnew array<Object^>(myDiscoveryClientReferenceCollection->Count); myCollection->CopyTo( myObjectCollection, 0 ); Console::WriteLine( "The discovery documents, service descriptions, and XML schema" ); Console::WriteLine( " definitions in the collection are: " ); for ( int i = 0; i < myObjectCollection->Length; i++ ) { Console::WriteLine( myObjectCollection[ i ] ); } Console::WriteLine( "" ); // Retrieve the values from the collection. ICollection^ myCollection1 = myDiscoveryClientReferenceCollection->Values; array<Object^>^myObjectCollection1 = gcnew array<Object^>(myDiscoveryClientReferenceCollection->Count); myCollection1->CopyTo( myObjectCollection1, 0 ); Console::WriteLine( "The objects in the collection are: " ); for ( int i = 0; i < myObjectCollection1->Length; i++ ) { Console::WriteLine( myObjectCollection1[ i ] ); } Console::WriteLine( "" ); String^ myStringUrl1 = "http://localhost/dataservice.vsdisco"; if ( myDiscoveryClientReferenceCollection->Contains( myStringUrl1 ) ) { Console::WriteLine( "The document reference {0} is part of the collection.", myStringUrl1 ); } }

System.Collections.DictionaryBase
System.Web.Services.Discovery.DiscoveryClientReferenceCollection


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


DiscoveryClientReferenceCollection コンストラクタ
アセンブリ: System.Web.Services (system.web.services.dll 内)


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


DiscoveryClientReferenceCollection プロパティ

名前 | 説明 | |
---|---|---|
![]() | Count | DictionaryBase インスタンスに格納されている要素の数を取得します。 ( DictionaryBase から継承されます。) |
![]() | Item | 指定した URL の DiscoveryClientReferenceCollection から DiscoveryReference オブジェクトを取得または設定します。 |
![]() | Keys | DiscoveryClientReferenceCollection のすべてのキーを保持している System.Collections.ICollection オブジェクトを取得します。 |
![]() | Values | DiscoveryClientReferenceCollection 内のすべての値を保持している System.Collections.ICollection オブジェクトを取得します。 |

名前 | 説明 | |
---|---|---|
![]() | Dictionary | DictionaryBase インスタンスに格納されている要素のリストを取得します。 ( DictionaryBase から継承されます。) |
![]() | InnerHashtable | DictionaryBase インスタンスに格納されている要素のリストを取得します。 ( DictionaryBase から継承されます。) |

DiscoveryClientReferenceCollection メソッド

名前 | 説明 | |
---|---|---|
![]() | Add | オーバーロードされます。 DiscoveryReference を DiscoveryClientReferenceCollection に追加します。 |
![]() | Clear | DictionaryBase インスタンスの内容を消去します。 ( DictionaryBase から継承されます。) |
![]() | Contains | 指定した URL のDiscoveryReference が DiscoveryClientReferenceCollection に格納されているかどうかを確認します。 |
![]() | CopyTo | 1 次元の Array の指定したインデックスに DictionaryBase の要素をコピーします。 ( DictionaryBase から継承されます。) |
![]() | Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 ( Object から継承されます。) |
![]() | GetEnumerator | DictionaryBase インスタンスを反復処理する IDictionaryEnumerator を返します。 ( DictionaryBase から継承されます。) |
![]() | GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 ( Object から継承されます。) |
![]() | GetType | 現在のインスタンスの Type を取得します。 ( Object から継承されます。) |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 ( Object から継承されます。) |
![]() | Remove | DiscoveryClientReferenceCollection から指定した URL の DiscoveryReference を削除します。 |
![]() | ToString | 現在の Object を表す String を返します。 ( Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 ( Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 ( Object から継承されます。) |
![]() | OnClear | DictionaryBase インスタンスの内容を消去する前に、追加のカスタム プロセスを実行します。 ( DictionaryBase から継承されます。) |
![]() | OnClearComplete | DictionaryBase インスタンスの内容を消去した後に、追加のカスタム プロセスを実行します。 ( DictionaryBase から継承されます。) |
![]() | OnGet | 指定したキーおよび値を持つ、DictionaryBase インスタンスの要素を取得します。 ( DictionaryBase から継承されます。) |
![]() | OnInsert | DictionaryBase インスタンスに新しい要素を挿入する前に、追加のカスタム プロセスを実行します。 ( DictionaryBase から継承されます。) |
![]() | OnInsertComplete | DictionaryBase インスタンスに新しい要素を挿入した後に、追加のカスタム プロセスを実行します。 ( DictionaryBase から継承されます。) |
![]() | OnRemove | DictionaryBase インスタンスから要素を削除する前に、追加のカスタム プロセスを実行します。 ( DictionaryBase から継承されます。) |
![]() | OnRemoveComplete | DictionaryBase インスタンスから要素を削除した後に、追加のカスタム プロセスを実行します。 ( DictionaryBase から継承されます。) |
![]() | OnSet | DictionaryBase インスタンスに値を設定する前に、追加のカスタム プロセスを実行します。 ( DictionaryBase から継承されます。) |
![]() | OnSetComplete | DictionaryBase インスタンスに値を設定した後に、追加のカスタム プロセスを実行します。 ( DictionaryBase から継承されます。) |
![]() | OnValidate | 指定したキーおよび値を持つ要素を検証するときに、追加のカスタム プロセスを実行します。 ( DictionaryBase から継承されます。) |

DiscoveryClientReferenceCollection メンバ
DiscoveryReference オブジェクトのコレクションを表します。このクラスは継承できません。
DiscoveryClientReferenceCollection データ型で公開されるメンバを以下の表に示します。

名前 | 説明 | |
---|---|---|
![]() | DiscoveryClientReferenceCollection |

名前 | 説明 | |
---|---|---|
![]() | Count | DictionaryBase インスタンスに格納されている要素の数を取得します。(DictionaryBase から継承されます。) |
![]() | Item | 指定した URL の DiscoveryClientReferenceCollection から DiscoveryReference オブジェクトを取得または設定します。 |
![]() | Keys | DiscoveryClientReferenceCollection のすべてのキーを保持している System.Collections.ICollection オブジェクトを取得します。 |
![]() | Values | DiscoveryClientReferenceCollection 内のすべての値を保持している System.Collections.ICollection オブジェクトを取得します。 |

名前 | 説明 | |
---|---|---|
![]() | Dictionary | DictionaryBase インスタンスに格納されている要素のリストを取得します。(DictionaryBase から継承されます。) |
![]() | InnerHashtable | DictionaryBase インスタンスに格納されている要素のリストを取得します。(DictionaryBase から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Add | オーバーロードされます。 DiscoveryReference を DiscoveryClientReferenceCollection に追加します。 |
![]() | Clear | DictionaryBase インスタンスの内容を消去します。 (DictionaryBase から継承されます。) |
![]() | Contains | 指定した URL のDiscoveryReference が DiscoveryClientReferenceCollection に格納されているかどうかを確認します。 |
![]() | CopyTo | 1 次元の Array の指定したインデックスに DictionaryBase の要素をコピーします。 (DictionaryBase から継承されます。) |
![]() | Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 (Object から継承されます。) |
![]() | GetEnumerator | DictionaryBase インスタンスを反復処理する IDictionaryEnumerator を返します。 (DictionaryBase から継承されます。) |
![]() | GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 (Object から継承されます。) |
![]() | GetType | 現在のインスタンスの Type を取得します。 (Object から継承されます。) |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 (Object から継承されます。) |
![]() | Remove | DiscoveryClientReferenceCollection から指定した URL の DiscoveryReference を削除します。 |
![]() | ToString | 現在の Object を表す String を返します。 (Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 (Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 (Object から継承されます。) |
![]() | OnClear | DictionaryBase インスタンスの内容を消去する前に、追加のカスタム プロセスを実行します。 (DictionaryBase から継承されます。) |
![]() | OnClearComplete | DictionaryBase インスタンスの内容を消去した後に、追加のカスタム プロセスを実行します。 (DictionaryBase から継承されます。) |
![]() | OnGet | 指定したキーおよび値を持つ、DictionaryBase インスタンスの要素を取得します。 (DictionaryBase から継承されます。) |
![]() | OnInsert | DictionaryBase インスタンスに新しい要素を挿入する前に、追加のカスタム プロセスを実行します。 (DictionaryBase から継承されます。) |
![]() | OnInsertComplete | DictionaryBase インスタンスに新しい要素を挿入した後に、追加のカスタム プロセスを実行します。 (DictionaryBase から継承されます。) |
![]() | OnRemove | DictionaryBase インスタンスから要素を削除する前に、追加のカスタム プロセスを実行します。 (DictionaryBase から継承されます。) |
![]() | OnRemoveComplete | DictionaryBase インスタンスから要素を削除した後に、追加のカスタム プロセスを実行します。 (DictionaryBase から継承されます。) |
![]() | OnSet | DictionaryBase インスタンスに値を設定する前に、追加のカスタム プロセスを実行します。 (DictionaryBase から継承されます。) |
![]() | OnSetComplete | DictionaryBase インスタンスに値を設定した後に、追加のカスタム プロセスを実行します。 (DictionaryBase から継承されます。) |
![]() | OnValidate | 指定したキーおよび値を持つ要素を検証するときに、追加のカスタム プロセスを実行します。 (DictionaryBase から継承されます。) |

Weblioに収録されているすべての辞書からDiscoveryClientReferenceCollectionを検索する場合は、下記のリンクをクリックしてください。

- DiscoveryClientReferenceCollectionのページへのリンク