99 references to WebPartManager
System.Web (99)
UI\Page.cs (2)
5258WebPartManager webPartManager = WebPartManager.GetCurrentWebPartManager(this);
UI\WebParts\BlobPersonalizationState.cs (1)
37public BlobPersonalizationState(WebPartManager webPartManager) : base(webPartManager) {
UI\WebParts\CatalogPart.cs (3)
27private WebPartManager _webPartManager; 44protected WebPartManager WebPartManager { 85internal void SetWebPartManager(WebPartManager webPartManager) {
UI\WebParts\CatalogZoneBase.cs (2)
49protected CatalogZoneBase() : base(WebPartManager.CatalogDisplayMode) { 368WebPartManager.DisplayMode = WebPartManager.BrowseDisplayMode;
UI\WebParts\ConnectionsZone.cs (5)
105public ConnectionsZone() : base(WebPartManager.ConnectDisplayMode) { 600if (WebPartManager != null && WebPartManager.DisplayMode == WebPartManager.ConnectDisplayMode) { 804WebPartManager webPartManager = WebPartManager; 1282if (WebPartManager != null && WebPartManager.DisplayMode == WebPartManager.ConnectDisplayMode) { 1670WebPartManager manager = WebPartManager;
UI\WebParts\DeclarativeCatalogPart.cs (1)
91webPart = WebPartManager.CreateWebPartStatic(control);
UI\WebParts\EditorPart.cs (3)
27private WebPartManager _webPartManager; 82protected WebPartManager WebPartManager { 240internal void SetWebPartManager(WebPartManager webPartManager) {
UI\WebParts\EditorZoneBase.cs (3)
40protected EditorZoneBase() : base(WebPartManager.EditDisplayMode) { 221if (WebPartManager != null && WebPartManager.DisplayMode == WebPartManager.EditDisplayMode) { 324if (WebPartManager != null && WebPartManager.DisplayMode == WebPartManager.EditDisplayMode) {
UI\WebParts\ImportCatalogPart.cs (9)
195reader.ReadStartElement(WebPartManager.ExportRootElement); 196reader.ReadStartElement(WebPartManager.ExportPartElement); 197reader.ReadStartElement(WebPartManager.ExportMetaDataElement); 202while (reader.Name != WebPartManager.ExportTypeElement) { 208if (reader.Name == WebPartManager.ExportTypeElement) { 209partTypeName = reader.GetAttribute(WebPartManager.ExportTypeNameAttribute); 210userControlTypeName = reader.GetAttribute(WebPartManager.ExportUserControlSrcAttribute); 255reader.Name == WebPartManager.ExportPropertyElement)) { 261string name = reader.GetAttribute(WebPartManager.ExportPropertyNameAttribute);
UI\WebParts\LayoutEditorPart.cs (2)
160WebPartManager manager = WebPartManager; 241WebPartManager manager = WebPartManager;
UI\WebParts\PersonalizationProvider.cs (11)
57public virtual PersonalizationScope DetermineInitialScope(WebPartManager webPartManager, PersonalizationState loadedState) { 97WebPartManager previousWebPartManager = WebPartManager.GetCurrentWebPartManager(page.PreviousPage); 125public virtual IDictionary DetermineUserCapabilities(WebPartManager webPartManager) { 182private void GetParameters(WebPartManager webPartManager, out string path, out string userName) { 211protected abstract void LoadPersonalizationBlobs(WebPartManager webPartManager, string path, string userName, ref byte[] sharedDataBlob, ref byte[] userDataBlob); 218public virtual PersonalizationState LoadPersonalizationState(WebPartManager webPartManager, bool ignoreCurrentUser) { 245protected abstract void ResetPersonalizationBlob(WebPartManager webPartManager, string path, string userName); 252public virtual void ResetPersonalizationState(WebPartManager webPartManager) { 272protected abstract void SavePersonalizationBlob(WebPartManager webPartManager, string path, string userName, byte[] dataBlob); 289WebPartManager webPartManager = blobState.WebPartManager;
UI\WebParts\PersonalizationState.cs (3)
17private WebPartManager _webPartManager; 22protected PersonalizationState(WebPartManager webPartManager) { 46public WebPartManager WebPartManager {
UI\WebParts\ProxyWebPartConnectionCollection.cs (2)
21private WebPartManager _webPartManager; 138internal void SetWebPartManager(WebPartManager webPartManager) {
UI\WebParts\ProxyWebPartManager.cs (2)
118WebPartManager webPartManager = WebPartManager.GetCurrentWebPartManager(page);
UI\WebParts\SqlPersonalizationProvider.cs (3)
545protected override void LoadPersonalizationBlobs(WebPartManager webPartManager, string path, string userName, ref byte[] sharedDataBlob, ref byte[] userDataBlob) { 604protected override void ResetPersonalizationBlob(WebPartManager webPartManager, string path, string userName) { 931protected override void SavePersonalizationBlob(WebPartManager webPartManager, string path, string userName, byte[] dataBlob) {
UI\WebParts\ToolZone.cs (1)
261WebPartManager webPartManager = WebPartManager;
UI\WebParts\WebPart.cs (5)
37private WebPartManager _webPartManager; 637protected WebPartManager WebPartManager { 806WebPartManager wpm = WebPartManager.GetCurrentWebPartManager(control.Page); 819internal void SetWebPartManager(WebPartManager webPartManager) {
UI\WebParts\WebPartChrome.cs (5)
24private WebPartManager _manager; 42public WebPartChrome(WebPartZoneBase zone, WebPartManager manager) { 84protected WebPartManager WebPartManager { 735if ((WebPartManager.DisplayMode != WebPartManager.ConnectDisplayMode) || 766((WebPartManager.DisplayMode != WebPartManager.EditDisplayMode) ||
UI\WebParts\WebPartConnection.cs (2)
30private WebPartManager _webPartManager; 405internal void SetWebPartManager(WebPartManager webPartManager) {
UI\WebParts\WebPartConnectionCollection.cs (2)
24private WebPartManager _webPartManager; 26internal WebPartConnectionCollection(WebPartManager webPartManager) {
UI\WebParts\WebPartDisplayMode.cs (1)
52public virtual bool IsEnabled(WebPartManager webPartManager) {
UI\WebParts\WebPartManager.cs (15)
2360public static WebPartManager GetCurrentWebPartManager(Page page) { 2365return page.Items[typeof(WebPartManager)] as WebPartManager; 3633WebPartManager existingInstance = (WebPartManager)page.Items[typeof(WebPartManager)]; 3640page.Items[typeof(WebPartManager)] = this; 3662page.Items.Remove(typeof(WebPartManager)); 3724typeof(WebPartManager), 3731typeof(WebPartManager), 3738typeof(WebPartManager), 3854Page.ClientScript.RegisterClientScriptResource(this, typeof(WebPartManager), "WebParts.js"); 3898Page.ClientScript.RegisterStartupScript(this, typeof(WebPartManager), String.Empty, startupScript, false); 4346private WebPartManager _manager; 4348public WebPartManagerControlCollection(WebPartManager owner) : base(owner) {
UI\WebParts\WebPartManagerInternals.cs (2)
13private WebPartManager _manager; 15internal WebPartManagerInternals(WebPartManager manager) {
UI\WebParts\WebPartMenu.cs (2)
119WebPartManager webPartManager) { 197WebPartManager webPartManager) {
UI\WebParts\WebPartPersonalization.cs (5)
28private WebPartManager _owner; 47public WebPartPersonalization(WebPartManager owner) { 264protected WebPartManager WebPartManager { 629WebPartManager previousWebPartManager = WebPartManager.GetCurrentWebPartManager(previousPage);
UI\WebParts\WebPartZone.cs (2)
54WebPartManager manager = WebPartManager; 59part = WebPartManager.CreateWebPartStatic(control);
UI\WebParts\WebPartZoneBase.cs (2)
819WebPartManager.DisplayMode == WebPartManager.ConnectDisplayMode && 881WebPartManager.DisplayMode == WebPartManager.EditDisplayMode &&
UI\WebParts\WebZone.cs (3)
29private WebPartManager _webPartManager; 542_webPartManager = WebPartManager.GetCurrentWebPartManager(page); 680protected WebPartManager WebPartManager {