Udostępnij za pośrednictwem


OperationCollection.Contains(Operation) Metoda

Definicja

Zwraca wartość wskazującą, czy określony Operation element jest elementem członkowskim .OperationCollection

public:
 bool Contains(System::Web::Services::Description::Operation ^ operation);
public bool Contains (System.Web.Services.Description.Operation operation);
member this.Contains : System.Web.Services.Description.Operation -> bool
Public Function Contains (operation As Operation) As Boolean

Parametry

operation
Operation

Element Operation , dla którego należy sprawdzić członkostwo w kolekcji.

Zwraca

Boolean

true jeśli operation jest członkiem ; OperationCollectionw przeciwnym razie , false.

Przykłady

W poniższym przykładzie pokazano użycie Contains metody .

if ( myOperationCollection->Contains( myOperation ) == true )
{
   Console::WriteLine( "The index of the added 'myOperation' operation is : {0}", myOperationCollection->IndexOf( myOperation ) );
}
if(myOperationCollection.Contains(myOperation) == true)
{
   Console.WriteLine("The index of the added 'myOperation' " +
                     "operation is : " +
                     myOperationCollection.IndexOf(myOperation));
}
If myOperationCollection.Contains(myOperation) = True Then
   Console.WriteLine("The index of the added 'myOperation' " + _
            "operation is : " + _
            myOperationCollection.IndexOf(myOperation).ToString)
End If

Dotyczy