Answer: WCF one way contract is implemented via
"IsOneWay = true/false" attribute.
For example :-
[ServiceContract]
interface IMyContract
{
[OperationContract(IsOneWay = true)]
void MyMethod( );
}
Thanks and Regards
Akiii
Found interesting? Add this to: