System.Xml.XmlBaseWriter.SetOutput C# (CSharp) Méthode

SetOutput() protected méthode

protected SetOutput ( XmlStreamNodeWriter writer ) : void
writer XmlStreamNodeWriter
Résultat void
        protected void SetOutput(XmlStreamNodeWriter writer)
        {
            _inList = false;
            _writer = writer;
            _nodeWriter = writer;
            _writeState = WriteState.Start;
            _documentState = DocumentState.None;
            _nsMgr.Clear();
            if (_depth != 0)
            {
                _elements = null;
                _depth = 0;
            }
            _attributeLocalName = null;
            _attributeValue = null;
        }