ServiceDescriptionFormatExtensionCollection.Find 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
搜尋 ServiceDescriptionFormatExtensionCollection,並傳回由傳入的參數指定的集合中的第一個成員。
多載
Find(Type) |
搜尋 ServiceDescriptionFormatExtensionCollection,並傳回指定的衍生 Type 的第一個項目。 |
Find(String, String) |
在 ServiceDescriptionFormatExtensionCollection 中搜尋有指定名稱和命名空間 URI 的成員。 |
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 的物件,否則為 null
。
備註
這個方法會依索引順序搜尋集合,並只傳回具有最低編號索引的相符專案。
適用於
Find(String, String)
在 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
要尋找的 XmlElement 的 XML 命名空間 URI。
傳回
如果搜尋成功,則為 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 符合兩個參數準則的集合。