I have DataContract
as below
[DataContract]
public class Test
{
public List<Validation> val { get; set; }
}
and my OperationContract
as below
public bool TestValidation(Test t, out string message)
{
return ValidationUtility.ValidateFields(t.val, out message);
}
I am not getting how to set value for Test.val on WCF Test Client