Поделиться через


ServiceDescriptionFormatExtensionCollection.Find Метод

Определение

В коллекции ServiceDescriptionFormatExtensionCollection выполняет поиск и возвращает первый элемент коллекции, заданный передаваемым параметром.

Перегрузки

Find(Type)

В коллекции ServiceDescriptionFormatExtensionCollection выполняет поиск и возвращает первый элемент заданного производного типа Type.

Find(String, String)

Ищет ServiceDescriptionFormatExtensionCollection для члена с заданным именем и универсальным кодом ресурса (URI) пространства имен.

Find(Type)

Исходный код:
ServiceDescription.cs
Исходный код:
ServiceDescription.cs
Исходный код:
ServiceDescription.cs

В коллекции ServiceDescriptionFormatExtensionCollection выполняет поиск и возвращает первый элемент заданного производного типа Type.

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

Параметры

type
Type

Объект Type, поиск которого требуется выполнить в коллекции.

Возвращаемое значение

Если поиск прошел успешно, возвращает объект заданного типа Type; в обратном случае — значение null.

Комментарии

Этот метод выполняет поиск коллекции в порядке индекса и возвращает только соответствующий элемент с наименьшим нумерованным индексом.

Применяется к

Find(String, String)

Исходный код:
ServiceDescription.cs
Исходный код:
ServiceDescription.cs
Исходный код:
ServiceDescription.cs

Ищет ServiceDescriptionFormatExtensionCollection для члена с заданным именем и универсальным кодом ресурса (URI) пространства имен.

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

Параметры

name
String

Имя искомого объекта XmlElement.

ns
String

URI пространства имен XML искомого объекта XmlElement.

Возвращаемое значение

Если поиск прошел успешно, возвращается значение XmlElement; в обратном случае — значение null.

Примеры

// 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

Комментарии

Этот метод выполняет поиск коллекции в порядке индекса и возвращает первый XmlElement объект , соответствующий критериям двух параметров.

Применяется к