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