views:

1981

answers:

6

Hi,

This should hopefully be a simple one.

I would like to add an extension method to the System.Web.Mvc.ViewPage< T > class.

How should this extension method look?

My first intuitive thought is something like this:

namespace System.Web.Mvc
{
    public static class ViewPageExtensions
    {
        public static string GetDefaultPageTitle(this ViewPage<Type> v)
        {
            return "";
        }
    }
}

Solution

The general solution is this answer.

The specific solution to extending the System.Web.Mvc.ViewPage class is my answer below, which started from the general solution.

The difference is in the specific case you need both a generically typed method declaration AND a statement to enforce the generic type as a reference type.

+8  A: 

I don't have VS installed on my current machine, but I think the syntax would be:

namespace System.Web.Mvc
{
    public static class ViewPageExtensions
    {
        public static string GetDefaultPageTitle<T>(this ViewPage<T> v)
        {
            return "";
        }
    }
}
David Thibault
See http://stackoverflow.com/questions/68750/how-do-you-write-a-c-extension-method-for-a-generically-typed-class/68802#68802
Graphain
+1  A: 

It just needs the generic type specifier on the function:

namespace System.Web.Mvc
{
    public static class ViewPageExtensions
    {
        public static string GetDefaultPageTitle<Type>(this ViewPage<Type> v)
        {
            return "";
        }
    }
}

Edit: Just missed it by seconds!

Corey Ross
+4  A: 

Thanks leddt. Doing that yielded the error:

The type 'TModel' must be a reference type in order to use it as parameter 'TModel' in the generic type or method

which pointed me to this page, which yielded this solution:

namespace System.Web.Mvc
{
    public static class ViewPageExtensions
    {
        public static string GetDefaultPageTitle<T>(this ViewPage<T> v) 
          where T : class
        {
            return "";
        }
    }
}
Graphain
+1  A: 

If you want the extension to only be available for the specified type you simply just need to specify the actual type you will be handling

something like...

public static string GetDefaultPageTitle(this ViewPage<YourSpecificType> v)
{
  ...
}

Note intellisense will then only display the extension method when you declare your (in this case) ViewPage with the matching type.

Also, best not to use the System.Web.Mvc namespace, I know its convenient to not have to include your namespace in the usings section, but its far more maintainable if you create your own extensions namespace for your extension functions.

Tim Jarvis
+1  A: 

Glenn Block has a good example of implementing a ForEach extension method to IEnumerable<T>.

From his blog post:

public static class IEnumerableUtils
{
    public static void ForEach<T>(this IEnumerable<T> collection, Action<T> action)
    {
        foreach(T item in collection)
            action(item);
    }
}
spoon16
+1  A: 
namespace System.Web.Mvc
{
    public static class ViewPageExtensions
    {
        public static string GetDefaultPageTitle<T>(this ViewPage<T> view)
            where T : class
        {
            return "";
        }
    }
}

You may also need/wish to add the "new()" qualifier to the generic type (i.e. "where T : class, new()" to enforce that T is both a reference type (class) and has a parameterless constructor.

chadmyers