我想知道 wcf 中 MessageParameterAttribute 的用途。
在我的功能中:
[OperationContract]
public float GetAirfare(
[MessageParameter(Name=”fromCity”)] string originCity,
[MessageParameter(Name=”toCity”)] string destinationCity);
我不在实现中的任何地方使用 fromCity 或 toCity ,甚至在使用服务时也不使用。那么给它起名字有什么意义呢?