Retrieve class name hierarchy as string

Posted by Jeff Wain on Stack Overflow See other posts from Stack Overflow or by Jeff Wain
Published on 2010-04-09T17:21:07Z Indexed on 2010/04/09 17:23 UTC
Read the original article Hit count: 218

Filed under:

Our system complexity has risen to the point that we need to make permission names tied to the client from the database more specific. In the client, permissions are referenced from a static class since a lot of client functionality is dependent on the permissions each user has and the roles have a ton of variety. I've referenced this post as an example, but I'm looking for a more specific use case. Take for instance this reference, where PermissionAlpha would be a const string:

return HasPermission(PermissionNames.PermissionAlpha);

Which is great, except now that things are growing more complex the classes are being structured like this:

public static class PermissionNames
{
    public static class PermissionAlpha
    {
        public const string SubPermission;
    }
}

I'm trying to find an easy way to reference PermissionAlpha in this new setup that will act similar to the first declaration above. Would the only way to do this be to resort to pulling the value of the class name like in the example below? I'm trying to keep all the names in one place that can be reference anywhere in the application.

public static class PermissionAlpha
{
    public static string Name { get { return typeof(PermissionAlpha).Name; } }
}

© Stack Overflow or respective owner

Related posts about c#