具有静态属性或方法的 C# 接口?

发布于 2025-01-04 11:47:15 字数 524 浏览 1 评论 0原文

我需要在业务逻辑的某些类中定义静态属性或方法,以明确确定哪些类可以在 ASP.NET 服务的会话或缓存中缓存。我想,接口中的静态属性或方法将是完美的,但 C# 4.0 不支持这一点。

所需要的只是能够在通用管理器中评估哪些类是可缓存的,如果是,则处于什么级别:会话(用户)或缓存(应用程序)。

现在我正在尝试使用带有 T 参数的空接口来评估,但是,也许存在更好的方法?谢谢。

public interface ICacheable<T>
{
}

public class Country : ICacheable<CacheApplication>
{
}

public class Department : ICacheable<CacheUser>
{
}

public class Gestor<T>
{
    // ...
    if (typeof(T) is ICacheable<CacheApplication>)
    {
    }
    // ...
}

I need to define a static property or method in certain classes of my bussiness logic, to explicity determine which classes are cacheables in Session or Cache of ASP.NET service. I'm thinking, static property or method in the interface would be perfect, but C# 4.0 doesn't support this.

All a need is be able to evaluate in a generic manager which classes are cacheables and, if they are, at what level: session (user) or cache (application).

Now I'm trying with a empty interface with T parameter to evaluate, but, maybe exists a better approach?? Thanks.

public interface ICacheable<T>
{
}

public class Country : ICacheable<CacheApplication>
{
}

public class Department : ICacheable<CacheUser>
{
}

public class Gestor<T>
{
    // ...
    if (typeof(T) is ICacheable<CacheApplication>)
    {
    }
    // ...
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

长不大的小祸害 2025-01-11 11:47:15

使用自定义属性怎么样?您的课程将如下所示:

[Cacheable(Level = CacheLevels.Application)]
public class Country { }

[Cacheable(Level = CacheLevels.User)]
public class Department { }

您可以在此处阅读了解如何创建您自己的自定义属性,然后使用反射访问其值。

How about using a custom attribute? Your classes then would look something like this:

[Cacheable(Level = CacheLevels.Application)]
public class Country { }

[Cacheable(Level = CacheLevels.User)]
public class Department { }

You can read here on how to create your own custom attribute and then access its value by using reflection.

不再让梦枯萎 2025-01-11 11:47:15

您无法定义静态接口,一方面,您无法创建静态类的实例,因此您无法将它们替换为具有相同基类的其他实例。

您最好拥有一个类的单例实例并正常使用接口。您也可以通过工厂模式强制执行一个且唯一的实例。

You cant define static interfaces, for one thing, you cant make instances of static classes so you cant substitute them for others with the same base class.

You might be better off having a singleton instance of one class and using interfaces as normal. You could enforce one and one-only instance through a factory pattern too.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文