. , , . WCF , OperationContract . , . , WCF, slide no, 36.
MSDN WCF, , OperationContract . , , , .
ServiceContract OperationContract , :
[ServiceContract]
public interface IMyService
{
[OperationContract]
string GetData();
}
public class MyService : IMyService
{
public string GetData() { ... }
private string ComputeData() { ... }
}