SenseNet.ContentRepository.Storage.Security.SecurityEntry.Export1 C# (CSharp) Method

Export1() public method

public Export1 ( XmlWriter writer ) : void
writer System.Xml.XmlWriter
return void
        public void Export1(XmlWriter writer)
        {
            //TODO: ? write propagates ?
            writer.WriteStartElement("Identity");
            writer.WriteAttributeString("values", ValuesString);
            writer.WriteAttributeString("path", NodeHead.Get(PrincipalId).Path);
            writer.WriteEndElement();
        }