XmlElement.HasAttribute Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Geçerli düğümün belirtilen özniteliğe sahip olup olmadığını belirler.
Aşırı Yüklemeler
HasAttribute(String) |
Geçerli düğümün belirtilen ada sahip bir özniteliği olup olmadığını belirler. |
HasAttribute(String, String) |
Geçerli düğümün belirtilen yerel ada ve ad alanı URI'sine sahip bir özniteliği olup olmadığını belirler. |
HasAttribute(String)
Geçerli düğümün belirtilen ada sahip bir özniteliği olup olmadığını belirler.
public:
virtual bool HasAttribute(System::String ^ name);
public virtual bool HasAttribute (string name);
abstract member HasAttribute : string -> bool
override this.HasAttribute : string -> bool
Public Overridable Function HasAttribute (name As String) As Boolean
Parametreler
- name
- String
Bulunacak özniteliğin adı. Bu, tam bir addır. Eşleşen düğümün Name
özelliğiyle eşleştirilir.
Döndürülenler
true
geçerli düğüm belirtilen özniteliğe sahipse; aksi takdirde , false
.
Örnekler
Aşağıdaki örnek, öğenin belirtilen özniteliğe sahip olup olmadığını denetler.
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;
int main()
{
XmlDocument^ doc = gcnew XmlDocument;
doc->LoadXml( "<book genre='novel' ISBN='1-861001-57-5'><title>Pride And Prejudice</title></book>" );
XmlElement^ root = doc->DocumentElement;
// Check to see if the element has a genre attribute.
if ( root->HasAttribute( "genre" ) )
{
String^ genre = root->GetAttribute( "genre" );
Console::WriteLine( genre );
}
}
using System;
using System.IO;
using System.Xml;
public class Sample
{
public static void Main()
{
XmlDocument doc = new XmlDocument();
doc.LoadXml("<book genre='novel' ISBN='1-861001-57-5'>" +
"<title>Pride And Prejudice</title>" +
"</book>");
XmlElement root = doc.DocumentElement;
// Check to see if the element has a genre attribute.
if (root.HasAttribute("genre")){
String genre = root.GetAttribute("genre");
Console.WriteLine(genre);
}
}
}
Imports System.IO
Imports System.Xml
public class Sample
public shared sub Main()
Dim doc as XmlDocument = new XmlDocument()
doc.LoadXml("<book genre='novel' ISBN='1-861001-57-5'>" & _
"<title>Pride And Prejudice</title>" & _
"</book>")
Dim root as XmlElement = doc.DocumentElement
' Check to see if the element has a genre attribute.
if (root.HasAttribute("genre"))
Dim genre as String = root.GetAttribute("genre")
Console.WriteLine(genre)
end if
Console.WriteLine("Display the modified XML...")
Console.WriteLine(doc.InnerXml)
end sub
end class
Şunlara uygulanır
HasAttribute(String, String)
Geçerli düğümün belirtilen yerel ada ve ad alanı URI'sine sahip bir özniteliği olup olmadığını belirler.
public:
virtual bool HasAttribute(System::String ^ localName, System::String ^ namespaceURI);
public virtual bool HasAttribute (string localName, string namespaceURI);
public virtual bool HasAttribute (string localName, string? namespaceURI);
abstract member HasAttribute : string * string -> bool
override this.HasAttribute : string * string -> bool
Public Overridable Function HasAttribute (localName As String, namespaceURI As String) As Boolean
Parametreler
- localName
- String
Bulunacak özniteliğin yerel adı.
- namespaceURI
- String
Bulunacak özniteliğin ad alanı URI'si.
Döndürülenler
true
geçerli düğüm belirtilen özniteliğe sahipse; aksi takdirde , false
.