CouchbaseBucket.InsertAsync<T> Method (List<IDocument<T>>)Couchbase .NET SDK 2.3.3
Inserts a list of JSON documents asynchronously, each document failing if it already exists.

Namespace: Couchbase
Assembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 0.0.0.0 (0.0.0.0)
Syntax
public Task<IDocumentResult<T>[]> InsertAsync<T>(
	List<IDocument<T>> documents
)

Parameters

documents
Type: System.Collections.Generic.List<IDocument<T>>
The documents.
Type Parameters
T

[Missing <typeparam name="T"/> documentation for "M:Couchbase.CouchbaseBucket.InsertAsync``1(System.Collections.Generic.List{Couchbase.IDocument{``0}})"]

Return Value

Type: Task<IDocumentResult<T>[]>

[Missing <returns> documentation for "M:Couchbase.CouchbaseBucket.InsertAsync``1(System.Collections.Generic.List{Couchbase.IDocument{``0}})"]

Implements

IBucket.InsertAsync<T>(List<IDocument<T>>)
See Also