4 instantiations of EditorPartCollection
System.Web (4)
UI\WebParts\EditorPartCollection.cs (1)
13public static readonly EditorPartCollection Empty = new EditorPartCollection();
UI\WebParts\EditorZone.cs (1)
27EditorPartCollection editorParts = new EditorPartCollection();
UI\WebParts\EditorZoneBase.cs (1)
118EditorPartCollection editorParts = new EditorPartCollection(webPartEditorParts, CreateEditorParts());
UI\WebParts\GenericWebPart.cs (1)
311return new EditorPartCollection(base.CreateEditorParts(), webEditableChildControl.CreateEditorParts());
15 references to EditorPartCollection
System.Web (15)
UI\WebParts\EditorPartCollection.cs (3)
13public static readonly EditorPartCollection Empty = new EditorPartCollection(); 22public EditorPartCollection(EditorPartCollection existingEditorParts, ICollection editorParts) { 48private void Initialize(EditorPartCollection existingEditorParts, ICollection editorParts) {
UI\WebParts\EditorZone.cs (2)
26protected override EditorPartCollection CreateEditorParts() { 27EditorPartCollection editorParts = new EditorPartCollection();
UI\WebParts\EditorZoneBase.cs (6)
20private EditorPartCollection _editorParts; 109public EditorPartCollection EditorParts { 113EditorPartCollection webPartEditorParts = null; 118EditorPartCollection editorParts = new EditorPartCollection(webPartEditorParts, CreateEditorParts()); 234EditorPartCollection editorParts = EditorParts; 280protected abstract EditorPartCollection CreateEditorParts();
UI\WebParts\GenericWebPart.cs (1)
308public override EditorPartCollection CreateEditorParts() {
UI\WebParts\IWebEditable.cs (1)
13EditorPartCollection CreateEditorParts();
UI\WebParts\WebPart.cs (2)
725public virtual EditorPartCollection CreateEditorParts() { 726return EditorPartCollection.Empty;