예제 #1
0
 public static List <Friend> GetFriends() => new List <Friend>(XboxConnection.GetFriends());
예제 #2
0
 public static async Task <List <Friend> > GetFriendsAsync() => await XboxConnection.GetFriendsAsync().ConfigureAwait(false);
예제 #3
0
 public static XboxProfile GetProfile(string Gamertag) => XboxConnection.GetProfile(Gamertag);
예제 #4
0
 public static XboxProfile GetProfile() => XboxConnection.GetProfile();
예제 #5
0
 public static async Task <XboxProfile> GetProfileAsync(string Gamertag) => await XboxConnection.GetProfileAsync(Gamertag).ConfigureAwait(false);
예제 #6
0
 public static async Task <XboxProfile> GetProfileAsync() => await XboxConnection.GetProfileAsync().ConfigureAwait(false);