本文整理汇总了C#中DataManager.FetchProfile方法的典型用法代码示例。如果您正苦于以下问题:C# DataManager.FetchProfile方法的具体用法?C# DataManager.FetchProfile怎么用?C# DataManager.FetchProfile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DataManager
的用法示例。
在下文中一共展示了DataManager.FetchProfile方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TestMatch
public void TestMatch()
{
MatchLogic matchLogic = new MatchLogic();
var dataManager = new DataManager();
MatchRequest req = new MatchRequest();
var userDataPuddy = new UserProfileRequest
{
//UserID = 69,
UserName = "SRoss",
ProfileAttributeType = ProfileAttributeTypeEnum.All
};
UserProfileData match = dataManager.FetchProfile(userDataPuddy);
// This is elaine.
req.UserID = 6969;
MatchResponse response = matchLogic.GetMatchByLocation(req);
if (response != null)
{
if (response.MatchProfiles != null && response.MatchProfiles.Count() > 0)
{
foreach (ChoiceProfile cp in response.MatchProfiles)
{
cp.ChoiceType = ChoiceTypeEnum.Like;
}
// Add the match profiles
var userProfileData = new UserProfileData
{
UserData = match.UserData,
UserChoices = response.MatchProfiles
};
dataManager.ModifyProfile(userProfileData);
}
}
}
示例2: TestUpdateProfileData
//.........这里部分代码省略.........
{
Id = 19,
ResponseTypeID = 2
};
ProfileEntity matchResponse2 = new ProfileEntity
{
Id = 20,
ResponseTypeID = 2
};
List<ProfileEntity> matchRespounses = new List<ProfileEntity>();
matchRespounses.Add(matchResponse);
matchRespounses.Add(matchResponse2);
var userProfileData = new UserProfileData
{
UserData = data.UserData,
//UserResponses = userRespounses,
MatchResponses = matchRespounses
};
dataManager.ModifyProfile(userProfileData);
}
*/
var userDataPuddy = new UserProfileRequest
{
//UserID = 69,
UserName = "pjlove",
ProfileAttributeType = ProfileAttributeTypeEnum.All
};
UserProfileData match = dataManager.FetchProfile(userDataPuddy);
if (match.UserData != null)
{
//match.UserData.DisplayName = "Giddy6969";
ProfileEntity userResponse = new ProfileEntity
{
Id = 17,
ResponseTypeID = 2
};
ProfileEntity userResponse2 = new ProfileEntity
{
Id = 12,
ResponseTypeID = 1
};
ProfileEntity userResponse3 = new ProfileEntity
{
Id = 6,
ResponseTypeID = 3
};
List<ProfileEntity> userRespounses = new List<ProfileEntity>();
userRespounses.Add(userResponse);
userRespounses.Add(userResponse2);
userRespounses.Add(userResponse3);
ProfileEntity matchResponse = new ProfileEntity
{
Id = 7,
ResponseTypeID = 3
};
示例3: TestFetchProfileData
public void TestFetchProfileData()
{
try
{
var dataManager = new DataManager();
var userData = new UserProfileRequest
{
//UserID = 69,
UserName = "pjlove",
ProfileAttributeType = ProfileAttributeTypeEnum.All
};
UserProfileData data = dataManager.FetchProfile(userData);
// No user found
if (data.UserData == null)
{
string msg = "miserable little failure";
}
}
catch (Exception ex)
{
string theEx = ex.InnerException.InnerException.Message;
}
}