public static DocumentFormattingOptions Of(IDocumentFormattingOptions options)
 {
     return(new DocumentFormattingOptions()
     {
         WorkDoneProgress = options.WorkDoneProgress
     });
 }
 public static DocumentFormattingOptions Of(IDocumentFormattingOptions options, IEnumerable <IHandlerDescriptor> descriptors)
 {
     return(new DocumentFormattingOptions()
     {
         WorkDoneProgress = options.WorkDoneProgress
     });
 }