Kizspy | Question: 6
(Choose 1 answer)
Consider this simple CoreWCF service contract for a .NET 9 application:
{
[ServiceContract]
public interface IGreeterService
[OperationContract]
string Greet(string name);
}
Which part defines what the service does?
A. [ServiceContract]
B. public interface IGreeterService
C. [OperationContract]
D. string Greet(string name);
FJOVERFLOW.COM