 | CouchbaseExtensionsListIndexesAsync Method |
Lists the indexes for the test bucket.
Namespace:
Couchbase
Assembly:
Neon.Couchbase (in Neon.Couchbase.dll) Version: 2.10.0
Syntaxpublic static Task<List<CouchbaseIndex>> ListIndexesAsync(
this IBucket bucket
)
<ExtensionAttribute>
Public Shared Function ListIndexesAsync (
bucket As IBucket
) As Task(Of List(Of CouchbaseIndex))
public:
[ExtensionAttribute]
static Task<List<CouchbaseIndex^>^>^ ListIndexesAsync(
IBucket^ bucket
)
[<ExtensionAttribute>]
static member ListIndexesAsync :
bucket : IBucket -> Task<List<CouchbaseIndex>>
Parameters
- bucket
- Type: IBucket
The Couchbase bucket.
Return Value
Type:
TaskListCouchbaseIndexThe list of index information.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IBucket. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also