Hello All,
Am working on WCF. What i need is for Client A i need to show only add() method and for Client B i need to show both the methods.
interface IService
{
int add();
int sub();
}
For this i have searched a lot and found some concepts
1)PrincipalPermissionAttribute
2)Asp.net Membership
which am not so clear can you please explain about my requirement in detail with an example.
Thanks
Go to the complete details ...