XmlTextWriter.WriteStartAttribute(String, String, String) Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Zapisuje początek atrybutu.
public:
override void WriteStartAttribute(System::String ^ prefix, System::String ^ localName, System::String ^ ns);
public override void WriteStartAttribute (string? prefix, string localName, string? ns);
public override void WriteStartAttribute (string prefix, string localName, string ns);
override this.WriteStartAttribute : string * string * string -> unit
Public Overrides Sub WriteStartAttribute (prefix As String, localName As String, ns As String)
Parametry
- prefix
- String
Namespace
prefiks atrybutu.
- localName
- String
LocalName
atrybutu .
- ns
- String
NamespaceURI
atrybutu .
Wyjątki
Parametr localName
ma wartość null
lub String.Empty
.
Przykłady
Poniższy przykład zapisuje książkę.
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;
int main()
{
String^ filename = "sampledata.xml";
XmlTextWriter^ writer = gcnew XmlTextWriter( filename, nullptr );
//Use indenting for readability.
writer->Formatting = Formatting::Indented;
writer->WriteComment( "sample XML fragment" );
//Write an element (this one is the root).
writer->WriteStartElement( "bookstore" );
//Write the namespace declaration.
writer->WriteAttributeString( "xmlns", "bk", nullptr, "urn:samples" );
writer->WriteStartElement( "book" );
//Lookup the prefix and then write the ISBN attribute.
String^ prefix = writer->LookupPrefix( "urn:samples" );
writer->WriteStartAttribute( prefix, "ISBN", "urn:samples" );
writer->WriteString( "1-861003-78" );
writer->WriteEndAttribute();
//Write the title.
writer->WriteStartElement( "title" );
writer->WriteString( "The Handmaid's Tale" );
writer->WriteEndElement();
//Write the price.
writer->WriteElementString( "price", "19.95" );
//Write the style element.
writer->WriteStartElement( prefix, "style", "urn:samples" );
writer->WriteString( "hardcover" );
writer->WriteEndElement();
//Write the end tag for the book element.
writer->WriteEndElement();
//Write the close tag for the root element.
writer->WriteEndElement();
//Write the XML to file and close the writer.
writer->Flush();
writer->Close();
//Read the file back in and parse to ensure well formed XML.
XmlDocument^ doc = gcnew XmlDocument;
//Preserve white space for readability.
doc->PreserveWhitespace = true;
//Load the file
doc->Load( filename );
//Write the XML content to the console.
Console::Write( doc->InnerXml );
}
using System;
using System.IO;
using System.Xml;
public class Sample
{
private const string filename = "sampledata.xml";
public static void Main()
{
XmlTextWriter writer = new XmlTextWriter (filename, null);
//Use indenting for readability.
writer.Formatting = Formatting.Indented;
writer.WriteComment("sample XML fragment");
//Write an element (this one is the root).
writer.WriteStartElement("bookstore");
//Write the namespace declaration.
writer.WriteAttributeString("xmlns", "bk", null, "urn:samples");
writer.WriteStartElement("book");
//Lookup the prefix and then write the ISBN attribute.
string prefix = writer.LookupPrefix("urn:samples");
writer.WriteStartAttribute(prefix, "ISBN", "urn:samples");
writer.WriteString("1-861003-78");
writer.WriteEndAttribute();
//Write the title.
writer.WriteStartElement("title");
writer.WriteString("The Handmaid's Tale");
writer.WriteEndElement();
//Write the price.
writer.WriteElementString("price", "19.95");
//Write the style element.
writer.WriteStartElement(prefix, "style", "urn:samples");
writer.WriteString("hardcover");
writer.WriteEndElement();
//Write the end tag for the book element.
writer.WriteEndElement();
//Write the close tag for the root element.
writer.WriteEndElement();
//Write the XML to file and close the writer.
writer.Flush();
writer.Close();
//Read the file back in and parse to ensure well formed XML.
XmlDocument doc = new XmlDocument();
//Preserve white space for readability.
doc.PreserveWhitespace = true;
//Load the file
doc.Load(filename);
//Write the XML content to the console.
Console.Write(doc.InnerXml);
}
}
Option Strict
Option Explicit
Imports System.IO
Imports System.Xml
Public Class Sample
Private Shared filename As String = "sampledata.xml"
Public Shared Sub Main()
Dim writer As New XmlTextWriter(filename, Nothing)
'Use indenting for readability.
writer.Formatting = Formatting.Indented
writer.WriteComment("sample XML fragment")
'Write an element (this one is the root).
writer.WriteStartElement("bookstore")
'Write the namespace declaration.
writer.WriteAttributeString("xmlns", "bk", Nothing, "urn:samples")
writer.WriteStartElement("book")
'Lookup the prefix and then write the ISBN attribute.
Dim prefix As String = writer.LookupPrefix("urn:samples")
writer.WriteStartAttribute(prefix, "ISBN", "urn:samples")
writer.WriteString("1-861003-78")
writer.WriteEndAttribute()
'Write the title.
writer.WriteStartElement("title")
writer.WriteString("The Handmaid's Tale")
writer.WriteEndElement()
'Write the price.
writer.WriteElementString("price", "19.95")
'Write the style element.
writer.WriteStartElement(prefix, "style", "urn:samples")
writer.WriteString("hardcover")
writer.WriteEndElement()
'Write the end tag for the book element.
writer.WriteEndElement()
'Write the close tag for the root element.
writer.WriteEndElement()
'Write the XML to file and close the writer.
writer.Flush()
writer.Close()
'Read the file back in and parse to ensure well formed XML.
Dim doc As New XmlDocument()
'Preserve white space for readability.
doc.PreserveWhitespace = True
'Load the file.
doc.Load(filename)
'Write the XML content to the console.
Console.Write(doc.InnerXml)
End Sub
End Class
Uwagi
Uwaga
Począwszy od .NET Framework 2.0, zalecamy tworzenie XmlWriter wystąpień przy użyciu XmlWriter.Create metody i XmlWriterSettings klasy, aby korzystać z nowych funkcji.
Jest to bardziej zaawansowana wersja, która umożliwia zapisanie wartości atrybutu WriteAttributeString przy użyciu wielu metod zapisu, takich jak WriteString.