0
Answer

MEP (Message Encryption Pattern) IsOneWay in WCF

Since we know that the following code:
 [OperationContract(IsOneWay=true)]
 string GetData(int value);

is wrong why the compiler shows build error. Why error @ runtime?

Soumen, India