Click here to Skip to main content
15,885,365 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Can someone assit me how to implement Authentication at service level in WCF ?
In below example i want to apply Authentication on class "User" and method "Test()"

[ServiceContract]
public interface IUser
{
[OpeartionContract]
string Test();
}

//User.svc file
Public class User : IUser
{
public string Test()
{return "";}

}

If possible please suggest any exmaple.
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900