Couchbase.N1QL.QueryRequest.UseStreaming C# (CSharp) Méthode

UseStreaming() public méthode

Uses the streaming API for the returned results. This is useful for large result sets in that it limits the working size of the query and helps reduce the possibility of a OutOfMemoryException from occurring.
public UseStreaming ( bool streaming ) : IQueryRequest
streaming bool if set to true streams the results as you iterate through the response.
Résultat IQueryRequest
        public IQueryRequest UseStreaming(bool streaming)
        {
            _useStreaming = streaming;
            return this;
        }