如何在WCF中序列化类

时间:2011-10-20 14:06:32

标签: asp.net wcf

我不希望我的类显示在使用我的WCF服务的用户端,但需要序列化,我需要使用哪个属性来装饰我的类以实现此功能......

我认为属性是[可序列化的],我不自信的原因是,WCF中有属性来实现相同的功能.......

2 个答案:

答案 0 :(得分:0)

您可以使用DataContractAttribute

答案 1 :(得分:0)

您可以在此示例中使用属性DataContractDataMember

[DataContract(Name = "Account", Namespace = "http://mynamespace.schema")]
public class Account 
{
    [DataMember(IsRequired = true)]
    public string Username { get; set; }

    [DataMember(IsRequired = false)]
    public string Password { get; set; }
}