未処理の DataServiceExceptions (WCF によって自動的に処理されます) をスローして、未承認アクセスなどのステータス コードを返します。これらの未処理の例外で Visual Studio が中断するのを防ぐにはどうすればよいですか?
if (!System.Web.Security.Roles.IsUserInRole("Users"))
{
throw new DataServiceException((int)HttpStatusCode.Unauthorized, "You do not have access to this resource.");
}