Couchbase .NET SDK __CB_SDK_VERSION__

Show / Hide Table of Contents

Interface IBinaryCollection

Namespace: Couchbase.KeyValue
Assembly: Couchbase.NetClient.dll
Syntax
public interface IBinaryCollection

Methods

View Source

AppendAsync(string, byte[], AppendOptions?)

Declaration
Task<IMutationResult> AppendAsync(string id, byte[] value, AppendOptions? options = null)
Parameters
Type Name Description
string id
byte[] value
AppendOptions options
Returns
Type Description
Task<IMutationResult>
View Source

DecrementAsync(string, DecrementOptions?)

Declaration
Task<ICounterResult> DecrementAsync(string id, DecrementOptions? options = null)
Parameters
Type Name Description
string id
DecrementOptions options
Returns
Type Description
Task<ICounterResult>
View Source

IncrementAsync(string, IncrementOptions?)

Declaration
Task<ICounterResult> IncrementAsync(string id, IncrementOptions? options = null)
Parameters
Type Name Description
string id
IncrementOptions options
Returns
Type Description
Task<ICounterResult>
View Source

PrependAsync(string, byte[], PrependOptions?)

Declaration
Task<IMutationResult> PrependAsync(string id, byte[] value, PrependOptions? options = null)
Parameters
Type Name Description
string id
byte[] value
PrependOptions options
Returns
Type Description
Task<IMutationResult>

Extension Methods

BinaryCollectionExtensions.AppendAsync(IBinaryCollection, string, byte[])
BinaryCollectionExtensions.AppendAsync(IBinaryCollection, string, byte[], Action<AppendOptions>)
BinaryCollectionExtensions.DecrementAsync(IBinaryCollection, string)
BinaryCollectionExtensions.DecrementAsync(IBinaryCollection, string, Action<DecrementOptions>)
BinaryCollectionExtensions.IncrementAsync(IBinaryCollection, string)
BinaryCollectionExtensions.IncrementAsync(IBinaryCollection, string, Action<IncrementOptions>)
BinaryCollectionExtensions.PrependAsync(IBinaryCollection, string, byte[])
BinaryCollectionExtensions.PrependAsync(IBinaryCollection, string, byte[], Action<PrependOptions>)
  • View Source
In this article
Back to top Copyright © 2020 Couchbase, Inc. All rights reserved.