AspNetEdit.Editor.Persistence.ControlPersister.PersistInnerProperties C# (CSharp) Method

PersistInnerProperties() public static method

public static PersistInnerProperties ( object component, IDesignerHost host ) : string
component object
host IDesignerHost
return string
        public static string PersistInnerProperties(object component, IDesignerHost host)
        {
            TextWriter sw = new StringWriter ();

            PersistInnerProperties (sw, component, host);

            sw.Flush();
            return sw.ToString();
        }

Same methods

ControlPersister::PersistInnerProperties ( System.Web.UI.HtmlTextWriter writer, object component, IDesignerHost host ) : void
ControlPersister::PersistInnerProperties ( TextWriter sw, object component, IDesignerHost host ) : void