我不希望我的类显示在使用我的WCF服务的用户端,但需要序列化,我需要使用哪个属性来装饰我的类以实现此功能......
我认为属性是[可序列化的],我不自信的原因是,WCF中有属性来实现相同的功能.......
答案 0 :(得分:0)
答案 1 :(得分:0)
您可以在此示例中使用属性DataContract
和DataMember
:
[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; }
}