Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ public T EnableTcpKeepAlive(TimeSpan keepAliveTime, TimeSpan keepAliveInterval)
public T DisableAutomaticProxyDetection(bool disable = true) => Assign(a => a._disableAutomaticProxyDetection = disable);

/// <summary>
/// Instead of following a c/go like error checking on response.IsValid always throw an exception
/// Instead of following a c/go like error checking on response.IsValid do throw an exception (except when <see cref="IApiCallDetails.SuccessOrKnownError"/> is false)
/// on the client when a call resulted in an exception on either the client or the Elasticsearch server.
/// <para>Reasons for such exceptions could be search parser errors, index missing exceptions, etc...</para>
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ public interface IConnectionConfigurationValues : IDisposable
bool SniffsOnStartup { get; }

/// <summary>
/// Instead of following a c/go like error checking on response.IsValid always throw an exception
/// Instead of following a c/go like error checking on response.IsValid do throw an exception (except when <see cref="IApiCallDetails.SuccessOrKnownError"/> is false)
/// on the client when a call resulted in an exception on either the client or the Elasticsearch server.
/// <para>Reasons for such exceptions could be search parser errors, index missing exceptions, etc...</para>
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public interface IRequestConfiguration
string RunAs { get; set; }

/// <summary>
/// Instead of following a c/go like error checking on response.IsValid always throw an exception
/// Instead of following a c/go like error checking on response.IsValid do throw an exception (except when <see cref="IApiCallDetails.SuccessOrKnownError"/> is false)
/// on the client when a call resulted in an exception on either the client or the Elasticsearch server.
/// <para>Reasons for such exceptions could be search parser errors, index missing exceptions, etc...</para>
/// </summary>
Expand Down