通常、WCF REST JSON のコードは次のようになります。
// Start the service and browse to <a href="http://:/SampleService/help[ServiceContract] public">http://<machine_name>:<port>/SampleService/help [ServiceContract]
public interface ISampleService {
[WebGet(UriTemplate = "")]
List<SampleItem> GetCollection();
つまり、インターフェースが導入されます。しかし、コードインターフェイスで見たいくつかの出来事では、まったく使用されていません。そのような
[ServiceContract(Namespace = "")]
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
public class AlertService
{
AlertContext alertProxy = new AlertContext();
AlertDetailsContext alertDetailProxy = new AlertDetailsContext();
Analytics analyticsProxy = new Analytics();
[OperationContract]
[WebInvoke(BodyStyle=WebMessageBodyStyle.Bare, RequestFormat=WebMessageFormat.Json, ResponseFormat=WebMessageFormat.Json, UriTemplate="/SearchAlerts")]
public List<Alert> SearchAlerts(AlertFilter filter)
{
WebOperationContext.Current.OutgoingResponse.Headers.Add("Cache-Control", "no-cache, must-revalidate");
WebOperationContext.Current.OutgoingResponse.Headers.Add("Expires", "Sat, 26 Jul 1997 05:00:00 GMT");
ここでクラスが直接使用されますが、なぜですか?