本文整理汇总了C#中IUserSession.GetFriendshipRequestsOutgoing方法的典型用法代码示例。如果您正苦于以下问题:C# IUserSession.GetFriendshipRequestsOutgoing方法的具体用法?C# IUserSession.GetFriendshipRequestsOutgoing怎么用?C# IUserSession.GetFriendshipRequestsOutgoing使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IUserSession
的用法示例。
在下文中一共展示了IUserSession.GetFriendshipRequestsOutgoing方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: DoFriendsFollowersTest
//.........这里部分代码省略.........
// 4
if (testSeq.Contains(4))
{
ConsoleOutput.PrintMessage("6.4 FriendsFollowers\\GetFriendshipRequestsIncoming", ConsoleColor.Gray);
long nextcursor = -1;
var ff4ListCount = 0;
do
{
var ff4List = await session.GetFriendshipRequestsIncoming(cursor: nextcursor);
if (ff4List.twitterFaulted)
{
successStatus = false;
break;
};
nextcursor = ff4List.next_cursor;
ConsoleOutput.PrintMessage(String.Format("Previous cursor: {0} Next cursor: {1}",
ff4List.previous_cursor, ff4List.next_cursor));
foreach (var l in ff4List.UserIDs)
{
ff4ListCount++;
ConsoleOutput.PrintMessage(String.Format("User ID: {0}", l));
}
} while (nextcursor != 0);
ConsoleOutput.PrintMessage(String.Format("Total Followers List Count: {0}",
ff4ListCount));
}
// 5
if (testSeq.Contains(5))
{
ConsoleOutput.PrintMessage("6.5 FriendsFollowers\\GetFriendshipRequestsOutgoing", ConsoleColor.Gray);
long nextcursor = -1;
var ff5ListCount = 0;
do
{
var ff5List = await session.GetFriendshipRequestsOutgoing(cursor: nextcursor);
if (ff5List.twitterFaulted)
{
successStatus = false;
break;
};
nextcursor = ff5List.next_cursor;
ConsoleOutput.PrintMessage(String.Format("Previous cursor: {0} Next cursor: {1}",
ff5List.previous_cursor, ff5List.next_cursor));
foreach (var l in ff5List.UserIDs)
{
ff5ListCount++;
ConsoleOutput.PrintMessage(String.Format("User ID: {0}", l));
}
} while (nextcursor != 0);
ConsoleOutput.PrintMessage(String.Format("Total Followers List Count: {0}",
ff5ListCount));
}
// 6
if (testSeq.Contains(6))
{
ConsoleOutput.PrintMessage("6.6 FriendsFollowers\\CreateFriendship", ConsoleColor.Gray);
var ff6 = await session.CreateFriendship("katyperry");
if (ff6.OK)
示例2: DoCombosTest
public async Task<bool> DoCombosTest(IUserSession session, List<int> testSeq)
{
var successStatus = true;
var trendToFollow = "";
try
{
// 1
if (testSeq.Contains(1))
{
//-33.884097,151.134796
ConsoleOutput.PrintMessage("11.1 Combo\\GetTrendsByLocation then Searchstream for 2 minutes", ConsoleColor.Gray);
var combo1 = await session.GetTrendsByLocation(latitude:-33.884097,longitude:151.134796);
if (combo1.OK)
{
trendToFollow = combo1[0].Name; // grab the first
foreach (var trnd in combo1)
{
ConsoleOutput.PrintMessage(
String.Format("Trend Test: {0}", trnd.Name));
}
}
else
{
successStatus = false;
throw new Exception("cannot trends");
}
var searchstream = session.StartSearchStream(track: trendToFollow);
searchstream.FoundTweets.Subscribe(t => ConsoleOutput.PrintTweet(t));
searchstream.Start();
Thread.Sleep(TimeSpan.FromMinutes(2));
searchstream.CancelStream.Cancel();
searchstream.Stop();
}
// 2
if (testSeq.Contains(2))
{
ConsoleOutput.PrintMessage("11.2 Combo\\GetFriendshipRequestsOutgoing, then hydrate User Details", ConsoleColor.Gray);
long nextcursor = -1;
var ff5ListCount = 0;
var userids2 = new List<long>();
do
{
var ff2List = await session.GetFriendshipRequestsOutgoing(cursor: nextcursor);
if (ff2List.twitterFaulted)
{
successStatus = false;
break;
};
nextcursor = ff2List.next_cursor;
ConsoleOutput.PrintMessage(String.Format("Previous cursor: {0} Next cursor: {1}",
ff2List.previous_cursor, ff2List.next_cursor));
foreach (var l in ff2List.UserIDs)
{
userids2.Add(l);
ff5ListCount++;
ConsoleOutput.PrintMessage(String.Format("User ID: {0}", l));
}
} while (nextcursor != 0);
ConsoleOutput.PrintMessage(String.Format("Total Outstanding Outgoing Friend Requests Count: {0}",
ff5ListCount));
if (userids2.Any())
{
var userlist2 = await session.GetUsersDetailsFull(userIds: userids2);
if (userlist2.OK)
{
foreach (var requsers in userlist2)
{
ConsoleOutput.PrintMessage(
String.Format("UserID: {0} // ScreenName: {1}", requsers.UserId, requsers.ScreenName));
}
}
else
{
successStatus = false;
}
}
}
// 3
if (testSeq.Contains(3))
{
ConsoleOutput.PrintMessage("11.3 Combo\\GetFriendshipRequestsIncoming, then hydrate User Details", ConsoleColor.Gray);
long nextcursor = -1;
var ff5ListCount = 0;
var userids3 = new List<long>();
do
{
var ff3List = await session.GetFriendshipRequestsIncoming(cursor: nextcursor);
//.........这里部分代码省略.........