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: src/Nest/CommonAbstractions/Response/ResponseBase.cs
+3-9Lines changed: 3 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -21,23 +21,17 @@ public interface IResponse : IBodyWithApiCallDetails
21
21
[JsonIgnore]
22
22
boolIsValid{get;}
23
23
24
-
/// <summary>
25
-
/// Returns the <see cref="IApiCallDetails"/> diagnostic information
26
-
/// </summary>
27
-
[JsonIgnore]
28
-
newIApiCallDetailsApiCall{get;}
29
-
30
24
/// <summary>
31
25
/// If the response results in an error on elasticsearch's side an <pre>error</pre> element will be returned, this is mapped to <see cref="ServerError"/> in NEST.
32
-
/// <para>This property is a shortcut to <see cref="ApiCall"/>'s <see cref="IApiCallDetails.ServerError"/> and is possibly set when <see cref="IsValid"/> is false depending on the cause of the error</para>
26
+
/// <para>This property is a shortcut to <see cref="IBodyWithApiCallDetails.ApiCall"/>'s <see cref="IApiCallDetails.ServerError"/> and is possibly set when <see cref="IsValid"/> is false depending on the cause of the error</para>
33
27
/// <para>You can also configure the client to always throw an <see cref="ElasticsearchClientException"/> using <see cref="IConnectionConfigurationValues.ThrowExceptions"/> if the response is not valid</para>
34
28
/// </summary>
35
29
[JsonIgnore]
36
30
ServerErrorServerError{get;}
37
31
38
32
/// <summary>
39
33
/// If the request resulted in an exception on the client side this will hold the exception that was thrown.
40
-
/// <para>This property is a shortcut to <see cref="ApiCall"/>'s <see cref="IApiCallDetails.OriginalException"/> and is possibly set when <see cref="IsValid"/> is false depending on the cause of the error</para>
34
+
/// <para>This property is a shortcut to <see cref="IBodyWithApiCallDetails.ApiCall"/>'s <see cref="IApiCallDetails.OriginalException"/> and is possibly set when <see cref="IsValid"/> is false depending on the cause of the error</para>
41
35
/// <para>You can also configure the client to always throw an <see cref="ElasticsearchClientException"/> using <see cref="IConnectionConfigurationValues.ThrowExceptions"/> if the response is not valid</para>
42
36
/// </summary>
43
37
[JsonIgnore]
@@ -59,7 +53,7 @@ public abstract class ResponseBase : IResponse
0 commit comments