WebReferenceCollection.Contains(WebReference) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
コレクションに、指定した WebReference インスタンスが格納されているかどうかを判断します。
public:
bool Contains(System::Web::Services::Description::WebReference ^ webReference);
public bool Contains (System.Web.Services.Description.WebReference webReference);
member this.Contains : System.Web.Services.Description.WebReference -> bool
Public Function Contains (webReference As WebReference) As Boolean
パラメーター
- webReference
- WebReference
検索対象の Web 参照。
戻り値
指定した Web 参照インスタンスがコレクションに格納されている場合は true
。それ以外の場合は false
。
例
Contains メソッドを使用するコード例を次に示します。
using System;
using System.CodeDom;
using System.CodeDom.Compiler;
using System.Web.Services;
using System.Web.Services.Description;
using System.Web.Services.Discovery;
using System.Xml;
using System.Xml.Serialization;
public class Test
{
public static void Main ()
{
// Read in a WSDL service description.
string url = "http://www.contoso.com/Example/WebService.asmx?WSDL";
XmlTextReader reader = new XmlTextReader(url);
ServiceDescription wsdl = ServiceDescription.Read(reader);
// Create a WSDL collection.
DiscoveryClientDocumentCollection wsdlCollection =
new DiscoveryClientDocumentCollection();
wsdlCollection.Add(url, wsdl);
// Define the parameters needed to create web references.
CodeNamespace proxyNamespace = new CodeNamespace("ExampleNamespace");
string baseUrl = "http://www.contoso.com";
string protocolName = "Soap12";
// Create some web references.
WebReference reference1 = new WebReference(
wsdlCollection, proxyNamespace, protocolName,
"UrlKey1", baseUrl);
WebReference reference2 = new WebReference(
wsdlCollection, proxyNamespace, protocolName,
"UrlKey2", baseUrl);
WebReference reference3 = new WebReference(
wsdlCollection, proxyNamespace, protocolName,
"UrlKey3", baseUrl);
// Create a web reference collection.
WebReferenceCollection references = new WebReferenceCollection();
references.Add(reference1);
references.Add(reference2);
// Confirm that the references were inserted.
Console.WriteLine("The collection contains {0} references.",
references.Count);
// Insert another reference into the collection.
references.Insert(2, reference3);
// Print the index of the inserted reference.
int index = references.IndexOf(reference3);
Console.WriteLine("The index of reference3 is {0}.", index);
// Remove the inserted reference from the collection.
references.Remove(reference3);
// Determine if the collection contains reference3.
if (references.Contains(reference3))
{
Console.WriteLine("The collection contains reference3.");
}
else
{
Console.WriteLine("The collection does not contain reference3.");
}
// Print the URL key of the first reference in the collection.
Console.WriteLine(
"The URL key of the first reference in the collection is {0}.",
references[0].AppSettingUrlKey);
// Copy the collection to an array leaving the first array slot empty.
WebReference[] referenceArray = new WebReference[3];
references.CopyTo(referenceArray, 1);
Console.WriteLine(
"The URL key of the first reference in the array is {0}.",
referenceArray[1].AppSettingUrlKey);
}
}
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET