Couchbase .NET SDK __CB_SDK_VERSION__

Show / Hide Table of Contents

Interface ITryLookupInResult

Provides an interface for supporting the state of a document if the server returns a PathNotFound status, as opposed to throwing a PathNotFoundException like in the regular GetAsync methods.

Inherited Members
ILookupInResult.Exists(int)
ILookupInResult.ContentAs<T>(int)
ILookupInResult.IndexOf(string)
ILookupInResult.IsDeleted
IResult.Cas
IDisposable.Dispose()
Namespace: Couchbase.KeyValue
Assembly: Couchbase.NetClient.dll
Syntax
public interface ITryLookupInResult : ILookupInResult, IResult, IDisposable

Properties

View Source

DocumentExists

If false, the document does not exist on the server for a given key.

Declaration
bool DocumentExists { get; }
Property Value
Type Description
bool
  • View Source
In this article
Back to top Copyright © 2020 Couchbase, Inc. All rights reserved.