ConfigurationElement.SerializeElement(XmlWriter, Boolean) Yöntem

Tanım

Türetilmiş bir sınıfta uygulandığında bu yapılandırma öğesinin içeriğini yapılandırma dosyasına yazar.

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

Parametreler

writer
XmlWriter

XmlWriter Yapılandırma dosyasına yazan.

serializeCollectionKey
Boolean

true yalnızca koleksiyon anahtarı özelliklerini seri hale getirmek için; aksi takdirde , false.

Döndürülenler

true herhangi bir veri gerçekten serileştirilmişse; aksi takdirde , false.

Özel durumlar

Geçerli öznitelik daha yüksek bir yapılandırma düzeyinde kilitlenmiş.

Örnekler

Aşağıdaki örnek, yönteminin nasıl genişlet yapılacağını SerializeElement gösterir.

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

Şunlara uygulanır