如何防止字段被复制到 WCF RIA 中的客户端代理?

发布于 2024-10-19 21:31:23 字数 394 浏览 2 评论 0原文

是否可以使用元数据属性来防止 WCF RIA 服务中的客户端访问某个字段?我确信我以前见过这个,但我一片空白,谷歌也没有提供帮助。它看起来像

[MetadataType(typeof(User.UserMetadata))]
public partial class User
{
    internal sealed class UserMetadata
    {
        private UserMetadata()
        {
        }

        public int Id { get; set; }

        [HideFromClientProxy]
        public string PasswordSalt { get; set; }
    }
}

Is there a metadata attribute I can use to prevent a field from being accessible on the client in a WCF RIA services? I sure I have seen this before, but I'm drawing a blank and Google isn't helping. It would look something like

[MetadataType(typeof(User.UserMetadata))]
public partial class User
{
    internal sealed class UserMetadata
    {
        private UserMetadata()
        {
        }

        public int Id { get; set; }

        [HideFromClientProxy]
        public string PasswordSalt { get; set; }
    }
}

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

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

发布评论

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

评论(2

最好是你 2024-10-26 21:31:23

使用[排除]-属性

Use the [Exclude]-Attribute

放低过去 2024-10-26 21:31:23
[Exclude]
public string PasswordSalt { get; set; }
[Exclude]
public string PasswordSalt { get; set; }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文