using System;
///
/// Interface to describe parameters for requests that support streaming results.
///
/// See the Language Server Protocol specification for additional information.
///
/// The type to be reported by .
public interface IPartialResultParams
{
///
/// An optional token that a server can use to report partial results (e.g. streaming) to the client.
///
public ProgressToken? PartialResultToken { get; set; }
}