ServiceDescriptionCollection.Contains(ServiceDescription) Method

Definition

Returns a value indicating whether the specified ServiceDescription is a member of the collection.

C#
public bool Contains(System.Web.Services.Description.ServiceDescription serviceDescription);

Parameters

serviceDescription
ServiceDescription

The ServiceDescription for which to check collection membership.

Returns

true if the serviceDescription parameter is a member of the ServiceDescriptionCollection; otherwise, false.

Examples

C#
// Check for 'ServiceDescription' object in the collection.
if (myCollection.Contains(myServiceDescription2))
{
   // Get the index of 'ServiceDescription' object.
   int myIndex = myCollection.IndexOf(myServiceDescription2);
   // Remove 'ServiceDescription' object from the collection.
   myCollection.Remove(myServiceDescription2);
   Console.WriteLine("Element at index {0} is removed ", myIndex);
}
else
{
   Console.WriteLine("Element not found.");
}

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)