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


Imports System Imports System.Reflection Imports System.IO Imports System.Web.Services.Discovery Imports System.Xml.Schema Imports System.Collections Public Class MyDiscoveryClientResult Shared Sub Main() Try Dim myDiscoveryClientProtocol As New DiscoveryClientProtocol() ' Get the collection of DiscoveryClientResult objects. Dim myDiscoveryClientResultCollection As _ DiscoveryClientResultCollection = _ myDiscoveryClientProtocol.ReadAll("results.discomap") Console.WriteLine( _ "Removing a DiscoveryClientResult from the collection...") ' Remove the first DiscoveryClientResult from the collection. myDiscoveryClientResultCollection.Remove( _ myDiscoveryClientResultCollection(0)) Console.WriteLine("Adding a DiscoveryClientResult" & _ " to the collection...") Dim myDiscoveryClientResult As New DiscoveryClientResult() ' Set the DiscoveryDocumentReference class as the type of ' reference in the discovery document. myDiscoveryClientResult.ReferenceTypeName = _ "System.Web.Services.Discovery.DiscoveryDocumentReference" ' Set the URL for the reference. myDiscoveryClientResult.Url = _ "http://localhost/Discovery/Service1_vb.asmx?disco" ' Set the name of the file in which the reference is saved. myDiscoveryClientResult.Filename = "Service1_vb.disco" ' Add myDiscoveryClientResult to the collection. myDiscoveryClientResultCollection.Add(myDiscoveryClientResult) If myDiscoveryClientResultCollection.Contains( _ myDiscoveryClientResult) Then Console.WriteLine( _ "Instance of DiscoveryClientResult found in the Collection") End If Catch ex As Exception Console.WriteLine("Error is " + ex.Message) End Try End Sub 'Main End Class 'MyDiscoveryClientResult
using System; using System.Reflection; using System.IO; using System.Web.Services.Discovery; using System.Xml.Schema; using System.Collections; public class MyDiscoveryClientResult { static void Main() { try { DiscoveryClientProtocol myDiscoveryClientProtocol = new DiscoveryClientProtocol(); // Get the collection of DiscoveryClientResult objects. DiscoveryClientResultCollection myDiscoveryClientResultCollection = myDiscoveryClientProtocol.ReadAll("results.discomap"); Console.WriteLine( "Removing a DiscoveryClientResult from the collection..."); // Remove the first DiscoveryClientResult from the collection. myDiscoveryClientResultCollection.Remove( myDiscoveryClientResultCollection[0]); Console.WriteLine("Adding a DiscoveryClientResult" + " to the collection..."); DiscoveryClientResult myDiscoveryClientResult = new DiscoveryClientResult(); // Set the DiscoveryDocumentReference class as the type of // reference in the discovery document. myDiscoveryClientResult.ReferenceTypeName = "System.Web.Services.Discovery.DiscoveryDocumentReference"; // Set the URL for the reference. myDiscoveryClientResult.Url = "http://localhost/Discovery/Service1_cs.asmx?disco"; // Set the name of the file in which the reference is saved. myDiscoveryClientResult.Filename = "Service1_cs.disco"; // Add myDiscoveryClientResult to the collection. myDiscoveryClientResultCollection.Add(myDiscoveryClientResult); if(myDiscoveryClientResultCollection.Contains(myDiscoveryClientResult)) { Console.WriteLine( "Instance of DiscoveryClientResult found in the Collection"); } } catch(Exception ex) { Console.WriteLine("Error is "+ex.Message); } } }
#using <System.Xml.dll> #using <System.Web.Services.dll> #using <System.dll> using namespace System; using namespace System::Reflection; using namespace System::IO; using namespace System::Web::Services::Discovery; using namespace System::Xml::Schema; using namespace System::Collections; int main() { try { DiscoveryClientProtocol^ myDiscoveryClientProtocol = gcnew DiscoveryClientProtocol; // Get the collection of DiscoveryClientResult objects. DiscoveryClientResultCollection^ myDiscoveryClientResultCollection = myDiscoveryClientProtocol->ReadAll( "results.discomap" ); Console::WriteLine( "Removing a DiscoveryClientResult from the collection..." ); // Remove the first DiscoveryClientResult from the collection. myDiscoveryClientResultCollection->Remove( myDiscoveryClientResultCollection[ 0 ] ); Console::WriteLine( "Adding a DiscoveryClientResult to the collection..." ); DiscoveryClientResult^ myDiscoveryClientResult = gcnew DiscoveryClientResult; // Set the DiscoveryDocumentReference class as the type of // reference in the discovery document. myDiscoveryClientResult->ReferenceTypeName = "System.Web.Services.Discovery.DiscoveryDocumentReference"; // Set the URL for the reference. myDiscoveryClientResult->Url = "http://localhost/Discovery/Service1_cs.asmx?disco"; // Set the name of the file in which the reference is saved. myDiscoveryClientResult->Filename = "Service1_cs.disco"; // Add myDiscoveryClientResult to the collection. myDiscoveryClientResultCollection->Add( myDiscoveryClientResult ); if ( myDiscoveryClientResultCollection->Contains( myDiscoveryClientResult ) ) { Console::WriteLine( "Instance of DiscoveryClientResult found in the Collection" ); } } catch ( Exception^ ex ) { Console::WriteLine( "Error is {0}", ex->Message ); } }
import System.*; import System.Reflection.*; import System.IO.*; import System.Web.Services.Discovery.*; import System.Xml.Schema.*; import System.Collections.*; public class MyDiscoveryClientResult { public static void main(String[] args) { try { DiscoveryClientProtocol myDiscoveryClientProtocol = new DiscoveryClientProtocol(); // Get the collection of DiscoveryClientResult objects. DiscoveryClientResultCollection myDiscoveryClientResultCollection = myDiscoveryClientProtocol.ReadAll("results.discomap"); Console.WriteLine("Removing a DiscoveryClientResult from the " + "collection..."); // Remove the first DiscoveryClientResult from the collection. myDiscoveryClientResultCollection.Remove( myDiscoveryClientResultCollection.get_Item(0)); Console.WriteLine("Adding a DiscoveryClientResult" + " to the collection..."); DiscoveryClientResult myDiscoveryClientResult = new DiscoveryClientResult(); // Set the DiscoveryDocumentReference class as the type of // reference in the discovery document. myDiscoveryClientResult.set_ReferenceTypeName( "System.Web.Services.Discovery.DiscoveryDocumentReference"); // Set the URL for the reference. myDiscoveryClientResult.set_Url( "http://localhost/Discovery/Service1_jsl.asmx?disco"); // Set the name of the file in which the reference is saved. myDiscoveryClientResult.set_Filename("Service1_jsl.disco"); // Add myDiscoveryClientResult to the collection. myDiscoveryClientResultCollection.Add(myDiscoveryClientResult); if (myDiscoveryClientResultCollection. Contains(myDiscoveryClientResult)) { Console.WriteLine("Instance of DiscoveryClientResult found " + "in the Collection"); } } catch (System.Exception ex) { Console.WriteLine("Error is " + ex.get_Message()); } } //main } //MyDiscoveryClientResult

System.Collections.CollectionBase
System.Web.Services.Discovery.DiscoveryClientResultCollection


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 によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


DiscoveryClientResultCollection コンストラクタ
アセンブリ: 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 によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


DiscoveryClientResultCollection プロパティ

名前 | 説明 | |
---|---|---|
![]() | Capacity | CollectionBase に格納できる要素の数を取得または設定します。 ( CollectionBase から継承されます。) |
![]() | Count | CollectionBase インスタンスに格納されている要素の数を取得します。このプロパティはオーバーライドできません。 ( CollectionBase から継承されます。) |
![]() | Item | DiscoveryClientResultCollection の i の位置にある DiscoveryClientResult を取得または設定します。 |

名前 | 説明 | |
---|---|---|
![]() | InnerList | CollectionBase インスタンス内の要素のリストを格納する ArrayList を取得します。 ( CollectionBase から継承されます。) |
![]() | List | CollectionBase インスタンス内の要素のリストを格納する IList を取得します。 ( CollectionBase から継承されます。) |

DiscoveryClientResultCollection メソッド

名前 | 説明 | |
---|---|---|
![]() | Add | DiscoveryClientResult を DiscoveryClientResultCollection に追加します。 |
![]() | Clear | CollectionBase インスタンスからすべてのオブジェクトを削除します。このメソッドはオーバーライドできません。 ( CollectionBase から継承されます。) |
![]() | Contains | DiscoveryClientResultCollection に特定の DiscoveryClientResult が格納されているかどうかを確認します。 |
![]() | Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 ( Object から継承されます。) |
![]() | GetEnumerator | CollectionBase インスタンスを反復処理する列挙子を返します。 ( CollectionBase から継承されます。) |
![]() | GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 ( Object から継承されます。) |
![]() | GetType | 現在のインスタンスの Type を取得します。 ( Object から継承されます。) |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 ( Object から継承されます。) |
![]() | Remove | DiscoveryClientResultCollection 内で最初に見つかった特定の DiscoveryClientResult を削除します。 |
![]() | RemoveAt | CollectionBase インスタンスの指定したインデックスにある要素を削除します。このメソッドはオーバーライドできません。 ( CollectionBase から継承されます。) |
![]() | ToString | 現在の Object を表す String を返します。 ( Object から継承されます。) |

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

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

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

名前 | 説明 | |
---|---|---|
![]() | Capacity | CollectionBase に格納できる要素の数を取得または設定します。(CollectionBase から継承されます。) |
![]() | Count | CollectionBase インスタンスに格納されている要素の数を取得します。このプロパティはオーバーライドできません。(CollectionBase から継承されます。) |
![]() | Item | DiscoveryClientResultCollection の i の位置にある DiscoveryClientResult を取得または設定します。 |

名前 | 説明 | |
---|---|---|
![]() | InnerList | CollectionBase インスタンス内の要素のリストを格納する ArrayList を取得します。(CollectionBase から継承されます。) |
![]() | List | CollectionBase インスタンス内の要素のリストを格納する IList を取得します。(CollectionBase から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Add | DiscoveryClientResult を DiscoveryClientResultCollection に追加します。 |
![]() | Clear | CollectionBase インスタンスからすべてのオブジェクトを削除します。このメソッドはオーバーライドできません。 (CollectionBase から継承されます。) |
![]() | Contains | DiscoveryClientResultCollection に特定の DiscoveryClientResult が格納されているかどうかを確認します。 |
![]() | Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 (Object から継承されます。) |
![]() | GetEnumerator | CollectionBase インスタンスを反復処理する列挙子を返します。 (CollectionBase から継承されます。) |
![]() | GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 (Object から継承されます。) |
![]() | GetType | 現在のインスタンスの Type を取得します。 (Object から継承されます。) |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 (Object から継承されます。) |
![]() | Remove | DiscoveryClientResultCollection 内で最初に見つかった特定の DiscoveryClientResult を削除します。 |
![]() | RemoveAt | CollectionBase インスタンスの指定したインデックスにある要素を削除します。このメソッドはオーバーライドできません。 (CollectionBase から継承されます。) |
![]() | ToString | 現在の Object を表す String を返します。 (Object から継承されます。) |

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

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

- DiscoveryClientResultCollectionのページへのリンク