如何使基于REST的WCF服务服务文件成为索引?

时间:2012-05-14 16:59:58

标签: c# .net wcf rest

我有一个服务文件Service.svc,它提供Web服务。我希望帮助页面成为主要网址(例如/而不是/Service.svc/help)。这有可能,有人可以告诉我该怎么办?

1 个答案:

答案 0 :(得分:1)

只需重定向到帮助页面即可。例如:

[WebInvoke(UriTemplate = "", Method = "GET")]
public void RedirectToHelp()
{          
  WebOperationContext.Current.OutgoingResponse.StatusCode = HttpStatusCode.Redirect;
  WebOperationContext.Current.OutgoingResponse.Location = "help";

}