ScrewTurn.Wiki.ClientImageBrowser.PopulateBrowser C# (CSharp) Method

PopulateBrowser() public method

Removes all the items in the browser and re-populates it.
public PopulateBrowser ( ) : void
return void
        public void PopulateBrowser()
        {
            if(Populate == null) ViewState[ClientBrowserItems] = new List<TreeElement>();
            else ViewState[ClientBrowserItems] = Populate(this, new PopulateEventArgs());

            Render();
        }