Class CreateCollectionOptions
Inheritance
CreateCollectionOptions
Assembly: Couchbase.NetClient.dll
Syntax
public class CreateCollectionOptions
Properties
|
Edit this page
View Source
Default
Declaration
public static CreateCollectionOptions Default { get; }
Property Value
|
Edit this page
View Source
DefaultReadOnly
Declaration
public static CreateCollectionOptions.ReadOnly DefaultReadOnly { get; }
Property Value
Methods
|
Edit this page
View Source
AsReadOnly()
Declaration
public CreateCollectionOptions.ReadOnly AsReadOnly()
Returns
|
Edit this page
View Source
CancellationToken(CancellationToken)
Allows to pass in a custom CancellationToken from a CancellationTokenSource.
Note that CancellationToken() takes precedence over Timeout(). If both CancellationToken and Timeout are set, the former will be used in the operation.
Declaration
public CreateCollectionOptions CancellationToken(CancellationToken token)
Parameters
Returns
|
Edit this page
View Source
Deconstruct(out CancellationToken, out TimeSpan)
Declaration
public void Deconstruct(out CancellationToken tokenValue, out TimeSpan timeoutValue)
Parameters
|
Edit this page
View Source
Timeout(TimeSpan)
Allows to set a Timeout for the operation.
Note that CancellationToken() takes precedence over Timeout(). If both CancellationToken and Timeout are set, the former will be used in the operation.
Declaration
public CreateCollectionOptions Timeout(TimeSpan timeout)
Parameters
Type |
Name |
Description |
TimeSpan |
timeout |
The duration of the Timeout. Set to 75s by default.
|
Returns