Finding controls that use a certain interface in ASP.NET - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T22:40:16Z http://stackoverflow.com/feeds/question/28642 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/28642/finding-controls-that-use-a-certain-interface-in-asp-net 2 Finding controls that use a certain interface in ASP.NET Chris 2008-08-26T17:11:41Z 2008-08-27T02:21:05Z <p>Having a heckuva time with this one, though I feel I'm missing something obvious. I have a control that inherits from System.Web.UI.WebControls.Button, and then implements an interface that I have set up. So think...</p> <pre><code>public class Button : System.Web.UI.WebControls.Button, IMyButtonInterface { ... } </code></pre> <p>In the codebehind of a page, I'd like to find all instances of this button from the ASPX. Because I don't really know what the <em>type</em> is going to be, just the <em>interface</em> it implements, that's all I have to go on when looping through the control tree. Thing is, I've never had to determine if an object uses an interface versus just testing its type. <strong>How can I loop through the control tree and yank anything that implements IMyButtonInterface in a clean way</strong> (Linq would be fine)?</p> <p>Again, know it's something obvious, but just now started using interfaces heavily and I can't seem to focus my Google results enough to figure it out :)</p> <p><strong>Edit:</strong> GetType() returns the actual class, but doesn't return the interface, so I can't test on that (e.g., it'd return "MyNamespace.Button" instead of "IMyButtonInterface"). In trying to use "as" or "is" in a recursive function, the <em>type</em> parameter doesn't even get recognized within the function! It's rather bizarre. So</p> <pre><code>if(ctrl.GetType() == typeToFind) //ok if(ctrl is typeToFind) //typeToFind isn't recognized! eh? </code></pre> <p>Definitely scratching my head over this one.</p> http://stackoverflow.com/questions/28642/finding-controls-that-use-a-certain-interface-in-asp-net/28662#28662 1 Answer by bdukes for Finding controls that use a certain interface in ASP.NET bdukes 2008-08-26T17:18:04Z 2008-08-26T17:18:04Z <p>Interfaces are close enough to types that it should feel about the same. I'd use the <a href="http://msdn.microsoft.com/en-us/library/cscsdfbt.aspx" rel="nofollow">as operator</a>.</p> <pre><code>foreach (Control c in this.Page.Controls) { IMyButtonInterface myButton = c as IMyButtonInterface; if (myButton != null) { // do something } } </code></pre> <p>You can also test using the <a href="http://msdn.microsoft.com/en-us/library/scekt9xw.aspx" rel="nofollow">is operator</a>, depending on your need.</p> <pre><code>if (c is IMyButtonInterface) { ... } </code></pre> http://stackoverflow.com/questions/28642/finding-controls-that-use-a-certain-interface-in-asp-net/28663#28663 1 Answer by Sean Chambers for Finding controls that use a certain interface in ASP.NET Sean Chambers 2008-08-26T17:18:16Z 2008-08-26T17:24:01Z <p>Would the "is" operator work?</p> <pre><code>if (myControl is ISomeInterface) { // do something } </code></pre> http://stackoverflow.com/questions/28642/finding-controls-that-use-a-certain-interface-in-asp-net/28666#28666 2 Answer by David Basarab for Finding controls that use a certain interface in ASP.NET David Basarab 2008-08-26T17:19:43Z 2008-08-26T17:19:43Z <p>You can just search on the Interface. This also uses recursion if the control has child controls, i.e. the button is in a panel.</p> <pre><code> private List&lt;Control&gt; FindControlsByType(ControlCollection controls, Type typeToFind) { List&lt;Control&gt; foundList = new List&lt;Control&gt;(); foreach (Control ctrl in this.Page.Controls) { if (ctrl.GetType() == typeToFind) { // Do whatever with interface foundList.Add(ctrl); } // Check if the Control has Child Controls and use Recursion // to keep checking them if (ctrl.HasControls()) { // Call Function to List&lt;Control&gt; childList = FindControlsByType(ctrl.Controls, typeToFind); foundList.AddRange(childList); } } return foundList; } // Pass it this way FindControlsByType(Page.Controls, typeof(IYourInterface)); </code></pre> http://stackoverflow.com/questions/28642/finding-controls-that-use-a-certain-interface-in-asp-net/28671#28671 0 Answer by hometoast for Finding controls that use a certain interface in ASP.NET hometoast 2008-08-26T17:21:54Z 2008-08-26T17:21:54Z <p>If you're going to do some work on it if it is of that type, then TryCast is what I'd use.</p> <pre><code>Dim c as IInterface = TryCast(obj, IInterface) If c IsNot Nothing 'do work End if </code></pre> http://stackoverflow.com/questions/28642/finding-controls-that-use-a-certain-interface-in-asp-net/28712#28712 0 Answer by FlySwat for Finding controls that use a certain interface in ASP.NET FlySwat 2008-08-26T17:49:27Z 2008-08-26T17:49:27Z <p>you can always just use the as cast:</p> <pre><code>c as IMyButtonInterface; if (c != null) { // c is an IMyButtonInterface } </code></pre> http://stackoverflow.com/questions/28642/finding-controls-that-use-a-certain-interface-in-asp-net/28715#28715 3 Answer by Daniel Auger for Finding controls that use a certain interface in ASP.NET Daniel Auger 2008-08-26T17:50:51Z 2008-08-27T02:21:05Z <p>Longhorn213 almost has the right answer, but as as Sean Chambers and bdukes say, you should use </p> <pre><code>ctrl is IInterfaceToFind </code></pre> <p>instead of </p> <pre><code>ctrl.GetType() == aTypeVariable </code></pre> <p>The reason why is that if you use .GetType(), you will get the true type of an object, not necessarily what it can also be cast to in its inheritance/Interface implementation chain. Also, .GetType() will never return an abstract type/interface since you can't new up an abstract type or interface. GetType() returns concrete types only.</p> <p>The reason this doesn't work</p> <pre><code>if(ctrl is typeToFind) </code></pre> <p>Is because the type of the variable typeToFind is actually System.RuntimeType, not the type you've set its value to. Example, if you set a string's value to "foo", its type is still string not "foo". I hope that makes sense. It's very easy to get confused when working with types. I'm chronically confused when working with them.</p> <p>The most import thing to note about longhorn213's answer is that <strong>you have to use recursion</strong> or you may miss some of the controls on the page. </p> <p>Although we have a working solution here, I too would love to see if there is a more succinct way to do this with LINQ. </p> http://stackoverflow.com/questions/28642/finding-controls-that-use-a-certain-interface-in-asp-net/28809#28809 1 Answer by Jason Diller for Finding controls that use a certain interface in ASP.NET Jason Diller 2008-08-26T18:32:53Z 2008-08-26T18:32:53Z <p>I'd make the following changes to Longhorn213's example to clean this up a bit: </p> <pre><code>private List&lt;T&gt; FindControlsByType&lt;T&gt;(ControlCollection controls ) { List&lt;T&gt; foundList = new List&lt;T&gt;(); foreach (Control ctrl in this.Page.Controls) { if (ctrl as T != null ) { // Do whatever with interface foundList.Add(ctrl as T); } // Check if the Control has Child Controls and use Recursion // to keep checking them if (ctrl.HasControls()) { // Call Function to List&lt;T&gt; childList = FindControlsByType&lt;T&gt;( ctrl.Controls ); foundList.AddRange( childList ); } } return foundList; } // Pass it this way FindControlsByType&lt;IYourInterface&gt;( Page.Controls ); </code></pre> <p>This way you get back a list of objects of the desired type that don't require another cast to use. I also made the required change to the "as" operator that the others pointed out. </p>