如何使自定义用户/服务器控件上的属性成为强制属性?

发布于 2024-10-18 17:34:47 字数 68 浏览 3 评论 0原文

如果未指定内置 ASP.NET 控件的某些属性,则会引发异常。

如何在自定义用户/服务器控件上执行此操作?

If certain attributes on built-in ASP.NET controls aren't specified, then an exception will be thrown.

How do I do this on my custom user/server control?

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

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

发布评论

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

评论(2

淡莣 2024-10-25 17:34:47

一种方法是确保属性上的 getter 检查“未设置”状态,如果发现为 true,则抛出异常。

One approach would be to ensure the getter on the property checks for an 'unset' state and throws an exception if that's found to be true.

明明#如月 2024-10-25 17:34:47

您想抛出异常有什么具体原因吗?

标准方法是如果用户未指定任何内容,则分配默认值。拉撒路在上面已经提到了另一种选择。

Is there any specific reason why you want to throw an exception ?

The standard approach is to assign a default value if nothing is specified by the user. Another alternative is already mentioned above by Lazarus.

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