Basically if I have the following:
[DataContract]
public class Foo
{
[MyCustomAttribute(...)]
[DataMember(IsRequired = true)]
public int bar { get; set; }
}
How can I get it so that the MyCustomAttribute is ignored when the user generates the class using "Add Service Reference..."
Basically, I don't want that attribute to be set on the properties of the client generated code. Keep in mind I still want the property itself to show up, but basically the client should look like this...
[DataContract]
public class Foo
{
[DataMember(IsRequired = true)]
public int bar { get; set; }
}
DataMember(IsRequired = true)and figured that it carried over attributes. I guess that that attribute was rebuilt, not carried over. – michael May 31 '11 at 19:02