We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4646e4b commit 84f6d84Copy full SHA for 84f6d84
src/Elasticsearch.Net/Responses/ElasticsearchResponse.cs
@@ -60,7 +60,7 @@ public virtual bool TryGetServerError(out ServerError serverError)
60
return ServerError.TryCreate(stream, out serverError);
61
}
62
63
- protected bool TryGetServerErrorReason(out string reason)
+ protected virtual bool TryGetServerErrorReason(out string reason)
64
{
65
reason = null;
66
if (!TryGetServerError(out var serverError)) return false;
0 commit comments