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 个参数。