Hello,
I have the following class declaration
[DataContract()]
public class LeaveTimeRuleWCF : BaseWCF
{
[DataMember]
public int UniqueId;
[DataMember]
public DateTime StartDate;
}
This class is used as paramter in my public WCF service method ;
[OperationContract]
public int Update(LeaveTimeRuleWCF a)
{
......
}
While calling the method I am getting the below shown error
Any idea hiow to fix this ?
...
Go to the complete details ...