9 references to EntryType
Microsoft.VisualStudio.LanguageServices.Razor (9)
Logging\RazorActivityLog.cs (9)
25private readonly AsyncBatchingWorkQueue<(EntryType, string)> _loggingQueue; 34_loggingQueue = new AsyncBatchingWorkQueue<(EntryType, string)>(TimeSpan.Zero, ProcessBatchAsync, _disposeTokenSource.Token); 48private async ValueTask ProcessBatchAsync(ImmutableArray<(EntryType, string)> items, CancellationToken token) 66EntryType.Error => __ACTIVITYLOG_ENTRYTYPE.ALE_ERROR, 67EntryType.Warning => __ACTIVITYLOG_ENTRYTYPE.ALE_WARNING, 68EntryType.Info => __ACTIVITYLOG_ENTRYTYPE.ALE_INFORMATION, 81_loggingQueue.AddWork((EntryType.Error, message)); 86_loggingQueue.AddWork((EntryType.Warning, message)); 91_loggingQueue.AddWork((EntryType.Info, message));