Finding controls that use a certain interface in ASP.NET - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T22:40:16Zhttp://stackoverflow.com/feeds/question/28642http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/28642/finding-controls-that-use-a-certain-interface-in-asp-net2Finding controls that use a certain interface in ASP.NETChris2008-08-26T17:11:41Z2008-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#286621Answer by bdukes for Finding controls that use a certain interface in ASP.NETbdukes2008-08-26T17:18:04Z2008-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#286631Answer by Sean Chambers for Finding controls that use a certain interface in ASP.NETSean Chambers2008-08-26T17:18:16Z2008-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#286662Answer by David Basarab for Finding controls that use a certain interface in ASP.NETDavid Basarab2008-08-26T17:19:43Z2008-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<Control> FindControlsByType(ControlCollection controls, Type typeToFind)
{
List<Control> foundList = new List<Control>();
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<Control> 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#286710Answer by hometoast for Finding controls that use a certain interface in ASP.NEThometoast2008-08-26T17:21:54Z2008-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#287120Answer by FlySwat for Finding controls that use a certain interface in ASP.NETFlySwat2008-08-26T17:49:27Z2008-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#287153Answer by Daniel Auger for Finding controls that use a certain interface in ASP.NETDaniel Auger2008-08-26T17:50:51Z2008-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#288091Answer by Jason Diller for Finding controls that use a certain interface in ASP.NETJason Diller2008-08-26T18:32:53Z2008-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<T> FindControlsByType<T>(ControlCollection controls )
{
List<T> foundList = new List<T>();
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<T> childList = FindControlsByType<T>( ctrl.Controls );
foundList.AddRange( childList );
}
}
return foundList;
}
// Pass it this way
FindControlsByType<IYourInterface>( 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>