gpt4 book ai didi

c# - 如何获取实例变量的最顶层类型?

转载 作者:行者123 更新时间:2023-11-30 12:40:14 25 4
gpt4 key购买 nike

假设我有一个声明为给定基类的实例变量。我想找到那个对象实际上是什么原始的、最上面的类型而不是基类。我该怎么做?

我有一个 la PostSharp 的验证属性,因此反射命中是在编译时发生的,因此由于 CompileTimeValidation 方法而没有实际意义。我只是不知道该怎么做。执行 IsSubclassOf 扫描没有帮助,因为我会得到多个误报。

为了提供上下文,我有一个基本 Entity 类型。我从这个类型派生出来定义了所有类型的 Entity 类型。我用策略属性装饰这些类型,包括基础 Entity。 PostSharp 方面在编译时验证某些策略约束。我希望能够仅使用方面验证来修饰基本 Entity 类型,以便验证 Entity 及其所有派生类型。我可以看到验证已经发生。但是,它作为 Entity 而不是 DerivedEntity 处理。为了评估关于 DerviedEntity 的政策,我需要专门装饰那个类。如果可能,我不想这样做,只装饰 Entity

本质上,我想将我的验证集中在基类上,因为验证模式对于所有派生类都是相同的。但是,派生类中的值可能会发生变化,我需要进行一些边界检查。

编辑:让我们添加一些代码。

[EnforceMaxLifetimePolicy]
[LifetimePolicy]
public class Entity<T>
{
public string Key { get; set; }
public T Object { get; set; }

public TimeSpan EntityLifetime
{
get
{
var lifetimePolicy =
Attribute.GetCustomAttribute(GetType(), typeof(LifetimePolicyAttribute)) as LifetimePolicyAttribute;

return new TimeSpan(lifetimePolicy.Hours, lifetimePolicy.Minutes, 0);
}
}
}

[Serializable]
[AttributeUsage(AttributeTargets.Class)]
internal class LifetimePolicyAttribute : Attribute
{
public readonly short Hours;
public readonly short Minutes;

public LifetimePolicyAttribute(short hours, short minutes)
{
Hours = hours;
Minutes = minutes;
}

public LifetimePolicyAttribute()
{
Minutes = 1;
}
}

[Serializable]
[AttributeUsage(AttributeTargets.Class)]
internal class EnforceMaxLifetimePolicyAttribute : OnMethodBoundaryAspect
{
public override bool CompileTimeValidate(MethodBase method)
{
var type = method.GetType();

var lifetimePolicy = GetCustomAttribute(type, typeof(LifetimePolicyAttribute)) as LifetimePolicyAttribute;

if (lifetimePolicy != null && lifetimePolicy.Hours + lifetimePolicy.Minutes / 60 > 24)
{
throw new InvalidAnnotationException($"Lifetimes can not exceed 24 hours. The lifetime on {type.FullName} is invalid.");
}

return true;
}
}

[LifetimePolicy(hours: 24, minutes: 0)]
internal class ShoppingCartEntity : Entity<ShoppingCart>
{
}

如您所见,ShoppingCartEntity 上没有 [EnforceMaxLifetimePolicy]。它在基类 Entity 上。但是,我仍然希望 Enforce 属性实体也适用于派生类型,这就是为什么我将 Inherited 标志保留为默认值 (true) 的原因。

最佳答案

我不太明白你的问题,但你总能找到:

1。对象实际类型(使用 obj.GetType()):

if (obj.GetType() == typeof(Entity)) { ... }

2。如果对象派生自某种类型(使用“is”运算符):

if (obj is Entity) { ... }

关于c# - 如何获取实例变量的最顶层类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42493642/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com