ConfigurationElement.SerializeElement(XmlWriter, Boolean) Methode
Definition
Schreibt bei Implementierung in einer abgeleiteten Klasse den Inhalt dieses Konfigurationselements in die Konfigurationsdatei.Writes the contents of this configuration element to the configuration file when implemented in a derived class.
protected:
virtual bool SerializeElement(System::Xml::XmlWriter ^ writer, bool serializeCollectionKey);
protected public:
virtual bool SerializeElement(System::Xml::XmlWriter ^ writer, bool serializeCollectionKey);
protected virtual bool SerializeElement (System.Xml.XmlWriter writer, bool serializeCollectionKey);
protected internal virtual bool SerializeElement (System.Xml.XmlWriter writer, bool serializeCollectionKey);
abstract member SerializeElement : System.Xml.XmlWriter * bool -> bool
override this.SerializeElement : System.Xml.XmlWriter * bool -> bool
Protected Overridable Function SerializeElement (writer As XmlWriter, serializeCollectionKey As Boolean) As Boolean
Protected Friend Overridable Function SerializeElement (writer As XmlWriter, serializeCollectionKey As Boolean) As Boolean
Parameter
- writer
- XmlWriter
Der XmlWriter, der in die Konfigurationsdatei schreibt.The XmlWriter that writes to the configuration file.
- serializeCollectionKey
- Boolean
true
, um nur die Auflistungsschlüsseleigenschaften zu serialisieren, andernfalls false
.true
to serialize only the collection key properties; otherwise, false
.
Gibt zurück
true
, wenn tatsächlich Daten serialisiert wurden, andernfalls false
.true
if any data was actually serialized; otherwise, false
.
Ausnahmen
Das aktuelle Attribut ist auf einer höheren Konfigurationsebene gesperrt.The current attribute is locked at a higher configuration level.
Beispiele
Im folgenden Beispiel wird gezeigt, wie die-Methode erweitert wird SerializeElement .The following example shows how to extend the SerializeElement method.
protected override bool SerializeElement(
System.Xml.XmlWriter writer,
bool serializeCollectionKey)
{
bool ret = base.SerializeElement(writer,
serializeCollectionKey);
// You can enter your custom processing code here.
return ret;
}
Protected Overrides Function SerializeElement(ByVal writer _
As System.Xml.XmlWriter, _
ByVal serializeCollectionKey As Boolean) As Boolean
Dim ret As Boolean = _
MyBase.SerializeElement(writer, serializeCollectionKey)
' Enter your custom processing code here.
Return ret
End Function 'SerializeElement