Couchbase .NET SDK __CB_SDK_VERSION__

Show / Hide Table of Contents

Class RemoveOptions

Inheritance
object
RemoveOptions
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Couchbase.KeyValue
Assembly: Couchbase.NetClient.dll
Syntax
public class RemoveOptions

Constructors

View Source

RemoveOptions()

Declaration
public RemoveOptions()

Fields

View Source

DefaultReadOnly

Declaration
public static readonly RemoveOptions.ReadOnly DefaultReadOnly
Field Value
Type Description
RemoveOptions.ReadOnly

Methods

View Source

AsReadOnly()

Declaration
public RemoveOptions.ReadOnly AsReadOnly()
Returns
Type Description
RemoveOptions.ReadOnly
View Source

CancellationToken(CancellationToken)

A CancellationToken(CancellationToken) for cooperative cancellation.

Declaration
public RemoveOptions CancellationToken(CancellationToken token)
Parameters
Type Name Description
CancellationToken token
Returns
Type Description
RemoveOptions

An options instance for chaining.

View Source

Cas(ulong)

Compare and Set value for optimistic locking of a document.

Declaration
public RemoveOptions Cas(ulong cas)
Parameters
Type Name Description
ulong cas

A ulong value returned by the server in a previous operation.

Returns
Type Description
RemoveOptions

An options object for chaining.

View Source

Deconstruct(out ulong, out ReplicateTo, out PersistTo, out DurabilityLevel, out TimeSpan?, out CancellationToken, out IRetryStrategy?, out IRequestSpan?)

Declaration
public void Deconstruct(out ulong cas, out ReplicateTo replicateTo, out PersistTo persistTo, out DurabilityLevel durabilityLevel, out TimeSpan? timeout, out CancellationToken token, out IRetryStrategy? retryStrategy, out IRequestSpan? requestSpan)
Parameters
Type Name Description
ulong cas
ReplicateTo replicateTo
PersistTo persistTo
DurabilityLevel durabilityLevel
TimeSpan? timeout
CancellationToken token
IRetryStrategy retryStrategy
IRequestSpan requestSpan
View Source

Durability(DurabilityLevel)

The durability level required for persisting a JSON document across the cluster.

Declaration
public RemoveOptions Durability(DurabilityLevel durabilityLevel)
Parameters
Type Name Description
DurabilityLevel durabilityLevel

The Couchbase.KeyValue.RemoveOptions.DurabilityLevel required for persistance.

Returns
Type Description
RemoveOptions

An options instance for chaining.

View Source

Durability(PersistTo, ReplicateTo)

The durability level required for persisting a JSON document across the cluster.

Declaration
public RemoveOptions Durability(PersistTo persistTo, ReplicateTo replicateTo)
Parameters
Type Name Description
PersistTo persistTo

The durability requirement for persistence.

ReplicateTo replicateTo

The durability requirement for replication.

Returns
Type Description
RemoveOptions

An options instance for chaining.

View Source

RequestSpan(IRequestSpan)

Inject an external span which will be the parent span of the internal span(s).

Declaration
public RemoveOptions RequestSpan(IRequestSpan span)
Parameters
Type Name Description
IRequestSpan span

An IRequestSpan

Returns
Type Description
RemoveOptions

An options instance for chaining.

View Source

RetryStrategy(IRetryStrategy)

Inject a custom IRetryStrategy.

Declaration
public RemoveOptions RetryStrategy(IRetryStrategy retryStrategy)
Parameters
Type Name Description
IRetryStrategy retryStrategy
Returns
Type Description
RemoveOptions

An options instance for chaining.

View Source

Timeout(TimeSpan)

The time in which the operation will timeout if it does not complete.

Declaration
public RemoveOptions Timeout(TimeSpan timeout)
Parameters
Type Name Description
TimeSpan timeout
Returns
Type Description
RemoveOptions

An options instance for chaining.

  • View Source
In this article
Back to top Copyright © 2020 Couchbase, Inc. All rights reserved.