In .NET, is there a standard way to indicate that a web service method has been deprecated?
To clarify, by 'web service method', I mean a method that has been decorated with the [WebMethod] attribute.
Is standard practice to just use the [Obsolete] attribute to mark it as deprecated, just like any other method?