VectorSearchResults<TRecord> Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Contains the full list of search results for a vector search operation with metadata.
public:
VectorSearchResults(System::Collections::Generic::IAsyncEnumerable<Microsoft::Extensions::VectorData::VectorSearchResult<TRecord> ^> ^ results);
public VectorSearchResults(System.Collections.Generic.IAsyncEnumerable<Microsoft.Extensions.VectorData.VectorSearchResult<TRecord>> results);
new Microsoft.Extensions.VectorData.VectorSearchResults<'Record> : System.Collections.Generic.IAsyncEnumerable<Microsoft.Extensions.VectorData.VectorSearchResult<'Record>> -> Microsoft.Extensions.VectorData.VectorSearchResults<'Record>
Public Sub New (results As IAsyncEnumerable(Of VectorSearchResult(Of TRecord)))
Parameters
- results
- IAsyncEnumerable<VectorSearchResult<TRecord>>
The list of records returned by the search operation.