AngularAzureSearch.WebAPI.PartitionResolvers.SpilloverPartitionResolver.ResolveForRead C# (CSharp) Метод

ResolveForRead() публичный Метод

Returns the collections to read for a document. Here we return all collections.
public ResolveForRead ( object partitionKey ) : IEnumerable
partitionKey object The partition key for the read.
Результат IEnumerable
        public IEnumerable<string> ResolveForRead(object partitionKey)
        {
            this.CreateCollectionIfRequired();
            return this.CollectionLinks;
        }