PostSharp - automate event subscription and collection addition - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T22:55:20Z http://stackoverflow.com/feeds/question/939850 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/939850/postsharp-automate-event-subscription-and-collection-addition 1 PostSharp - automate event subscription and collection addition Miha Necak 2009-06-02T14:21:02Z 2009-07-07T07:00:02Z <p>A repeating routine task that I would like to solve using PostSharp is event subscription and collection addition. I would like to subscribe parent's object procedure to each child object's event (children are conatained in a List). I would also like to add all Lists from parent to a master List on the parent. What aspec shuld i be using or in which direction should i be thinking?</p> <p>Example of the problem described above is listed below...</p> <p>I have the following interface:</p> <pre><code>public interface ITraceable { IList Children {get;set;} ChangeStatus Status {get;set;} bool IsTraceEnabled {get;set;} event EventHandler ChangeHandler } </code></pre> <p>With the folowing status types:</p> <pre><code>public enum ChangeStatus { New, Modified, Added, Deleted } </code></pre> <p>The structure and implementation of the above is:</p> <pre><code>public class Entity : ITraceable { public event EventHandler {get;set;} public IList Children {get;set;} public ChangeStatus Status {get;set;} public bool IsTraceEnabled {get;set;} public string Name {get;set;} public string Address {get;set;} public string Title {get;set;} public List&lt;ChildEntity1&gt; ChildEntities {get;set;} public List&lt;ChildEntity2&gt; ChildEntities {get;set;} public void SubscribeableSub(object sender, EventArgs e) { Console.WriteLine("Test"); } } public class ChildEntity1 : ITraceable { public event EventHandler {get;set;} public IList Children {get;set;} public ChangeStatus Status {get;set;} public bool IsTraceEnabled {get;set;} public string Name1 {get;set;} public string Address1 {get;set;} public string Title1 {get;set;} } public class ChildEntity2 : ITraceable { public event EventHandler {get;set;} public IList Children {get;set;} public ChangeStatus Status {get;set;} public bool IsTraceEnabled {get;set;} public string Name2 {get;set;} public string Address2 {get;set;} public string Title2 {get;set;} } </code></pre> <p>Thanks in advandce for any assistance</p> http://stackoverflow.com/questions/939850/postsharp-automate-event-subscription-and-collection-addition/940328#940328 0 Answer by Gael Fraiteur for PostSharp - automate event subscription and collection addition Gael Fraiteur 2009-06-02T15:51:08Z 2009-06-02T15:51:08Z <p>I would use the following pattern:</p> <ol> <li><p>Use a custom collection (for instance inherit from Collection). Override InsertItem and subscribe to child events from there. The constructor of the collection takes the parent as a parameter. So no need for PostSharp here.</p></li> <li><p>You can use PostSharp to automatically implement some events, for instance PropertyChanged (INotifyPropertyChanged). See the sample PostSharp.Samples.Binding for details.</p></li> </ol> <p>-gael</p>