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
where T : class => this.DoRequestAsync<T>(HEAD, Url($"{index.NotNull("index")}/{type.NotNull("type")}/{id.NotNull("id")}"), cancellationToken, null, _params(requestParameters, allow404: true));
1992
1992
1993
-
///<summary>Represents a HEAD on /{index}/{type}/{id}/_source
1994
-
///<para></para>Returns: ElasticsearchResponse<T> where the behavior depends on the type of T:
1995
-
///<para> - T, an object you own that the elasticsearch response will be deserialized to </para>
1996
-
///<para> - byte[], no deserialization, but the response stream will be closed </para>
1997
-
///<para> - Stream, no deserialization, response stream is your responsibility </para>
1998
-
///<para> - VoidResponse, no deserialization, response stream never read and closed </para>
1999
-
///<para> - DynamicDictionary, a dynamic aware dictionary that can be safely traversed to any depth </para>
where T : class => this.DoRequest<T>(HEAD, Url($"{index.NotNull("index")}/{type.NotNull("type")}/{id.NotNull("id")}/_source"), null, _params(requestParameters));
2008
-
2009
-
///<summary>Represents a HEAD on /{index}/{type}/{id}/_source
2010
-
///<para></para>Returns: A task of ElasticsearchResponse<T> where the behaviour depends on the type of T:
2011
-
///<para> - T, an object you own that the elasticsearch response will be deserialized to </para>
2012
-
///<para> - byte[], no deserialization, but the response stream will be closed </para>
2013
-
///<para> - Stream, no deserialization, response stream is your responsibility </para>
2014
-
///<para> - VoidResponse, no deserialization, response stream never read and closed </para>
2015
-
///<para> - DynamicDictionary, a dynamic aware dictionary that can be safely traversed to any depth </para>
where T : class => this.DoRequestAsync<T>(HEAD, Url($"{index.NotNull("index")}/{type.NotNull("type")}/{id.NotNull("id")}/_source"), cancellationToken, null, _params(requestParameters));
2024
-
2025
1993
///<summary>Represents a GET on /{index}/{type}/{id}/_explain
2026
1994
///<para></para>Returns: ElasticsearchResponse<T> where the behavior depends on the type of T:
2027
1995
///<para> - T, an object you own that the elasticsearch response will be deserialized to </para>
0 commit comments