You've already forked linux-packaging-mono
							
							
		
			
	
	
		
			403 lines
		
	
	
		
			23 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
		
		
			
		
	
	
			403 lines
		
	
	
		
			23 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
|   | <?xml version="1.0" encoding="utf-8"?> | ||
|  | <Type Name="ObservableCollection<T>" FullName="System.Collections.ObjectModel.ObservableCollection<T>"> | ||
|  |   <TypeSignature Language="C#" Value="public class ObservableCollection<T> : System.Collections.ObjectModel.Collection<T>, System.Collections.Specialized.INotifyCollectionChanged, System.ComponentModel.INotifyPropertyChanged" /> | ||
|  |   <TypeSignature Language="ILAsm" Value=".class public auto ansi serializable beforefieldinit ObservableCollection`1<T> extends System.Collections.ObjectModel.Collection`1<!T> implements class System.Collections.Specialized.INotifyCollectionChanged, class System.ComponentModel.INotifyPropertyChanged" /> | ||
|  |   <AssemblyInfo> | ||
|  |     <AssemblyName>System</AssemblyName> | ||
|  |     <AssemblyVersion>4.0.0.0</AssemblyVersion> | ||
|  |   </AssemblyInfo> | ||
|  |   <TypeParameters> | ||
|  |     <TypeParameter Name="T" /> | ||
|  |   </TypeParameters> | ||
|  |   <Base> | ||
|  |     <BaseTypeName>System.Collections.ObjectModel.Collection<T></BaseTypeName> | ||
|  |     <BaseTypeArguments> | ||
|  |       <BaseTypeArgument TypeParamName="!0">T</BaseTypeArgument> | ||
|  |     </BaseTypeArguments> | ||
|  |   </Base> | ||
|  |   <Interfaces> | ||
|  |     <Interface> | ||
|  |       <InterfaceName>System.Collections.Specialized.INotifyCollectionChanged</InterfaceName> | ||
|  |     </Interface> | ||
|  |     <Interface> | ||
|  |       <InterfaceName>System.ComponentModel.INotifyPropertyChanged</InterfaceName> | ||
|  |     </Interface> | ||
|  |   </Interfaces> | ||
|  |   <Attributes> | ||
|  |     <Attribute> | ||
|  |       <AttributeName>System.Runtime.CompilerServices.TypeForwardedFrom("WindowsBase, Version=3.0.0.0, PublicKeyToken=31bf3856ad364e35")</AttributeName> | ||
|  |     </Attribute> | ||
|  |   </Attributes> | ||
|  |   <Docs> | ||
|  |     <typeparam name="T">To be added.</typeparam> | ||
|  |     <remarks> | ||
|  |       <attribution license="cc4" from="Microsoft" modified="false" /> | ||
|  |       <para>In many cases the data that you work with is a collection of objects. For example, a common scenario in data binding is to use an <see cref="T:System.Windows.Controls.ItemsControl" /> such as a <see cref="T:System.Windows.Controls.ListBox" />, <see cref="T:System.Windows.Controls.ListView" />, or <see cref="T:System.Windows.Controls.TreeView" /> to display a collection of records.</para> | ||
|  |       <para>You can enumerate over any collection that implements the <see cref="T:System.Collections.IEnumerable" /> interface. However, to set up dynamic bindings so that insertions or deletions in the collection update the TLA2#tla_ui automatically, the collection must implement the <see cref="T:System.Collections.Specialized.INotifyCollectionChanged" /> interface. This interface exposes the <see cref="E:System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged" /> event, an event that should be raised whenever the underlying collection changes.</para> | ||
|  |       <para>TLA2#tla_winclient provides the <see cref="T:System.Collections.ObjectModel.ObservableCollection`1" /> class, which is a built-in implementation of a data collection that implements the <see cref="T:System.Collections.Specialized.INotifyCollectionChanged" /> interface.</para> | ||
|  |       <para>Before implementing your own collection, consider using <see cref="T:System.Collections.ObjectModel.ObservableCollection`1" /> or one of the existing collection classes, such as <see cref="T:System.Collections.Generic.List`1" />, <see cref="T:System.Collections.ObjectModel.Collection`1" />, and <see cref="T:System.ComponentModel.BindingList`1" />, among many others. If you have an advanced scenario and want to implement your own collection, consider using <see cref="T:System.Collections.IList" />, which provides a non-generic collection of objects that can be individually accessed by index. Implementing <see cref="T:System.Collections.IList" /> provides the best performance with the data binding engine.</para> | ||
|  |       <block subset="none" type="note"> | ||
|  |         <para> To fully support transferring data values from <format type="text/html"><a href="GTMT#binding_source#82edbb63-5cbf-46f8-bf38-164eb00a1ec1">binding source</a></format> objects to <format type="text/html"><a href="GTMT#binding_target#2b16294b-64eb-4210-83a4-c215cf4c140a">binding target</a></format>s, each object in your collection that supports bindable properties must implement an appropriate property changed notification mechanism such as the <see cref="T:System.ComponentModel.INotifyPropertyChanged" /> interface.</para> | ||
|  |       </block> | ||
|  |       <para>For more information, see "Binding to Collections" in <format type="text/html"><a href="c707c95f-7811-401d-956e-2fffd019a211">Data Binding Overview</a></format>.</para> | ||
|  |       <format type="text/html"> | ||
|  |         <h2>Notes on XAML Usage</h2> | ||
|  |       </format> | ||
|  |       <para> | ||
|  |         <see cref="T:System.Collections.ObjectModel.ObservableCollection`1" /> can be used as a XAML object element in TLA#tla_winclient, in versions 3.0 and 3.5. However, the usage has substantial limitations.</para> | ||
|  |       <list type="bullet"> | ||
|  |         <item> | ||
|  |           <para> | ||
|  |             <see cref="T:System.Collections.ObjectModel.ObservableCollection`1" /> must be the root element, because the <format type="text/html"><a href="86561058-d393-4a44-b5c3-993a4513ea74">x:TypeArguments attribute</a></format> that must be used to specify the constrained type of the generic <see cref="T:System.Collections.ObjectModel.ObservableCollection`1" /> is only supported on the object element for the root element.</para> | ||
|  |         </item> | ||
|  |         <item> | ||
|  |           <para>You must declare an <format type="text/html"><a href="bc4a3d8e-76e2-423e-a5d1-159a023e82ec">x:Class attribute</a></format> (which entails that the build action for this XAML file must be Page or some other build action that compiles the XAML).</para> | ||
|  |         </item> | ||
|  |         <item> | ||
|  |           <para> | ||
|  |             <see cref="T:System.Collections.ObjectModel.ObservableCollection`1" /> is in a namespace and assembly that are not initially mapped to the default XML namespace. You must map a prefix for the namespace and assembly, and then use that prefix on the object element tag for <see cref="T:System.Collections.ObjectModel.ObservableCollection`1" />.</para> | ||
|  |         </item> | ||
|  |       </list> | ||
|  |       <para>A more straightforward way to use <see cref="T:System.Collections.ObjectModel.ObservableCollection`1" /> capabilities from XAML in an application is to declare your own non-generic custom collection class that derives from <see cref="T:System.Collections.ObjectModel.ObservableCollection`1" />, and constrains it to a specific type. Then map the assembly that contains this class, and reference it as an object element in your XAML.</para> | ||
|  |       <format type="text/html"> | ||
|  |         <a href="#xamlTextUsage_ObservableCollection" /> | ||
|  |       </format> | ||
|  |       <format type="text/html"> | ||
|  |         <h2>XAML Text Usage</h2> | ||
|  |       </format> | ||
|  |       <para>See Remarks.</para> | ||
|  |     </remarks> | ||
|  |     <summary> | ||
|  |       <attribution license="cc4" from="Microsoft" modified="false" /> | ||
|  |       <para>Represents a dynamic data collection that provides notifications when items get added, removed, or when the whole list is refreshed.</para> | ||
|  |     </summary> | ||
|  |   </Docs> | ||
|  |   <Members> | ||
|  |     <Member MemberName=".ctor"> | ||
|  |       <MemberSignature Language="C#" Value="public ObservableCollection ();" /> | ||
|  |       <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" /> | ||
|  |       <MemberType>Constructor</MemberType> | ||
|  |       <AssemblyInfo> | ||
|  |         <AssemblyVersion>4.0.0.0</AssemblyVersion> | ||
|  |       </AssemblyInfo> | ||
|  |       <Parameters /> | ||
|  |       <Docs> | ||
|  |         <remarks>To be added.</remarks> | ||
|  |         <summary> | ||
|  |           <attribution license="cc4" from="Microsoft" modified="false" /> | ||
|  |           <para>Initializes a new instance of the <see cref="T:System.Collections.ObjectModel.ObservableCollection`1" /> class.</para> | ||
|  |         </summary> | ||
|  |       </Docs> | ||
|  |     </Member> | ||
|  |     <Member MemberName=".ctor"> | ||
|  |       <MemberSignature Language="C#" Value="public ObservableCollection (System.Collections.Generic.IEnumerable<T> collection);" /> | ||
|  |       <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.Collections.Generic.IEnumerable`1<!T> collection) cil managed" /> | ||
|  |       <MemberType>Constructor</MemberType> | ||
|  |       <AssemblyInfo> | ||
|  |         <AssemblyVersion>4.0.0.0</AssemblyVersion> | ||
|  |       </AssemblyInfo> | ||
|  |       <Parameters> | ||
|  |         <Parameter Name="collection" Type="System.Collections.Generic.IEnumerable<T>" /> | ||
|  |       </Parameters> | ||
|  |       <Docs> | ||
|  |         <param name="collection">To be added.</param> | ||
|  |         <summary>To be added.</summary> | ||
|  |         <remarks>To be added.</remarks> | ||
|  |       </Docs> | ||
|  |     </Member> | ||
|  |     <Member MemberName=".ctor"> | ||
|  |       <MemberSignature Language="C#" Value="public ObservableCollection (System.Collections.Generic.List<T> list);" /> | ||
|  |       <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.Collections.Generic.List`1<!T> list) cil managed" /> | ||
|  |       <MemberType>Constructor</MemberType> | ||
|  |       <AssemblyInfo> | ||
|  |         <AssemblyVersion>4.0.0.0</AssemblyVersion> | ||
|  |       </AssemblyInfo> | ||
|  |       <Parameters> | ||
|  |         <Parameter Name="list" Type="System.Collections.Generic.List<T>" /> | ||
|  |       </Parameters> | ||
|  |       <Docs> | ||
|  |         <param name="list">To be added.</param> | ||
|  |         <summary>To be added.</summary> | ||
|  |         <remarks>To be added.</remarks> | ||
|  |       </Docs> | ||
|  |     </Member> | ||
|  |     <Member MemberName="BlockReentrancy"> | ||
|  |       <MemberSignature Language="C#" Value="protected IDisposable BlockReentrancy ();" /> | ||
|  |       <MemberSignature Language="ILAsm" Value=".method familyhidebysig instance class System.IDisposable BlockReentrancy() cil managed" /> | ||
|  |       <MemberType>Method</MemberType> | ||
|  |       <AssemblyInfo> | ||
|  |         <AssemblyVersion>4.0.0.0</AssemblyVersion> | ||
|  |       </AssemblyInfo> | ||
|  |       <ReturnValue> | ||
|  |         <ReturnType>System.IDisposable</ReturnType> | ||
|  |       </ReturnValue> | ||
|  |       <Parameters /> | ||
|  |       <Docs> | ||
|  |         <remarks>To be added.</remarks> | ||
|  |         <summary> | ||
|  |           <attribution license="cc4" from="Microsoft" modified="false" /> | ||
|  |           <para>Disallows reentrant attempts to change this collection.</para> | ||
|  |         </summary> | ||
|  |         <returns> | ||
|  |           <attribution license="cc4" from="Microsoft" modified="false" /> | ||
|  |           <para>An <see cref="T:System.IDisposable" /> object that can be used to dispose of the object.</para> | ||
|  |         </returns> | ||
|  |       </Docs> | ||
|  |     </Member> | ||
|  |     <Member MemberName="CheckReentrancy"> | ||
|  |       <MemberSignature Language="C#" Value="protected void CheckReentrancy ();" /> | ||
|  |       <MemberSignature Language="ILAsm" Value=".method familyhidebysig instance void CheckReentrancy() cil managed" /> | ||
|  |       <MemberType>Method</MemberType> | ||
|  |       <AssemblyInfo> | ||
|  |         <AssemblyVersion>4.0.0.0</AssemblyVersion> | ||
|  |       </AssemblyInfo> | ||
|  |       <ReturnValue> | ||
|  |         <ReturnType>System.Void</ReturnType> | ||
|  |       </ReturnValue> | ||
|  |       <Parameters /> | ||
|  |       <Docs> | ||
|  |         <remarks>To be added.</remarks> | ||
|  |         <summary> | ||
|  |           <attribution license="cc4" from="Microsoft" modified="false" /> | ||
|  |           <para>Checks for reentrant attempts to change this collection.</para> | ||
|  |         </summary> | ||
|  |       </Docs> | ||
|  |     </Member> | ||
|  |     <Member MemberName="ClearItems"> | ||
|  |       <MemberSignature Language="C#" Value="protected override void ClearItems ();" /> | ||
|  |       <MemberSignature Language="ILAsm" Value=".method familyhidebysig virtual instance void ClearItems() cil managed" /> | ||
|  |       <MemberType>Method</MemberType> | ||
|  |       <AssemblyInfo> | ||
|  |         <AssemblyVersion>4.0.0.0</AssemblyVersion> | ||
|  |       </AssemblyInfo> | ||
|  |       <ReturnValue> | ||
|  |         <ReturnType>System.Void</ReturnType> | ||
|  |       </ReturnValue> | ||
|  |       <Parameters /> | ||
|  |       <Docs> | ||
|  |         <remarks> | ||
|  |           <attribution license="cc4" from="Microsoft" modified="false" /> | ||
|  |           <para>The base class calls this method when the list is being cleared. This implementation raises the <see cref="E:System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged" /> event.</para> | ||
|  |           <para>For more information, see the <see cref="M:System.Collections.ObjectModel.Collection`1.ClearItems" /> method of the <see cref="T:System.Collections.ObjectModel.Collection`1" /> base class.</para> | ||
|  |         </remarks> | ||
|  |         <summary> | ||
|  |           <attribution license="cc4" from="Microsoft" modified="false" /> | ||
|  |           <para>Removes all items from the collection.</para> | ||
|  |         </summary> | ||
|  |       </Docs> | ||
|  |     </Member> | ||
|  |     <Member MemberName="CollectionChanged"> | ||
|  |       <MemberSignature Language="C#" Value="public virtual event System.Collections.Specialized.NotifyCollectionChangedEventHandler CollectionChanged;" /> | ||
|  |       <MemberSignature Language="ILAsm" Value=".event class System.Collections.Specialized.NotifyCollectionChangedEventHandler CollectionChanged" /> | ||
|  |       <MemberType>Event</MemberType> | ||
|  |       <AssemblyInfo> | ||
|  |         <AssemblyVersion>4.0.0.0</AssemblyVersion> | ||
|  |       </AssemblyInfo> | ||
|  |       <ReturnValue> | ||
|  |         <ReturnType>System.Collections.Specialized.NotifyCollectionChangedEventHandler</ReturnType> | ||
|  |       </ReturnValue> | ||
|  |       <Docs> | ||
|  |         <remarks>To be added.</remarks> | ||
|  |         <summary> | ||
|  |           <attribution license="cc4" from="Microsoft" modified="false" /> | ||
|  |           <para>Occurs when an item is added, removed, changed, moved, or the entire list is refreshed.</para> | ||
|  |         </summary> | ||
|  |       </Docs> | ||
|  |     </Member> | ||
|  |     <Member MemberName="InsertItem"> | ||
|  |       <MemberSignature Language="C#" Value="protected override void InsertItem (int index, T item);" /> | ||
|  |       <MemberSignature Language="ILAsm" Value=".method familyhidebysig virtual instance void InsertItem(int32 index, !T item) cil managed" /> | ||
|  |       <MemberType>Method</MemberType> | ||
|  |       <AssemblyInfo> | ||
|  |         <AssemblyVersion>4.0.0.0</AssemblyVersion> | ||
|  |       </AssemblyInfo> | ||
|  |       <ReturnValue> | ||
|  |         <ReturnType>System.Void</ReturnType> | ||
|  |       </ReturnValue> | ||
|  |       <Parameters> | ||
|  |         <Parameter Name="index" Type="System.Int32" /> | ||
|  |         <Parameter Name="item" Type="T" /> | ||
|  |       </Parameters> | ||
|  |       <Docs> | ||
|  |         <param name="index">To be added.</param> | ||
|  |         <param name="item">To be added.</param> | ||
|  |         <summary>To be added.</summary> | ||
|  |         <remarks>To be added.</remarks> | ||
|  |       </Docs> | ||
|  |     </Member> | ||
|  |     <Member MemberName="Move"> | ||
|  |       <MemberSignature Language="C#" Value="public void Move (int oldIndex, int newIndex);" /> | ||
|  |       <MemberSignature Language="ILAsm" Value=".method public hidebysig instance void Move(int32 oldIndex, int32 newIndex) cil managed" /> | ||
|  |       <MemberType>Method</MemberType> | ||
|  |       <AssemblyInfo> | ||
|  |         <AssemblyVersion>4.0.0.0</AssemblyVersion> | ||
|  |       </AssemblyInfo> | ||
|  |       <ReturnValue> | ||
|  |         <ReturnType>System.Void</ReturnType> | ||
|  |       </ReturnValue> | ||
|  |       <Parameters> | ||
|  |         <Parameter Name="oldIndex" Type="System.Int32" /> | ||
|  |         <Parameter Name="newIndex" Type="System.Int32" /> | ||
|  |       </Parameters> | ||
|  |       <Docs> | ||
|  |         <remarks> | ||
|  |           <attribution license="cc4" from="Microsoft" modified="false" /> | ||
|  |           <para>Subclasses can override the <see cref="M:System.Collections.ObjectModel.ObservableCollection`1.MoveItem(System.Int32,System.Int32)" /> method to provide custom behavior for this method.</para> | ||
|  |         </remarks> | ||
|  |         <summary> | ||
|  |           <attribution license="cc4" from="Microsoft" modified="false" /> | ||
|  |           <para>Moves the item at the specified index to a new location in the collection.</para> | ||
|  |         </summary> | ||
|  |         <param name="oldIndex"> | ||
|  |           <attribution license="cc4" from="Microsoft" modified="false" />The zero-based index specifying the location of the item to be moved.</param> | ||
|  |         <param name="newIndex"> | ||
|  |           <attribution license="cc4" from="Microsoft" modified="false" />The zero-based index specifying the new location of the item.</param> | ||
|  |       </Docs> | ||
|  |     </Member> | ||
|  |     <Member MemberName="MoveItem"> | ||
|  |       <MemberSignature Language="C#" Value="protected virtual void MoveItem (int oldIndex, int newIndex);" /> | ||
|  |       <MemberSignature Language="ILAsm" Value=".method familyhidebysig newslot virtual instance void MoveItem(int32 oldIndex, int32 newIndex) cil managed" /> | ||
|  |       <MemberType>Method</MemberType> | ||
|  |       <AssemblyInfo> | ||
|  |         <AssemblyVersion>4.0.0.0</AssemblyVersion> | ||
|  |       </AssemblyInfo> | ||
|  |       <ReturnValue> | ||
|  |         <ReturnType>System.Void</ReturnType> | ||
|  |       </ReturnValue> | ||
|  |       <Parameters> | ||
|  |         <Parameter Name="oldIndex" Type="System.Int32" /> | ||
|  |         <Parameter Name="newIndex" Type="System.Int32" /> | ||
|  |       </Parameters> | ||
|  |       <Docs> | ||
|  |         <remarks> | ||
|  |           <attribution license="cc4" from="Microsoft" modified="false" /> | ||
|  |           <para>This implementation raises the <see cref="E:System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged" /> event.</para> | ||
|  |           <para>Subclasses can override this protected method to provide custom behavior for the <see cref="M:System.Collections.ObjectModel.ObservableCollection`1.Move(System.Int32,System.Int32)" /> method.</para> | ||
|  |         </remarks> | ||
|  |         <summary> | ||
|  |           <attribution license="cc4" from="Microsoft" modified="false" /> | ||
|  |           <para>Moves the item at the specified index to a new location in the collection.</para> | ||
|  |         </summary> | ||
|  |         <param name="oldIndex"> | ||
|  |           <attribution license="cc4" from="Microsoft" modified="false" />The zero-based index specifying the location of the item to be moved.</param> | ||
|  |         <param name="newIndex"> | ||
|  |           <attribution license="cc4" from="Microsoft" modified="false" />The zero-based index specifying the new location of the item.</param> | ||
|  |       </Docs> | ||
|  |     </Member> | ||
|  |     <Member MemberName="OnCollectionChanged"> | ||
|  |       <MemberSignature Language="C#" Value="protected virtual void OnCollectionChanged (System.Collections.Specialized.NotifyCollectionChangedEventArgs e);" /> | ||
|  |       <MemberSignature Language="ILAsm" Value=".method familyhidebysig newslot virtual instance void OnCollectionChanged(class System.Collections.Specialized.NotifyCollectionChangedEventArgs e) cil managed" /> | ||
|  |       <MemberType>Method</MemberType> | ||
|  |       <AssemblyInfo> | ||
|  |         <AssemblyVersion>4.0.0.0</AssemblyVersion> | ||
|  |       </AssemblyInfo> | ||
|  |       <ReturnValue> | ||
|  |         <ReturnType>System.Void</ReturnType> | ||
|  |       </ReturnValue> | ||
|  |       <Parameters> | ||
|  |         <Parameter Name="e" Type="System.Collections.Specialized.NotifyCollectionChangedEventArgs" /> | ||
|  |       </Parameters> | ||
|  |       <Docs> | ||
|  |         <remarks> | ||
|  |           <attribution license="cc4" from="Microsoft" modified="false" /> | ||
|  |           <para>Properties and methods that modify this collection raise the <see cref="E:System.Collections.ObjectModel.ObservableCollection`1.CollectionChanged" /> event through this virtual method.</para> | ||
|  |         </remarks> | ||
|  |         <summary> | ||
|  |           <attribution license="cc4" from="Microsoft" modified="false" /> | ||
|  |           <para>Raises the <see cref="E:System.Collections.ObjectModel.ObservableCollection`1.CollectionChanged" /> event with the provided arguments.</para> | ||
|  |         </summary> | ||
|  |         <param name="e"> | ||
|  |           <attribution license="cc4" from="Microsoft" modified="false" />Arguments of the event being raised.</param> | ||
|  |       </Docs> | ||
|  |     </Member> | ||
|  |     <Member MemberName="OnPropertyChanged"> | ||
|  |       <MemberSignature Language="C#" Value="protected virtual void OnPropertyChanged (System.ComponentModel.PropertyChangedEventArgs e);" /> | ||
|  |       <MemberSignature Language="ILAsm" Value=".method familyhidebysig newslot virtual instance void OnPropertyChanged(class System.ComponentModel.PropertyChangedEventArgs e) cil managed" /> | ||
|  |       <MemberType>Method</MemberType> | ||
|  |       <AssemblyInfo> | ||
|  |         <AssemblyVersion>4.0.0.0</AssemblyVersion> | ||
|  |       </AssemblyInfo> | ||
|  |       <ReturnValue> | ||
|  |         <ReturnType>System.Void</ReturnType> | ||
|  |       </ReturnValue> | ||
|  |       <Parameters> | ||
|  |         <Parameter Name="e" Type="System.ComponentModel.PropertyChangedEventArgs" /> | ||
|  |       </Parameters> | ||
|  |       <Docs> | ||
|  |         <remarks>To be added.</remarks> | ||
|  |         <summary> | ||
|  |           <attribution license="cc4" from="Microsoft" modified="false" /> | ||
|  |           <para>Raises the <see cref="E:System.Collections.ObjectModel.ObservableCollection`1.PropertyChanged" /> event with the provided arguments.</para> | ||
|  |         </summary> | ||
|  |         <param name="e"> | ||
|  |           <attribution license="cc4" from="Microsoft" modified="false" />Arguments of the event being raised.</param> | ||
|  |       </Docs> | ||
|  |     </Member> | ||
|  |     <Member MemberName="PropertyChanged"> | ||
|  |       <MemberSignature Language="C#" Value="protected virtual event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;" /> | ||
|  |       <MemberSignature Language="ILAsm" Value=".event class System.ComponentModel.PropertyChangedEventHandler PropertyChanged" /> | ||
|  |       <MemberType>Event</MemberType> | ||
|  |       <AssemblyInfo> | ||
|  |         <AssemblyVersion>4.0.0.0</AssemblyVersion> | ||
|  |       </AssemblyInfo> | ||
|  |       <ReturnValue> | ||
|  |         <ReturnType>System.ComponentModel.PropertyChangedEventHandler</ReturnType> | ||
|  |       </ReturnValue> | ||
|  |       <Docs> | ||
|  |         <remarks>To be added.</remarks> | ||
|  |         <summary> | ||
|  |           <attribution license="cc4" from="Microsoft" modified="false" /> | ||
|  |           <para>Occurs when a property value changes.</para> | ||
|  |         </summary> | ||
|  |       </Docs> | ||
|  |     </Member> | ||
|  |     <Member MemberName="RemoveItem"> | ||
|  |       <MemberSignature Language="C#" Value="protected override void RemoveItem (int index);" /> | ||
|  |       <MemberSignature Language="ILAsm" Value=".method familyhidebysig virtual instance void RemoveItem(int32 index) cil managed" /> | ||
|  |       <MemberType>Method</MemberType> | ||
|  |       <AssemblyInfo> | ||
|  |         <AssemblyVersion>4.0.0.0</AssemblyVersion> | ||
|  |       </AssemblyInfo> | ||
|  |       <ReturnValue> | ||
|  |         <ReturnType>System.Void</ReturnType> | ||
|  |       </ReturnValue> | ||
|  |       <Parameters> | ||
|  |         <Parameter Name="index" Type="System.Int32" /> | ||
|  |       </Parameters> | ||
|  |       <Docs> | ||
|  |         <remarks> | ||
|  |           <attribution license="cc4" from="Microsoft" modified="false" /> | ||
|  |           <para>The base class calls this method when an item is removed from the collection. This implementation raises the <see cref="E:System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged" /> event.</para> | ||
|  |           <para>For more information, see the <see cref="M:System.Collections.ObjectModel.Collection`1.RemoveItem(System.Int32)" /> method of the <see cref="T:System.Collections.ObjectModel.Collection`1" /> base class.</para> | ||
|  |         </remarks> | ||
|  |         <summary> | ||
|  |           <attribution license="cc4" from="Microsoft" modified="false" /> | ||
|  |           <para>Removes the item at the specified index of the collection.</para> | ||
|  |         </summary> | ||
|  |         <param name="index"> | ||
|  |           <attribution license="cc4" from="Microsoft" modified="false" />The zero-based index of the element to remove.</param> | ||
|  |       </Docs> | ||
|  |     </Member> | ||
|  |     <Member MemberName="SetItem"> | ||
|  |       <MemberSignature Language="C#" Value="protected override void SetItem (int index, T item);" /> | ||
|  |       <MemberSignature Language="ILAsm" Value=".method familyhidebysig virtual instance void SetItem(int32 index, !T item) cil managed" /> | ||
|  |       <MemberType>Method</MemberType> | ||
|  |       <AssemblyInfo> | ||
|  |         <AssemblyVersion>4.0.0.0</AssemblyVersion> | ||
|  |       </AssemblyInfo> | ||
|  |       <ReturnValue> | ||
|  |         <ReturnType>System.Void</ReturnType> | ||
|  |       </ReturnValue> | ||
|  |       <Parameters> | ||
|  |         <Parameter Name="index" Type="System.Int32" /> | ||
|  |         <Parameter Name="item" Type="T" /> | ||
|  |       </Parameters> | ||
|  |       <Docs> | ||
|  |         <param name="index">To be added.</param> | ||
|  |         <param name="item">To be added.</param> | ||
|  |         <summary>To be added.</summary> | ||
|  |         <remarks>To be added.</remarks> | ||
|  |       </Docs> | ||
|  |     </Member> | ||
|  |   </Members> | ||
|  | </Type> |