Class UpdateResponse<TDocument>
Inherited Members
Namespace: OpenSearch.Client
Assembly: OpenSearch.Client.dll
Syntax
[DataContract]
public class UpdateResponse<TDocument> : WriteResponseBase, IUpdateResponse<TDocument>, IResponse, IOpenSearchResponse where TDocument : class
Type Parameters
Name | Description |
---|---|
TDocument |
Properties
| Edit this page View SourceGet
Declaration
[DataMember(Name = "get")]
public IInlineGet<TDocument> Get { get; }
Property Value
Type | Description |
---|---|
IInlineGet<TDocument> |
IsValid
Checks if a response is functionally valid or not. This is a OpenSearch.Client abstraction to have a single property to check whether there was something wrong with a request.
For instance, an OpenSearch bulk response always returns 200 and individual bulk items may fail, IsValid will be false in that case.
You can also configure the client to always throw an OpenSearchClientException using ThrowExceptions if the response is not valid
Declaration
public override bool IsValid { get; }
Property Value
Type | Description |
---|---|
bool |