使用Silverlight构建插件式应用程序(五)
2008-10-23 11:43:43 来源:WEB开发网用户的注册和登录:
前边说过主程序框架除了对插件提供宿主之外,另外主要就是提供用户管理功能。这次做用户的注册和登录功能:
整个用户的操作的WCF服务都在WSMain.SVC服务中,主要提供了如下地方法:
[ServiceContract(Namespace = "")]
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
public class WSMain
{
[OperationContract]
public bool Login(string userName,string passWord)
{
MainBLL bll = new MainBLL();
return bll.Login(userName,passWord);
}
[OperationContract]
public string Regiest(UserInfo userInfo)
{
MainBLL bll = new MainBLL();
return bll.Regiest(userInfo);
}
[OperationContract]
public UserInfo GetUserInfo(string userName)
{
UserInfo result = new UserInfo();
return result;
}
[OperationContract]
public List<UserRelaInfo> GetFriends(string userName)
{
List<UserRelaInfo> result = new List<UserRelaInfo>();
MainBLL bll = new MainBLL();
result = bll.GetFriends(userName);
return result;
}
[OperationContract]
public bool UpDateLocalStyle(string userRelationId, string localStyle)
{
bool result = true;
MainBLL bll = new MainBLL();
bll.UpDateLocalStyle(userRelationId, localStyle);
return result;
}
// Add more operations here and mark them with [OperationContract]
}
Tags:使用 Silverlight 构建
编辑录入:爽爽 [复制链接] [打 印]更多精彩
赞助商链接