i visit this post about hide from wsdl , i'v not yet test if its work on wsdl.
[ServiceContract]
[DeprecatedOperationsWsdlExportExtension]
public interface ICalculator{[OperationContract]
int Add(int x, int y);
[OperationContract]
int Subtract(int x, int y);
[OperationContract]
[DeprecatedOperation
int Multiply(int x, int y);
[OperationContract]
}
but iv try to test it on the help screen svc provide and its not hidden.
how should we keep some of the OperationContract hidden from the help and wsdl?