AspNetEdit.Editor.Persistence.ControlPersister.PersistInnerProperties C# (CSharp) Метод

PersistInnerProperties() публичный статический Метод

public static PersistInnerProperties ( object component, IDesignerHost host ) : string
component object
host IDesignerHost
Результат 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