diff --git a/src/Libraries/AvalonEdit/ICSharpCode.AvalonEdit/XmlParser/Collections.cs b/src/Libraries/AvalonEdit/ICSharpCode.AvalonEdit/XmlParser/Collections.cs
index 47f81df460..fffb859223 100644
--- a/src/Libraries/AvalonEdit/ICSharpCode.AvalonEdit/XmlParser/Collections.cs
+++ b/src/Libraries/AvalonEdit/ICSharpCode.AvalonEdit/XmlParser/Collections.cs
@@ -12,9 +12,6 @@ using System.Collections.ObjectModel;
using System.Collections.Specialized;
using System.Linq;
-// Missing XML comment
-#pragma warning disable 1591
-
namespace ICSharpCode.AvalonEdit.XmlParser
{
///
@@ -23,8 +20,10 @@ namespace ICSharpCode.AvalonEdit.XmlParser
///
public class ChildrenCollection: Collection, INotifyCollectionChanged
{
+ /// Occurs when the collection is changed
public event NotifyCollectionChangedEventHandler CollectionChanged;
+ /// Raises event
protected virtual void OnCollectionChanged(NotifyCollectionChangedEventArgs e)
{
if (CollectionChanged != null) {
@@ -32,21 +31,25 @@ namespace ICSharpCode.AvalonEdit.XmlParser
}
}
+ ///
protected override void ClearItems()
{
throw new NotSupportedException();
}
+ ///
protected override void InsertItem(int index, T item)
{
throw new NotSupportedException();
}
+ ///
protected override void RemoveItem(int index)
{
throw new NotSupportedException();
}
+ ///
protected override void SetItem(int index, T item)
{
throw new NotSupportedException();
@@ -173,8 +176,10 @@ namespace ICSharpCode.AvalonEdit.XmlParser
Predicate