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
/// Not Applicable, for when the Request has not yet been made
97
+
/// </summary>
98
+
None,
99
+
100
+
/// <summary>
101
+
/// <see cref="ResponseStatus"/> for when the request is passes as a result of <see cref="HttpResponseMessage.IsSuccessStatusCode"/> being true, or when the response is <see cref="HttpStatusCode.NotFound"/>
102
+
/// </summary>
103
+
Completed,
104
+
105
+
/// <summary>
106
+
/// <see cref="ResponseStatus"/> for when the request fails due as a result of <see cref="HttpResponseMessage.IsSuccessStatusCode"/> being false except for the case when the response is <see cref="HttpStatusCode.NotFound"/>
107
+
/// </summary>
108
+
Error,
109
+
110
+
/// <summary>
111
+
/// <see cref="ResponseStatus"/> for when the Operation is cancelled due to the request taking longer than the length of time prescribed by <see cref="RestRequest.Timeout"/> or due to the <see cref="HttpClient"/> timing out.
112
+
/// </summary>
113
+
TimedOut,
114
+
115
+
/// <summary>
116
+
/// <see cref="ResponseStatus"/> for when the Operation is cancelled, due to reasons other than <see cref="TimedOut"/>
0 commit comments