本文整理汇总了C#中BaseLib.GlobusHttpHelper.GetUniqueKeyBasedValue方法的典型用法代码示例。如果您正苦于以下问题:C# GlobusHttpHelper.GetUniqueKeyBasedValue方法的具体用法?C# GlobusHttpHelper.GetUniqueKeyBasedValue怎么用?C# GlobusHttpHelper.GetUniqueKeyBasedValue使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BaseLib.GlobusHttpHelper
的用法示例。
在下文中一共展示了GlobusHttpHelper.GetUniqueKeyBasedValue方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetProfileId
public string GetProfileId(ref GlobusHttpHelper httpHelper, string loggedInPageSource)
{
string profileId = string.Empty;
try
{
//profileId = httpHelper.GetUniqueKeyBasedValue(loggedInPageSource, "user_id:");
profileId = httpHelper.GetUniqueKeyBasedValue(loggedInPageSource, "<li class=\"nav-item account-settings-tab\">");
}
catch
{
}
return profileId;
}
示例2: SetProfilePic
public void SetProfilePic(ref GlobusHttpHelper httpHelper)
{
try
{
string homePageSource = httpHelper.getHtmlfromUrl1(new Uri("http://www.linkedin.com"));
string ProfileID = GetProfileId(ref httpHelper, homePageSource);
string Url = "http://www.linkedin.com/profile/view?id=" + ProfileID + "&trk=tab_pro";
string ProfilePageSource = httpHelper.getHtmlfromUrl1(new Uri(Url));
if (!string.IsNullOrEmpty(homePageSource))
{
try
{
if (ProfilePageSource.Contains("link__nprofileEdit"))
{
try
{
string link__nprofileEdit = httpHelper.GetUniqueKeyBasedValue(ProfilePageSource, "link__nprofileEdit");
}
catch { }
}
if (ProfilePageSource.Contains("link__editPictureInfo"))
{
try
{
string link__editPictureInfo = httpHelper.GetUniqueKeyBasedValue(ProfilePageSource, "link__editPictureInfo");
}
catch { }
}
string refere = string.Empty;
try
{
UploadPic(ref httpHelper, ProfilePageSource, refere);
}
catch { }
}
catch { }
}
}
catch { }
finally
{
Log("[ " + DateTime.Now + " ] => [ PROCESS COMPLETED ]");
Log("--------------------------------------------------------------------------------------------------------------------------------------------");
}
}