You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: NetStone/LodestoneClient.cs
+14
Original file line number
Diff line number
Diff line change
@@ -95,6 +95,7 @@ public static async Task<LodestoneClient> GetClientAsync(IGameDataProvider? game
95
95
/// Get a character by its Lodestone ID.
96
96
/// </summary>
97
97
/// <param name="id">The ID of the character.</param>
98
+
/// <exception cref="HttpRequestException"> The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
98
99
/// <returns><see cref="LodestoneCharacter"/> class containing information about the character.</returns>
@@ -104,6 +105,7 @@ public static async Task<LodestoneClient> GetClientAsync(IGameDataProvider? game
104
105
/// You can also get this from the character directly by calling <see cref="LodestoneCharacter.GetClassJobInfo()"/>.
105
106
/// </summary>
106
107
/// <param name="id">The ID of the character.</param>
108
+
/// <exception cref="HttpRequestException"> The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
107
109
/// <returns><see cref="CharacterClassJob"/> class containing information about the characters' classes and jobs.</returns>
@@ -114,6 +116,7 @@ public static async Task<LodestoneClient> GetClientAsync(IGameDataProvider? game
114
116
/// </summary>
115
117
/// <param name="id">The ID of the character.</param>
116
118
/// <param name="page">The number of the page that should be fetched.</param>
119
+
/// <exception cref="HttpRequestException"> The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
117
120
/// <returns><see cref="CharacterAchievementPage"/> class containing information about the characters' achievements.</returns>
/// You can also get this from the character directly by calling <see cref="LodestoneCharacter.GetMounts()"/>.
126
129
/// </summary>
127
130
/// <param name="id">The ID of the character.</param>
131
+
/// <exception cref="HttpRequestException"> The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
128
132
/// <returns><see cref="CharacterCollectable"/> class containing information about the characters' mounts.</returns>
/// You can also get this from the character directly by calling <see cref="LodestoneCharacter.GetMinions()"/>.
137
141
/// </summary>
138
142
/// <param name="id">The ID of the character.</param>
143
+
/// <exception cref="HttpRequestException"> The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
139
144
/// <returns><see cref="CharacterCollectable"/> class containing information about the characters' minions.</returns>
/// <param name="page">The page of search results to fetch.</param>
155
+
/// <exception cref="HttpRequestException"> The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
/// <param name="id">The ID of the cross world linkshell.</param>
162
168
/// <param name="page"></param>
169
+
/// <exception cref="HttpRequestException"> The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
163
170
/// <returns><see cref="LodestoneCrossworldLinkshell"/> class containing information about the cross world link shell</returns>
/// <param name="page">The page of search results to fetch.</param>
180
+
/// <exception cref="HttpRequestException"> The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
/// <param name="id">The ID of the linkshell.</param>
182
190
/// <param name="page"></param>
191
+
/// <exception cref="HttpRequestException"> The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
183
192
/// <returns><see cref="LodestoneCrossworldLinkshell"/> class containing information about the cross world link shell</returns>
/// <param name="page">The page of search results to fetch.</param>
202
+
/// <exception cref="HttpRequestException"> The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
/// <param name="id">The ID of the character.</param>
216
+
/// <exception cref="HttpRequestException"> The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
206
217
/// <returns><see cref="LodestoneFreeCompany"/> class containing information about the character.</returns>
/// <param name="id">The ID of the free company.</param>
214
225
/// <param name="page">The page of members to fetch.</param>
226
+
/// <exception cref="HttpRequestException"> The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
215
227
/// <returns><see cref="FreeCompanyMembers"/> class containing information about FC members.</returns>
/// <param name="page">The page of search results to fetch.</param>
237
+
/// <exception cref="HttpRequestException"> The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
/// <param name="createParseable">Func creating the LodestoneParseable.</param>
238
251
/// <param name="agent">The user agent to use for the request.</param>
252
+
/// <exception cref="HttpRequestException"> The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
239
253
/// <returns>The instantiated LodestoneParseable in case of success.</returns>
0 commit comments