Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个自定义 Razor 基本页面。继承自
WebViewPage<TModel>
我已经覆盖了这个方法:
public override Write(object value)
但是在这种方法中,我想知道当前写出了哪个属性。
现在我动态地在我的模型中搜索具有这个特定值的属性,但这似乎不是最优的。我看过所有的“基地。???” 属性,但找不到任何可能让我访问当前写出的属性的东西。
有什么想法吗?