다음을 통해 공유


ServiceDescriptionFormatExtensionCollection.Find 메서드

정의

ServiceDescriptionFormatExtensionCollection을 검색하여, 전달된 매개 변수에서 지정한 컬렉션의 첫 번째 멤버를 반환합니다.

오버로드

Find(Type)

ServiceDescriptionFormatExtensionCollection을 검색하여 지정된 파생 Type의 첫 번째 요소를 반환합니다.

Find(String, String)

지정된 이름 및 네임스페이스 URI를 사용하여 멤버에 대한 ServiceDescriptionFormatExtensionCollection을 검색합니다.

Find(Type)

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입니다.

반환

Object

검색이 성공적으로 수행되면 지정된 Type의 개체이고, 그렇지 않으면 null입니다.

설명

이 메서드는 인덱스 순서에서 컬렉션을 검색 하 고 중 가장 작은 인덱스를 사용 하 여 일치 하는 요소만 반환 합니다.

적용 대상

Find(String, String)

지정된 이름 및 네임스페이스 URI를 사용하여 멤버에 대한 ServiceDescriptionFormatExtensionCollection을 검색합니다.

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

찾을 XmlElement의 XML 네임스페이스 URI입니다.

반환

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 두 매개 변수의 조건을 만족 하는 합니다.

적용 대상