Partilhar via


ServiceDescriptionFormatExtensionCollection.Find Método

Definição

Pesquisa o ServiceDescriptionFormatExtensionCollection e retorna o primeiro membro da coleção especificada pelo parâmetro passado.

Sobrecargas

Find(Type)

Pesquisa o ServiceDescriptionFormatExtensionCollection e retorna o primeiro elemento do Type derivado especificado.

Find(String, String)

Pesquisa o ServiceDescriptionFormatExtensionCollection por um membro com o nome e o URI de namespace especificados.

Find(Type)

Pesquisa o ServiceDescriptionFormatExtensionCollection e retorna o primeiro elemento do Type derivado especificado.

public:
 System::Object ^ Find(Type ^ type);
public object Find (Type type);
member this.Find : Type -> obj
Public Function Find (type As Type) As Object

Parâmetros

type
Type

Um Type no qual pesquisar a coleção.

Retornos

Object

Se a pesquisa for bem-sucedida, um objeto do Type especificado; caso contrário, null.

Comentários

Esse método pesquisa a coleção na ordem de índice e retorna apenas o elemento correspondente com o índice com menor numeração.

Aplica-se a

Find(String, String)

Pesquisa o ServiceDescriptionFormatExtensionCollection por um membro com o nome e o URI de namespace especificados.

public:
 System::Xml::XmlElement ^ Find(System::String ^ name, System::String ^ ns);
public System.Xml.XmlElement Find (string name, string ns);
member this.Find : string * string -> System.Xml.XmlElement
Public Function Find (name As String, ns As String) As XmlElement

Parâmetros

name
String

O nome do XmlElement a ser localizado.

ns
String

O URI do namespace de XML do XmlElement a ser localizado.

Retornos

XmlElement

Se a pesquisa for bem-sucedida, um XmlElement; caso contrário, null.

Exemplos

// Check element of type 'SoapAddressBinding' in collection.
Object^ myObj = myCollection->Find( mySoapAddressBinding->GetType() );
if ( myObj == nullptr )
      Console::WriteLine( "Element of type ' {0}' not found in collection.", mySoapAddressBinding->GetType() );
else
      Console::WriteLine( "Element of type ' {0}' found in collection.", mySoapAddressBinding->GetType() );
// Check element of type 'SoapAddressBinding' in collection.
Object   myObj = myCollection.Find(mySoapAddressBinding.GetType());
if(myObj == null)
{
   Console.WriteLine("Element of type '{0}' not found in collection.",
      mySoapAddressBinding.GetType().ToString());
}
else
{
   Console.WriteLine("Element of type '{0}' found in collection.",
      mySoapAddressBinding.GetType().ToString());
}
' Check element of type 'SoapAddressBinding' in collection.
Dim myObj As Object = myCollection.Find(mySoapAddressBinding.GetType())
If myObj Is Nothing Then
   Console.WriteLine("Element of type '{0}' not found in collection.", _
        mySoapAddressBinding.GetType().ToString())
Else
   Console.WriteLine("Element of type '{0}' found in collection.", _
        mySoapAddressBinding.GetType().ToString())
End If

Comentários

Esse método pesquisa a coleção na ordem de índice e retorna o primeiro XmlElement que atende aos critérios dos dois parâmetros.

Aplica-se a