Hi frnds,
I want to know that what is Compositetype in C# and how to use it.
[OperationContract]
CompositeType GetDataUsingDataContract(CompositeType composite);
and When Implementing this
public CompositeType GetDataUsingDataContract(CompositeType composite)
{
if (composite.BoolValue)
{
composite.StringValue += "Suffix";
}
return composite;
}
and when Calling this Service, How to consume above method and what type of parameter will be pass.
Best Regards,
Sutotpal