我正在开发需要成员资格和个人资料访问权限的 WCF 服务。
我通过使用System.Web.Security.Membership类并调用 CreateUser() 和 ValidateUser() 使会员资格工作正常,但我无法使配置文件正常工作。我什至不知道该调用什么类,我看到的所有示例都是针对 ASP.net 的,就像我在下面发布的那样,
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
txtFirstName.Text = Profile.FirstName;
txtLastName.Text = Profile.LastName;
int foo = Profile.Age;
}
}
当我在我的 WCF 端点中尝试时,Profile 对象不可用,我找不到任何其他方式来访问它。
有人可以指点我有关如何访问个人资料详细信息的写作方向吗?