I can't find [WebInvoke]
and [WebGet]
. I have already add System.ServiceModel reference. what is the problem? I use .NET Framwork 4
Can't find [WebInvoke] and [WebGet]
You need to add a reference to the System.ServiceModel.Web.dll
. Notice that you need to target the full .NET Framework (either 3.5 or 4.0) - if your application is targeting the client profile for those frameworks, this assembly won't be available.
thanx I think it was the problem –
Irreproachable
Not having any luck with mine - I am trying to convert a Silverlight 4 --> Silverlight 5 under .NET 4.5.2 - I have added the System.ServiceModel.Web.dll , still no luck... thoughts? –
Galliett
Need to add the reference System.ServiceModel.Web.dll
and import the namespace System.ServiceModel.Web
by using below statement
using System.ServiceModel.Web;
Then it will work.
This helped me more than the accepted answer, because it mentions the correct using directive. My DLL reference was OK, but i was missing the using directive (my code was copied from a tutorial). I vote this up. –
Poliard
When using attributes "Attribute" portion of the class is implied.
WebInvoke - WebInvokeAttribute
WebGet - WebGetAttribute
© 2022 - 2024 — McMap. All rights reserved.