1 type derived from NotImplementedException
Microsoft.Maui.Essentials (1)
5651 instantiations of NotImplementedException
Analyzer.Utilities.UnitTests (12)
aspire (3)
Aspire.Azure.AI.Inference (2)
Aspire.Azure.AI.Inference.Tests (1)
Aspire.Azure.AI.OpenAI (1)
Aspire.Azure.AI.OpenAI.Tests (1)
Aspire.Azure.Data.Tables.Tests (1)
Aspire.Azure.Messaging.EventHubs.Tests (6)
Aspire.Azure.Messaging.ServiceBus.Tests (1)
Aspire.Azure.Messaging.WebPubSub.Tests (1)
Aspire.Azure.Search.Documents.Tests (1)
Aspire.Azure.Security.KeyVault (2)
Aspire.Azure.Security.KeyVault.Tests (7)
Aspire.Azure.Storage.Blobs.Tests (1)
Aspire.Azure.Storage.Files.DataLake.Tests (1)
Aspire.Azure.Storage.Queues.Tests (1)
Aspire.Cli.Tests (49)
Aspire.Confluent.Kafka.Tests (4)
Aspire.Dashboard (5)
Aspire.Dashboard.Components.Tests (60)
tests\Shared\TestDialogService.cs (38)
26public Task CloseAsync(IDialogReference dialog) => throw new NotImplementedException();
27public Task CloseAsync(IDialogReference dialog, DialogResult result) => throw new NotImplementedException();
28public EventCallback<DialogResult> CreateDialogCallback(object receiver, Func<DialogResult, Task> callback) => throw new NotImplementedException();
29public void ShowConfirmation(object receiver, Func<DialogResult, Task> callback, string message, string primaryText = "Yes", string secondaryText = "No", string? title = null) => throw new NotImplementedException();
30public Task<IDialogReference> ShowConfirmationAsync(object receiver, Func<DialogResult, Task> callback, string message, string primaryText = "Yes", string secondaryText = "No", string? title = null) => throw new NotImplementedException();
31public Task<IDialogReference> ShowConfirmationAsync(string message, string primaryText = "Yes", string secondaryText = "No", string? title = null) => throw new NotImplementedException();
32public void ShowDialog<TDialog, TData>(DialogParameters<TData> parameters) where TDialog : IDialogContentComponent<TData> where TData : class => throw new NotImplementedException();
33public void ShowDialog<TData>(Type dialogComponent, TData data, DialogParameters parameters) where TData : class => throw new NotImplementedException();
56public Task<IDialogReference> ShowDialogAsync<TDialog>(DialogParameters parameters) where TDialog : IDialogContentComponent => throw new NotImplementedException();
57public Task<IDialogReference> ShowDialogAsync(RenderFragment renderFragment, DialogParameters dialogParameters) => throw new NotImplementedException();
58public Task<IDialogReference> ShowDialogAsync<TDialog, TData>(DialogParameters<TData> parameters) where TDialog : IDialogContentComponent<TData> where TData : class => throw new NotImplementedException();
59public void ShowError(string message, string? title = null, string? primaryText = null) => throw new NotImplementedException();
60public Task<IDialogReference> ShowErrorAsync(string message, string? title = null, string? primaryText = null) => throw new NotImplementedException();
61public void ShowInfo(string message, string? title = null, string? primaryText = null) => throw new NotImplementedException();
62public Task<IDialogReference> ShowInfoAsync(string message, string? title = null, string? primaryText = null) => throw new NotImplementedException();
63public void ShowMessageBox(DialogParameters<MessageBoxContent> parameters) => throw new NotImplementedException();
75public void ShowPanel<TDialog, TData>(DialogParameters<TData> parameters) where TDialog : IDialogContentComponent<TData> where TData : class => throw new NotImplementedException();
76public void ShowPanel<TData>(Type dialogComponent, DialogParameters<TData> parameters) where TData : class => throw new NotImplementedException();
77public Task<IDialogReference> ShowPanelAsync<TData>(Type dialogComponent, TData data, DialogParameters parameters) where TData : class => throw new NotImplementedException();
78public Task<IDialogReference> ShowPanelAsync<TDialog>(object data, DialogParameters parameters) where TDialog : IDialogContentComponent => throw new NotImplementedException();
79public Task<IDialogReference> ShowPanelAsync<TDialog>(DialogParameters parameters) where TDialog : IDialogContentComponent => throw new NotImplementedException();
80public Task<IDialogReference> ShowPanelAsync<TDialog, TData>(DialogParameters<TData> parameters) where TDialog : IDialogContentComponent<TData> where TData : class => throw new NotImplementedException();
81public Task<IDialogReference> ShowPanelAsync<TData>(Type dialogComponent, DialogParameters<TData> parameters) where TData : class => throw new NotImplementedException();
82public void ShowSplashScreen(object receiver, Func<DialogResult, Task> callback, DialogParameters<SplashScreenContent> parameters) => throw new NotImplementedException();
83public void ShowSplashScreen<T>(object receiver, Func<DialogResult, Task> callback, DialogParameters<SplashScreenContent> parameters) where T : IDialogContentComponent<SplashScreenContent> => throw new NotImplementedException();
84public void ShowSplashScreen(Type component, object receiver, Func<DialogResult, Task> callback, DialogParameters<SplashScreenContent> parameters) => throw new NotImplementedException();
85public Task<IDialogReference> ShowSplashScreenAsync(object receiver, Func<DialogResult, Task> callback, DialogParameters<SplashScreenContent> parameters) => throw new NotImplementedException();
86public Task<IDialogReference> ShowSplashScreenAsync(DialogParameters<SplashScreenContent> parameters) => throw new NotImplementedException();
87public Task<IDialogReference> ShowSplashScreenAsync<T>(object receiver, Func<DialogResult, Task> callback, DialogParameters<SplashScreenContent> parameters) where T : IDialogContentComponent<SplashScreenContent> => throw new NotImplementedException();
88public Task<IDialogReference> ShowSplashScreenAsync<T>(DialogParameters<SplashScreenContent> parameters) where T : IDialogContentComponent<SplashScreenContent> => throw new NotImplementedException();
89public Task<IDialogReference> ShowSplashScreenAsync(Type component, object receiver, Func<DialogResult, Task> callback, DialogParameters<SplashScreenContent> parameters) => throw new NotImplementedException();
90public Task<IDialogReference> ShowSplashScreenAsync(Type component, DialogParameters<SplashScreenContent> parameters) => throw new NotImplementedException();
91public void ShowSuccess(string message, string? title = null, string? primaryText = null) => throw new NotImplementedException();
92public Task<IDialogReference> ShowSuccessAsync(string message, string? title = null, string? primaryText = null) => throw new NotImplementedException();
93public void ShowWarning(string message, string? title = null, string? primaryText = null) => throw new NotImplementedException();
94public Task<IDialogReference> ShowWarningAsync(string message, string? title = null, string? primaryText = null) => throw new NotImplementedException();
95public void UpdateDialog<TData>(string id, DialogParameters<TData> parameters) where TData : class => throw new NotImplementedException();
96public Task<IDialogReference?> UpdateDialogAsync<TData>(string id, DialogParameters<TData> parameters) where TData : class => throw new NotImplementedException();
Aspire.Dashboard.Tests (65)
tests\Shared\TestDialogService.cs (38)
26public Task CloseAsync(IDialogReference dialog) => throw new NotImplementedException();
27public Task CloseAsync(IDialogReference dialog, DialogResult result) => throw new NotImplementedException();
28public EventCallback<DialogResult> CreateDialogCallback(object receiver, Func<DialogResult, Task> callback) => throw new NotImplementedException();
29public void ShowConfirmation(object receiver, Func<DialogResult, Task> callback, string message, string primaryText = "Yes", string secondaryText = "No", string? title = null) => throw new NotImplementedException();
30public Task<IDialogReference> ShowConfirmationAsync(object receiver, Func<DialogResult, Task> callback, string message, string primaryText = "Yes", string secondaryText = "No", string? title = null) => throw new NotImplementedException();
31public Task<IDialogReference> ShowConfirmationAsync(string message, string primaryText = "Yes", string secondaryText = "No", string? title = null) => throw new NotImplementedException();
32public void ShowDialog<TDialog, TData>(DialogParameters<TData> parameters) where TDialog : IDialogContentComponent<TData> where TData : class => throw new NotImplementedException();
33public void ShowDialog<TData>(Type dialogComponent, TData data, DialogParameters parameters) where TData : class => throw new NotImplementedException();
56public Task<IDialogReference> ShowDialogAsync<TDialog>(DialogParameters parameters) where TDialog : IDialogContentComponent => throw new NotImplementedException();
57public Task<IDialogReference> ShowDialogAsync(RenderFragment renderFragment, DialogParameters dialogParameters) => throw new NotImplementedException();
58public Task<IDialogReference> ShowDialogAsync<TDialog, TData>(DialogParameters<TData> parameters) where TDialog : IDialogContentComponent<TData> where TData : class => throw new NotImplementedException();
59public void ShowError(string message, string? title = null, string? primaryText = null) => throw new NotImplementedException();
60public Task<IDialogReference> ShowErrorAsync(string message, string? title = null, string? primaryText = null) => throw new NotImplementedException();
61public void ShowInfo(string message, string? title = null, string? primaryText = null) => throw new NotImplementedException();
62public Task<IDialogReference> ShowInfoAsync(string message, string? title = null, string? primaryText = null) => throw new NotImplementedException();
63public void ShowMessageBox(DialogParameters<MessageBoxContent> parameters) => throw new NotImplementedException();
75public void ShowPanel<TDialog, TData>(DialogParameters<TData> parameters) where TDialog : IDialogContentComponent<TData> where TData : class => throw new NotImplementedException();
76public void ShowPanel<TData>(Type dialogComponent, DialogParameters<TData> parameters) where TData : class => throw new NotImplementedException();
77public Task<IDialogReference> ShowPanelAsync<TData>(Type dialogComponent, TData data, DialogParameters parameters) where TData : class => throw new NotImplementedException();
78public Task<IDialogReference> ShowPanelAsync<TDialog>(object data, DialogParameters parameters) where TDialog : IDialogContentComponent => throw new NotImplementedException();
79public Task<IDialogReference> ShowPanelAsync<TDialog>(DialogParameters parameters) where TDialog : IDialogContentComponent => throw new NotImplementedException();
80public Task<IDialogReference> ShowPanelAsync<TDialog, TData>(DialogParameters<TData> parameters) where TDialog : IDialogContentComponent<TData> where TData : class => throw new NotImplementedException();
81public Task<IDialogReference> ShowPanelAsync<TData>(Type dialogComponent, DialogParameters<TData> parameters) where TData : class => throw new NotImplementedException();
82public void ShowSplashScreen(object receiver, Func<DialogResult, Task> callback, DialogParameters<SplashScreenContent> parameters) => throw new NotImplementedException();
83public void ShowSplashScreen<T>(object receiver, Func<DialogResult, Task> callback, DialogParameters<SplashScreenContent> parameters) where T : IDialogContentComponent<SplashScreenContent> => throw new NotImplementedException();
84public void ShowSplashScreen(Type component, object receiver, Func<DialogResult, Task> callback, DialogParameters<SplashScreenContent> parameters) => throw new NotImplementedException();
85public Task<IDialogReference> ShowSplashScreenAsync(object receiver, Func<DialogResult, Task> callback, DialogParameters<SplashScreenContent> parameters) => throw new NotImplementedException();
86public Task<IDialogReference> ShowSplashScreenAsync(DialogParameters<SplashScreenContent> parameters) => throw new NotImplementedException();
87public Task<IDialogReference> ShowSplashScreenAsync<T>(object receiver, Func<DialogResult, Task> callback, DialogParameters<SplashScreenContent> parameters) where T : IDialogContentComponent<SplashScreenContent> => throw new NotImplementedException();
88public Task<IDialogReference> ShowSplashScreenAsync<T>(DialogParameters<SplashScreenContent> parameters) where T : IDialogContentComponent<SplashScreenContent> => throw new NotImplementedException();
89public Task<IDialogReference> ShowSplashScreenAsync(Type component, object receiver, Func<DialogResult, Task> callback, DialogParameters<SplashScreenContent> parameters) => throw new NotImplementedException();
90public Task<IDialogReference> ShowSplashScreenAsync(Type component, DialogParameters<SplashScreenContent> parameters) => throw new NotImplementedException();
91public void ShowSuccess(string message, string? title = null, string? primaryText = null) => throw new NotImplementedException();
92public Task<IDialogReference> ShowSuccessAsync(string message, string? title = null, string? primaryText = null) => throw new NotImplementedException();
93public void ShowWarning(string message, string? title = null, string? primaryText = null) => throw new NotImplementedException();
94public Task<IDialogReference> ShowWarningAsync(string message, string? title = null, string? primaryText = null) => throw new NotImplementedException();
95public void UpdateDialog<TData>(string id, DialogParameters<TData> parameters) where TData : class => throw new NotImplementedException();
96public Task<IDialogReference?> UpdateDialogAsync<TData>(string id, DialogParameters<TData> parameters) where TData : class => throw new NotImplementedException();
Aspire.Hosting (16)
Aspire.Hosting.Azure (3)
Aspire.Hosting.Azure.ServiceBus (2)
Aspire.Hosting.Azure.Tests (3)
Aspire.Hosting.DevTunnels.Tests (8)
Aspire.Hosting.RemoteHost.Tests (5)
Aspire.Hosting.Testing.Tests (1)
Aspire.Hosting.Tests (16)
Aspire.Hosting.Yarp (1)
Aspire.Microsoft.Azure.Cosmos.Tests (2)
Aspire.Microsoft.Data.SqlClient.Tests (1)
Aspire.Microsoft.EntityFrameworkCore.Cosmos.Tests (2)
Aspire.Microsoft.EntityFrameworkCore.SqlServer.Tests (1)
Aspire.Milvus.Client.Tests (2)
Aspire.MongoDB.Driver.Tests (1)
Aspire.MongoDB.Driver.v2.Tests (1)
Aspire.MongoDB.EntityFrameworkCore.Tests (1)
Aspire.NATS.Net.Tests (1)
Aspire.OpenAI.Tests (1)
Aspire.Oracle.EntityFrameworkCore.Tests (1)
Aspire.Playground.Tests (1)
Aspire.Qdrant.Client.Tests (2)
Aspire.RabbitMQ.Client.Tests (1)
Aspire.RabbitMQ.Client.v6.Tests (1)
Aspire.StackExchange.Redis.Tests (1)
Aspire.Templates.Tests (1)
BasicWebSite (6)
BinaryFormatTests (18)
ComDisabled.Tests (34)
ClipboardComTests.cs (13)
83int ComTypes.IDataObject.DAdvise(ref ComTypes.FORMATETC pFormatetc, ComTypes.ADVF advf, ComTypes.IAdviseSink adviseSink, out int connection) => throw new NotImplementedException();
84void ComTypes.IDataObject.DUnadvise(int connection) => throw new NotImplementedException();
85int ComTypes.IDataObject.EnumDAdvise(out ComTypes.IEnumSTATDATA enumAdvise) => throw new NotImplementedException();
98throw new NotImplementedException();
101int ComTypes.IDataObject.GetCanonicalFormatEtc(ref ComTypes.FORMATETC formatIn, out ComTypes.FORMATETC formatOut) => throw new NotImplementedException();
105void ComTypes.IDataObject.GetData(ref ComTypes.FORMATETC format, out ComTypes.STGMEDIUM medium) => throw new NotImplementedException();
106void ComTypes.IDataObject.GetDataHere(ref ComTypes.FORMATETC format, ref ComTypes.STGMEDIUM medium) => throw new NotImplementedException();
112int ComTypes.IDataObject.QueryGetData(ref ComTypes.FORMATETC format) => throw new NotImplementedException();
113void IDataObject.SetData(string format, bool autoConvert, object? data) => throw new NotImplementedException();
114void IDataObject.SetData(string format, object? data) => throw new NotImplementedException();
115void IDataObject.SetData(Type format, object? data) => throw new NotImplementedException();
116void IDataObject.SetData(object? data) => throw new NotImplementedException();
117void ComTypes.IDataObject.SetData(ref ComTypes.FORMATETC formatIn, ref ComTypes.STGMEDIUM medium, bool release) => throw new NotImplementedException();
DataObjectComTests.cs (21)
74public object GetData(string format, bool autoConvert) => throw new NotImplementedException();
75public object GetData(string format) => throw new NotImplementedException();
76public object GetData(Type format) => throw new NotImplementedException();
77public bool GetDataPresent(string format, bool autoConvert) => throw new NotImplementedException();
78public bool GetDataPresent(string format) => throw new NotImplementedException();
79public bool GetDataPresent(Type format) => throw new NotImplementedException();
80public string[] GetFormats(bool autoConvert) => throw new NotImplementedException();
81public string[] GetFormats() => throw new NotImplementedException();
82public void SetData(string format, bool autoConvert, object data) => throw new NotImplementedException();
83public void SetData(string format, object data) => throw new NotImplementedException();
84public void SetData(Type format, object data) => throw new NotImplementedException();
85public void SetData(object data) => throw new NotImplementedException();
90public int DAdvise(ref FORMATETC pFormatetc, ADVF advf, IAdviseSink adviseSink, out int connection) => throw new NotImplementedException();
91public void DUnadvise(int connection) => throw new NotImplementedException();
92public int EnumDAdvise(out IEnumSTATDATA enumAdvise) => throw new NotImplementedException();
93public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();
94public int GetCanonicalFormatEtc(ref FORMATETC formatIn, out FORMATETC formatOut) => throw new NotImplementedException();
95public void GetData(ref FORMATETC format, out STGMEDIUM medium) => throw new NotImplementedException();
96public void GetDataHere(ref FORMATETC format, ref STGMEDIUM medium) => throw new NotImplementedException();
97public int QueryGetData(ref FORMATETC format) => throw new NotImplementedException();
98public void SetData(ref FORMATETC formatIn, ref STGMEDIUM medium, bool release) => throw new NotImplementedException();
ConfigurationSchemaGenerator.Tests (1)
dotnet-openapi (1)
dotnet-svcutil-lib (150)
DynamicSchemes (1)
FormatterWebSite (2)
GenerateDocumentationAndConfigFiles (43)
http2cat (1)
IIS.FunctionalTests (1)
IIS.LongTests (1)
IIS.NewHandler.FunctionalTests (1)
IISExpress.FunctionalTests (1)
illink (20)
ILLink.RoslynAnalyzer (11)
InMemory.FunctionalTests (24)
Interop.FunctionalTests (1)
InteropWebsite (1)
Metrics (28)
Metrics.Legacy (28)
Microsoft.Arcade.Common (2)
Microsoft.Arcade.Test.Common (12)
Microsoft.AspNetCore.Antiforgery.Test (3)
Microsoft.AspNetCore.Authentication (5)
Microsoft.AspNetCore.Authentication.Abstractions (1)
Microsoft.AspNetCore.Authentication.BearerToken (1)
Microsoft.AspNetCore.Authentication.Core.Test (16)
Microsoft.AspNetCore.Authentication.OpenIdConnect (2)
Microsoft.AspNetCore.Authentication.Test (84)
Microsoft.AspNetCore.Authorization.Test (12)
Microsoft.AspNetCore.Components (4)
Microsoft.AspNetCore.Components.Analyzers.Tests (6)
Microsoft.AspNetCore.Components.Authorization.Tests (3)
Microsoft.AspNetCore.Components.Endpoints (3)
Microsoft.AspNetCore.Components.Endpoints.Tests (48)
Microsoft.AspNetCore.Components.Forms.Tests (1)
Microsoft.AspNetCore.Components.Performance (1)
Microsoft.AspNetCore.Components.QuickGrid.Tests (1)
Microsoft.AspNetCore.Components.SdkAnalyzers.Tests (6)
Microsoft.AspNetCore.Components.Server (1)
Microsoft.AspNetCore.Components.Server.Tests (16)
Microsoft.AspNetCore.Components.Tests (95)
Microsoft.AspNetCore.Components.Web (1)
Microsoft.AspNetCore.Components.Web.Tests (4)
Microsoft.AspNetCore.Components.WebAssembly.Tests (6)
Microsoft.AspNetCore.Components.WebView.Maui (1)
Microsoft.AspNetCore.Components.WebView.Test (4)
Microsoft.AspNetCore.CookiePolicy.Test (4)
Microsoft.AspNetCore.DataProtection.Extensions (1)
Microsoft.AspNetCore.DataProtection.Tests (22)
Microsoft.AspNetCore.Diagnostics.Abstractions (1)
Microsoft.AspNetCore.Diagnostics.Tests (7)
Microsoft.AspNetCore.Grpc.JsonTranscoding (3)
Microsoft.AspNetCore.HostFiltering.Tests (1)
Microsoft.AspNetCore.Hosting.Tests (3)
Microsoft.AspNetCore.Html.Abstractions.Tests (1)
Microsoft.AspNetCore.Http.Abstractions (6)
Microsoft.AspNetCore.Http.Abstractions.Tests (10)
Microsoft.AspNetCore.Http.Connections.Tests (14)
Microsoft.AspNetCore.Http.Microbenchmarks (17)
Microsoft.AspNetCore.Http.RequestDelegateGenerator (3)
Microsoft.AspNetCore.Http.Results.Tests (46)
ResultsOfTTests.Generated.cs (5)
208Results<ProvidesMetadataResult1, ProvidesMetadataResult2> MyApi() { throw new NotImplementedException(); }
487Results<ProvidesMetadataResult1, ProvidesMetadataResult2, ProvidesMetadataResult3> MyApi() { throw new NotImplementedException(); }
843Results<ProvidesMetadataResult1, ProvidesMetadataResult2, ProvidesMetadataResult3, ProvidesMetadataResult4> MyApi() { throw new NotImplementedException(); }
1284Results<ProvidesMetadataResult1, ProvidesMetadataResult2, ProvidesMetadataResult3, ProvidesMetadataResult4, ProvidesMetadataResult5> MyApi() { throw new NotImplementedException(); }
1818Results<ProvidesMetadataResult1, ProvidesMetadataResult2, ProvidesMetadataResult3, ProvidesMetadataResult4, ProvidesMetadataResult5, ProvidesMetadataResult6> MyApi() { throw new NotImplementedException(); }
Microsoft.AspNetCore.Http.Tests (4)
Microsoft.AspNetCore.HttpLogging (1)
Microsoft.AspNetCore.Identity (2)
Microsoft.AspNetCore.Identity.FunctionalTests (2)
Microsoft.AspNetCore.Identity.Test (118)
Microsoft.AspNetCore.Identity.UI (98)
Microsoft.AspNetCore.InternalTesting (3)
Microsoft.AspNetCore.JsonPatch.Tests (2)
Microsoft.AspNetCore.Mvc.Abstractions (3)
Microsoft.AspNetCore.Mvc.Abstractions.Test (49)
Microsoft.AspNetCore.Mvc.ApiExplorer.Test (6)
Microsoft.AspNetCore.Mvc.Core (4)
Microsoft.AspNetCore.Mvc.Core.Test (77)
Microsoft.AspNetCore.Mvc.DataAnnotations.Test (3)
Microsoft.AspNetCore.Mvc.Formatters.Xml (1)
Microsoft.AspNetCore.Mvc.IntegrationTests (42)
Microsoft.AspNetCore.Mvc.Localization.Test (14)
Microsoft.AspNetCore.Mvc.NewtonsoftJson.Test (4)
Microsoft.AspNetCore.Mvc.Razor.Test (10)
Microsoft.AspNetCore.Mvc.RazorPages.Test (45)
Microsoft.AspNetCore.Mvc.TagHelpers.Test (16)
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (36)
Microsoft.AspNetCore.Mvc.Views.TestCommon (7)
Microsoft.AspNetCore.OpenApi.Tests (6)
Microsoft.AspNetCore.OutputCaching.Tests (1)
Microsoft.AspNetCore.Owin (5)
Microsoft.AspNetCore.RateLimiting.Tests (5)
Microsoft.AspNetCore.ResponseCaching.Microbenchmarks (3)
Microsoft.AspNetCore.ResponseCaching.Tests (1)
Microsoft.AspNetCore.Rewrite (5)
Microsoft.AspNetCore.Routing (2)
Microsoft.AspNetCore.Routing.Microbenchmarks (12)
Microsoft.AspNetCore.Routing.Tests (17)
Microsoft.AspNetCore.Server.HttpSys (3)
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (6)
Microsoft.AspNetCore.Server.IIS (3)
Microsoft.AspNetCore.Server.IntegrationTesting (1)
Microsoft.AspNetCore.Server.Kestrel.Core (21)
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (29)
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (7)
Microsoft.AspNetCore.Server.Kestrel.Tests (2)
Microsoft.AspNetCore.Shared.Tests (38)
Microsoft.AspNetCore.SignalR.Client.Core (3)
Microsoft.AspNetCore.SignalR.Client.Tests (8)
Microsoft.AspNetCore.SignalR.Common.Tests (1)
Microsoft.AspNetCore.SignalR.Core (8)
Microsoft.AspNetCore.SignalR.Microbenchmarks (6)
Microsoft.AspNetCore.SignalR.Specification.Tests (1)
Microsoft.AspNetCore.SignalR.StackExchangeRedis (4)
Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests (60)
Microsoft.AspNetCore.SignalR.Tests (51)
Microsoft.AspNetCore.SignalR.Tests.Utils (1)
Microsoft.AspNetCore.StaticAssets (1)
Microsoft.AspNetCore.StaticFiles (1)
Microsoft.AspNetCore.StaticFiles.Tests (7)
Microsoft.AspNetCore.Tests (5)
Microsoft.AspNetCore.WebUtilities.Tests (1)
Microsoft.Build (40)
Microsoft.Build.BuildCheck.UnitTests (6)
Microsoft.Build.Engine.OM.UnitTests (10)
Microsoft.Build.Engine.UnitTests (315)
InstanceFromRemote\FakeCachedEntityDictionary.cs (38)
34public T this[string key] { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
36public T this[(string, int, int) key] { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
40public bool IsReadOnly => throw new NotImplementedException();
42ICollection<string> IDictionary<string, T>.Keys => throw new NotImplementedException();
44ICollection<(string, int, int)> IDictionary<(string, int, int), T>.Keys => throw new NotImplementedException();
46ICollection<T> IDictionary<string, T>.Values => throw new NotImplementedException();
48ICollection<T> IDictionary<(string, int, int), T>.Values => throw new NotImplementedException();
52int ICollection<KeyValuePair<(string, int, int), T>>.Count => throw new NotImplementedException();
54bool ICollection<KeyValuePair<string, T>>.IsReadOnly => throw new NotImplementedException();
56bool ICollection<KeyValuePair<(string, int, int), T>>.IsReadOnly => throw new NotImplementedException();
58public void Add(T item) => throw new NotImplementedException();
60public void Clear() => throw new NotImplementedException();
62public bool Contains(T item) => throw new NotImplementedException();
64public void CopyTo(T[] array, int arrayIndex) => throw new NotImplementedException();
66public IEnumerator<T> GetEnumerator() => throw new NotImplementedException();
68public bool Remove(T item) => throw new NotImplementedException();
70void IDictionary<string, T>.Add(string key, T value) => throw new NotImplementedException();
72void ICollection<KeyValuePair<string, T>>.Add(KeyValuePair<string, T> item) => throw new NotImplementedException();
74void IDictionary<(string, int, int), T>.Add((string, int, int) key, T value) => throw new NotImplementedException();
76void ICollection<KeyValuePair<(string, int, int), T>>.Add(KeyValuePair<(string, int, int), T> item) => throw new NotImplementedException();
78void ICollection<KeyValuePair<string, T>>.Clear() => throw new NotImplementedException();
80void ICollection<KeyValuePair<(string, int, int), T>>.Clear() => throw new NotImplementedException();
82bool ICollection<KeyValuePair<string, T>>.Contains(KeyValuePair<string, T> item) => throw new NotImplementedException();
84bool ICollection<KeyValuePair<(string, int, int), T>>.Contains(KeyValuePair<(string, int, int), T> item) => throw new NotImplementedException();
86bool IDictionary<string, T>.ContainsKey(string key) => throw new NotImplementedException();
88bool IDictionary<(string, int, int), T>.ContainsKey((string, int, int) key) => throw new NotImplementedException();
90void ICollection<KeyValuePair<string, T>>.CopyTo(KeyValuePair<string, T>[] array, int arrayIndex) => throw new NotImplementedException();
92void ICollection<KeyValuePair<(string, int, int), T>>.CopyTo(KeyValuePair<(string, int, int), T>[] array, int arrayIndex) => throw new NotImplementedException();
96IEnumerator<KeyValuePair<string, T>> IEnumerable<KeyValuePair<string, T>>.GetEnumerator() => throw new NotImplementedException();
98IEnumerator<KeyValuePair<(string, int, int), T>> IEnumerable<KeyValuePair<(string, int, int), T>>.GetEnumerator() => throw new NotImplementedException();
100bool IDictionary<string, T>.Remove(string key) => throw new NotImplementedException();
102bool ICollection<KeyValuePair<string, T>>.Remove(KeyValuePair<string, T> item) => throw new NotImplementedException();
104bool IDictionary<(string, int, int), T>.Remove((string, int, int) key) => throw new NotImplementedException();
106bool ICollection<KeyValuePair<(string, int, int), T>>.Remove(KeyValuePair<(string, int, int), T> item) => throw new NotImplementedException();
108public virtual bool TryGetValue(string key, out T value) => throw new NotImplementedException();
110bool IDictionary<(string, int, int), T>.TryGetValue((string, int, int) key, out T value) => throw new NotImplementedException();
InstanceFromRemote\FakeProjectItemDictionary.cs (24)
29ICollection<ProjectItem> IDictionary<string, ICollection<ProjectItem>>.this[string key] { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
31int ICollection<ProjectItem>.Count => throw new NotImplementedException();
33int ICollection<KeyValuePair<string, ICollection<ProjectItem>>>.Count => throw new NotImplementedException();
35bool ICollection<ProjectItem>.IsReadOnly => throw new NotImplementedException();
37bool ICollection<KeyValuePair<string, ICollection<ProjectItem>>>.IsReadOnly => throw new NotImplementedException();
39ICollection<string> IDictionary<string, ICollection<ProjectItem>>.Keys => throw new NotImplementedException();
41ICollection<ICollection<ProjectItem>> IDictionary<string, ICollection<ProjectItem>>.Values => throw new NotImplementedException();
43void ICollection<ProjectItem>.Add(ProjectItem item) => throw new NotImplementedException();
45void IDictionary<string, ICollection<ProjectItem>>.Add(string key, ICollection<ProjectItem> value) => throw new NotImplementedException();
47void ICollection<KeyValuePair<string, ICollection<ProjectItem>>>.Add(KeyValuePair<string, ICollection<ProjectItem>> item) => throw new NotImplementedException();
49void ICollection<ProjectItem>.Clear() => throw new NotImplementedException();
51void ICollection<KeyValuePair<string, ICollection<ProjectItem>>>.Clear() => throw new NotImplementedException();
53bool ICollection<ProjectItem>.Contains(ProjectItem item) => throw new NotImplementedException();
55bool ICollection<KeyValuePair<string, ICollection<ProjectItem>>>.Contains(KeyValuePair<string, ICollection<ProjectItem>> item) => throw new NotImplementedException();
57bool IDictionary<string, ICollection<ProjectItem>>.ContainsKey(string key) => throw new NotImplementedException();
59void ICollection<ProjectItem>.CopyTo(ProjectItem[] array, int arrayIndex) => throw new NotImplementedException();
61void ICollection<KeyValuePair<string, ICollection<ProjectItem>>>.CopyTo(KeyValuePair<string, ICollection<ProjectItem>>[] array, int arrayIndex) => throw new NotImplementedException();
63IEnumerator<ProjectItem> IEnumerable<ProjectItem>.GetEnumerator() => throw new NotImplementedException();
65IEnumerator IEnumerable.GetEnumerator() => throw new NotImplementedException();
67IEnumerator<KeyValuePair<string, ICollection<ProjectItem>>> IEnumerable<KeyValuePair<string, ICollection<ProjectItem>>>.GetEnumerator() => throw new NotImplementedException();
69bool ICollection<ProjectItem>.Remove(ProjectItem item) => throw new NotImplementedException();
71bool IDictionary<string, ICollection<ProjectItem>>.Remove(string key) => throw new NotImplementedException();
73bool ICollection<KeyValuePair<string, ICollection<ProjectItem>>>.Remove(KeyValuePair<string, ICollection<ProjectItem>> item) => throw new NotImplementedException();
InstanceFromRemote\FakeProjectLink.cs (42)
39public override bool ThrowInsteadOfSplittingItemElement { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
45public override ICollection<string> ItemTypes => throw new NotImplementedException();
49public override IDictionary<string, List<string>> ConditionedProperties => throw new NotImplementedException();
55public override ICollection<ProjectItem> ItemsIgnoringCondition => throw new NotImplementedException();
57public override IList<ResolvedImport> Imports => throw new NotImplementedException();
59public override IList<ResolvedImport> ImportsIncludingDuplicates => throw new NotImplementedException();
63public override ICollection<ProjectProperty> AllEvaluatedProperties => throw new NotImplementedException();
65public override ICollection<ProjectMetadata> AllEvaluatedItemDefinitionMetadata => throw new NotImplementedException();
67public override ICollection<ProjectItem> AllEvaluatedItems => throw new NotImplementedException();
73public override bool SkipEvaluation { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
75public override bool DisableMarkDirty { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
77public override bool IsBuildEnabled { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
81public override IList<ProjectItem> AddItem(string itemType, string unevaluatedInclude, IEnumerable<KeyValuePair<string, string>> metadata) => throw new NotImplementedException();
83public override IList<ProjectItem> AddItemFast(string itemType, string unevaluatedInclude, IEnumerable<KeyValuePair<string, string>> metadata) => throw new NotImplementedException();
85public override bool Build(string[] targets, IEnumerable<ILogger> loggers, IEnumerable<ForwardingLoggerRecord> remoteLoggers, EvaluationContext evaluationContext) => throw new NotImplementedException();
87public override ProjectInstance CreateProjectInstance(ProjectInstanceSettings settings, EvaluationContext evaluationContext) => throw new NotImplementedException();
89public override string ExpandString(string unexpandedValue) => throw new NotImplementedException();
91public override List<GlobResult> GetAllGlobs(EvaluationContext evaluationContext) => throw new NotImplementedException();
93public override List<GlobResult> GetAllGlobs(string itemType, EvaluationContext evaluationContext) => throw new NotImplementedException();
95public override List<ProvenanceResult> GetItemProvenance(string itemToMatch, EvaluationContext evaluationContext) => throw new NotImplementedException();
97public override List<ProvenanceResult> GetItemProvenance(string itemToMatch, string itemType, EvaluationContext evaluationContext) => throw new NotImplementedException();
99public override List<ProvenanceResult> GetItemProvenance(ProjectItem item, EvaluationContext evaluationContext) => throw new NotImplementedException();
101public override ICollection<ProjectItem> GetItems(string itemType) => throw new NotImplementedException();
103public override ICollection<ProjectItem> GetItemsByEvaluatedInclude(string evaluatedInclude) => throw new NotImplementedException();
105public override ICollection<ProjectItem> GetItemsIgnoringCondition(string itemType) => throw new NotImplementedException();
107public override IEnumerable<ProjectElement> GetLogicalProject() => throw new NotImplementedException();
109public override ProjectProperty GetProperty(string name) => throw new NotImplementedException();
111public override string GetPropertyValue(string name) => throw new NotImplementedException();
113public override void MarkDirty() => throw new NotImplementedException();
115public override void ReevaluateIfNecessary(EvaluationContext evaluationContext) => throw new NotImplementedException();
117public override bool RemoveGlobalProperty(string name) => throw new NotImplementedException();
119public override bool RemoveItem(ProjectItem item) => throw new NotImplementedException();
121public override void RemoveItems(IEnumerable<ProjectItem> items) => throw new NotImplementedException();
123public override bool RemoveProperty(ProjectProperty property) => throw new NotImplementedException();
125public override void SaveLogicalProject(TextWriter writer) => throw new NotImplementedException();
127public override bool SetGlobalProperty(string name, string escapedValue) => throw new NotImplementedException();
129public override ProjectProperty SetProperty(string name, string unevaluatedValue) => throw new NotImplementedException();
131public override void Unload() => throw new NotImplementedException();
InstanceFromRemote\FakeProjectRootElementLink.cs (62)
26public override int Version => throw new NotImplementedException();
28public override bool HasUnsavedChanges => throw new NotImplementedException();
30public override DateTime TimeLastChanged => throw new NotImplementedException();
32public override DateTime LastWriteTimeWhenRead => throw new NotImplementedException();
34public override string DirectoryPath => throw new NotImplementedException();
38public override ElementLocation ProjectFileLocation => throw new NotImplementedException();
40public override Encoding Encoding => throw new NotImplementedException();
42public override string RawXml => throw new NotImplementedException();
44public override bool PreserveFormatting => throw new NotImplementedException();
46public override int Count => throw new NotImplementedException();
48public override ProjectElement FirstChild => throw new NotImplementedException();
50public override ProjectElement LastChild => throw new NotImplementedException();
52public override ProjectElementContainer Parent => throw new NotImplementedException();
54public override ProjectRootElement ContainingProject => throw new NotImplementedException();
56public override string ElementName => throw new NotImplementedException();
58public override string OuterElement => throw new NotImplementedException();
60public override bool ExpressedAsAttribute { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
62public override ProjectElement PreviousSibling => throw new NotImplementedException();
64public override ProjectElement NextSibling => throw new NotImplementedException();
66public override ElementLocation Location => throw new NotImplementedException();
68public override IReadOnlyCollection<XmlAttributeLink> Attributes => throw new NotImplementedException();
70public override string PureText => throw new NotImplementedException();
72public override void AddInitialChild(ProjectElement child) => throw new NotImplementedException();
74public override void CopyFrom(ProjectElement element) => throw new NotImplementedException();
76public override ProjectChooseElement CreateChooseElement() => throw new NotImplementedException();
78public override ProjectImportElement CreateImportElement(string project) => throw new NotImplementedException();
80public override ProjectImportGroupElement CreateImportGroupElement() => throw new NotImplementedException();
82public override ProjectItemDefinitionElement CreateItemDefinitionElement(string itemType) => throw new NotImplementedException();
84public override ProjectItemDefinitionGroupElement CreateItemDefinitionGroupElement() => throw new NotImplementedException();
86public override ProjectItemElement CreateItemElement(string itemType) => throw new NotImplementedException();
88public override ProjectItemElement CreateItemElement(string itemType, string include) => throw new NotImplementedException();
90public override ProjectItemGroupElement CreateItemGroupElement() => throw new NotImplementedException();
92public override ProjectMetadataElement CreateMetadataElement(string name) => throw new NotImplementedException();
94public override ProjectMetadataElement CreateMetadataElement(string name, string unevaluatedValue) => throw new NotImplementedException();
96public override ProjectElement CreateNewInstance(ProjectRootElement owner) => throw new NotImplementedException();
98public override ProjectOnErrorElement CreateOnErrorElement(string executeTargets) => throw new NotImplementedException();
100public override ProjectOtherwiseElement CreateOtherwiseElement() => throw new NotImplementedException();
102public override ProjectOutputElement CreateOutputElement(string taskParameter, string itemType, string propertyName) => throw new NotImplementedException();
104public override ProjectExtensionsElement CreateProjectExtensionsElement() => throw new NotImplementedException();
106public override ProjectSdkElement CreateProjectSdkElement(string sdkName, string sdkVersion) => throw new NotImplementedException();
108public override ProjectPropertyElement CreatePropertyElement(string name) => throw new NotImplementedException();
110public override ProjectPropertyGroupElement CreatePropertyGroupElement() => throw new NotImplementedException();
112public override ProjectTargetElement CreateTargetElement(string name) => throw new NotImplementedException();
114public override ProjectTaskElement CreateTaskElement(string name) => throw new NotImplementedException();
116public override ProjectUsingTaskBodyElement CreateUsingTaskBodyElement(string evaluate, string body) => throw new NotImplementedException();
118public override ProjectUsingTaskElement CreateUsingTaskElement(string taskName, string assemblyFile, string assemblyName, string runtime, string architecture) => throw new NotImplementedException();
120public override ProjectUsingTaskParameterElement CreateUsingTaskParameterElement(string name, string output, string required, string parameterType) => throw new NotImplementedException();
122public override UsingTaskParameterGroupElement CreateUsingTaskParameterGroupElement() => throw new NotImplementedException();
124public override ProjectWhenElement CreateWhenElement(string condition) => throw new NotImplementedException();
126public override ProjectElementContainer DeepClone(ProjectRootElement factory, ProjectElementContainer parent) => throw new NotImplementedException();
128public override ElementLocation GetAttributeLocation(string attributeName) => throw new NotImplementedException();
130public override string GetAttributeValue(string attributeName, bool nullIfNotExists) => throw new NotImplementedException();
132public override void InsertAfterChild(ProjectElement child, ProjectElement reference) => throw new NotImplementedException();
134public override void InsertBeforeChild(ProjectElement child, ProjectElement reference) => throw new NotImplementedException();
136public override void MarkDirty(string reason, string param) => throw new NotImplementedException();
138public override void ReloadFrom(string path, bool throwIfUnsavedChanges, bool preserveFormatting) => throw new NotImplementedException();
140public override void ReloadFrom(XmlReader reader, bool throwIfUnsavedChanges, bool preserveFormatting) => throw new NotImplementedException();
142public override void RemoveChild(ProjectElement child) => throw new NotImplementedException();
144public override void Save(Encoding saveEncoding) => throw new NotImplementedException();
146public override void Save(TextWriter writer) => throw new NotImplementedException();
148public override void SetOrRemoveAttribute(string name, string value, bool clearAttributeCache, string reason, string param) => throw new NotImplementedException();
Microsoft.Build.Framework (8)
Microsoft.Build.Tasks.CodeAnalysis.UnitTests (4)
Microsoft.Build.Tasks.Core (23)
Microsoft.Build.Tasks.UnitTests (17)
Microsoft.Build.UnitTests.Shared (1)
Microsoft.Build.Utilities.Core (1)
Microsoft.Cci.Extensions (72)
Microsoft.CodeAnalysis (142)
DiaSymReader\Metadata\MetadataAdapterBase.cs (111)
16=> throw new NotImplementedException();
22=> throw new NotImplementedException();
31=> throw new NotImplementedException();
39=> throw new NotImplementedException();
42=> throw new NotImplementedException();
55=> throw new NotImplementedException();
57void IMetadataImport.CloseEnum(void* enumHandle) => throw new NotImplementedException();
58int IMetadataImport.CountEnum(void* enumHandle, out int count) => throw new NotImplementedException();
59int IMetadataImport.ResetEnum(void* enumHandle, int position) => throw new NotImplementedException();
60int IMetadataImport.EnumTypeDefs(ref void* enumHandle, int* typeDefs, int bufferLength, int* count) => throw new NotImplementedException();
61int IMetadataImport.EnumInterfaceImpls(ref void* enumHandle, int typeDef, int* interfaceImpls, int bufferLength, int* count) => throw new NotImplementedException();
62int IMetadataImport.EnumTypeRefs(ref void* enumHandle, int* typeRefs, int bufferLength, int* count) => throw new NotImplementedException();
63int IMetadataImport.FindTypeDefByName(string name, int enclosingClass, out int typeDef) => throw new NotImplementedException();
64int IMetadataImport.GetScopeProps(char* name, int bufferLength, int* nameLength, Guid* mvid) => throw new NotImplementedException();
65int IMetadataImport.GetModuleFromScope(out int moduleDef) => throw new NotImplementedException();
66int IMetadataImport.GetInterfaceImplProps(int interfaceImpl, int* typeDef, int* interfaceDefRefSpec) => throw new NotImplementedException();
67int IMetadataImport.ResolveTypeRef(int typeRef, ref Guid scopeInterfaceId, out object scope, out int typeDef) => throw new NotImplementedException();
68int IMetadataImport.EnumMembers(ref void* enumHandle, int typeDef, int* memberDefs, int bufferLength, int* count) => throw new NotImplementedException();
69int IMetadataImport.EnumMembersWithName(ref void* enumHandle, int typeDef, string name, int* memberDefs, int bufferLength, int* count) => throw new NotImplementedException();
70int IMetadataImport.EnumMethods(ref void* enumHandle, int typeDef, int* methodDefs, int bufferLength, int* count) => throw new NotImplementedException();
71int IMetadataImport.EnumMethodsWithName(ref void* enumHandle, int typeDef, string name, int* methodDefs, int bufferLength, int* count) => throw new NotImplementedException();
72int IMetadataImport.EnumFields(ref void* enumHandle, int typeDef, int* fieldDefs, int bufferLength, int* count) => throw new NotImplementedException();
73int IMetadataImport.EnumFieldsWithName(ref void* enumHandle, int typeDef, string name, int* fieldDefs, int bufferLength, int* count) => throw new NotImplementedException();
74int IMetadataImport.EnumParams(ref void* enumHandle, int methodDef, int* paramDefs, int bufferLength, int* count) => throw new NotImplementedException();
75int IMetadataImport.EnumMemberRefs(ref void* enumHandle, int parentToken, int* memberRefs, int bufferLength, int* count) => throw new NotImplementedException();
76int IMetadataImport.EnumMethodImpls(ref void* enumHandle, int typeDef, int* implementationTokens, int* declarationTokens, int bufferLength, int* count) => throw new NotImplementedException();
77int IMetadataImport.EnumPermissionSets(ref void* enumHandle, int token, uint action, int* declSecurityTokens, int bufferLength, int* count) => throw new NotImplementedException();
78int IMetadataImport.FindMember(int typeDef, string name, byte* signature, int signatureLength, out int memberDef) => throw new NotImplementedException();
79int IMetadataImport.FindMethod(int typeDef, string name, byte* signature, int signatureLength, out int methodDef) => throw new NotImplementedException();
80int IMetadataImport.FindField(int typeDef, string name, byte* signature, int signatureLength, out int fieldDef) => throw new NotImplementedException();
81int IMetadataImport.FindMemberRef(int typeDef, string name, byte* signature, int signatureLength, out int memberRef) => throw new NotImplementedException();
82int IMetadataImport.GetMemberRefProps(int memberRef, int* declaringType, char* name, int nameBufferLength, int* nameLength, byte** signature, int* signatureLength) => throw new NotImplementedException();
83int IMetadataImport.EnumProperties(ref void* enumHandle, int typeDef, int* properties, int bufferLength, int* count) => throw new NotImplementedException();
84uint IMetadataImport.EnumEvents(ref void* enumHandle, int typeDef, int* events, int bufferLength, int* count) => throw new NotImplementedException();
85int IMetadataImport.GetEventProps(int @event, int* declaringTypeDef, char* name, int nameBufferLength, int* nameLength, int* attributes, int* eventType, int* adderMethodDef, int* removerMethodDef, int* raiserMethodDef, int* otherMethodDefs, int otherMethodDefBufferLength, int* methodMethodDefsLength) => throw new NotImplementedException();
86int IMetadataImport.EnumMethodSemantics(ref void* enumHandle, int methodDef, int* eventsAndProperties, int bufferLength, int* count) => throw new NotImplementedException();
87int IMetadataImport.GetMethodSemantics(int methodDef, int eventOrProperty, int* semantics) => throw new NotImplementedException();
88int IMetadataImport.GetClassLayout(int typeDef, int* packSize, MetadataImportFieldOffset* fieldOffsets, int bufferLength, int* count, int* typeSize) => throw new NotImplementedException();
89int IMetadataImport.GetFieldMarshal(int fieldDef, byte** nativeTypeSignature, int* nativeTypeSignatureLengvth) => throw new NotImplementedException();
90int IMetadataImport.GetRVA(int methodDef, int* relativeVirtualAddress, int* implAttributes) => throw new NotImplementedException();
91int IMetadataImport.GetPermissionSetProps(int declSecurity, uint* action, byte** permissionBlob, int* permissionBlobLength) => throw new NotImplementedException();
92int IMetadataImport.GetModuleRefProps(int moduleRef, char* name, int nameBufferLength, int* nameLength) => throw new NotImplementedException();
93int IMetadataImport.EnumModuleRefs(ref void* enumHandle, int* moduleRefs, int bufferLength, int* count) => throw new NotImplementedException();
94int IMetadataImport.GetTypeSpecFromToken(int typeSpec, byte** signature, int* signatureLength) => throw new NotImplementedException();
95int IMetadataImport.GetNameFromToken(int token, byte* nameUtf8) => throw new NotImplementedException();
96int IMetadataImport.EnumUnresolvedMethods(ref void* enumHandle, int* methodDefs, int bufferLength, int* count) => throw new NotImplementedException();
97int IMetadataImport.GetUserString(int userStringToken, char* buffer, int bufferLength, int* length) => throw new NotImplementedException();
98int IMetadataImport.GetPinvokeMap(int memberDef, int* attributes, char* importName, int importNameBufferLength, int* importNameLength, int* moduleRef) => throw new NotImplementedException();
99int IMetadataImport.EnumSignatures(ref void* enumHandle, int* signatureTokens, int bufferLength, int* count) => throw new NotImplementedException();
100int IMetadataImport.EnumTypeSpecs(ref void* enumHandle, int* typeSpecs, int bufferLength, int* count) => throw new NotImplementedException();
101int IMetadataImport.EnumUserStrings(ref void* enumHandle, int* userStrings, int bufferLength, int* count) => throw new NotImplementedException();
102int IMetadataImport.GetParamForMethodIndex(int methodDef, int sequenceNumber, out int parameterToken) => throw new NotImplementedException();
103int IMetadataImport.EnumCustomAttributes(ref void* enumHandle, int parent, int attributeType, int* customAttributes, int bufferLength, int* count) => throw new NotImplementedException();
104int IMetadataImport.GetCustomAttributeProps(int customAttribute, int* parent, int* constructor, byte** value, int* valueLength) => throw new NotImplementedException();
105int IMetadataImport.FindTypeRef(int resolutionScope, string name, out int typeRef) => throw new NotImplementedException();
106int IMetadataImport.GetMemberProps(int member, int* declaringTypeDef, char* name, int nameBufferLength, int* nameLength, int* attributes, byte** signature, int* signatureLength, int* relativeVirtualAddress, int* implAttributes, int* constantType, byte** constantValue, int* constantValueLength) => throw new NotImplementedException();
107int IMetadataImport.GetFieldProps(int fieldDef, int* declaringTypeDef, char* name, int nameBufferLength, int* nameLength, int* attributes, byte** signature, int* signatureLength, int* constantType, byte** constantValue, int* constantValueLength) => throw new NotImplementedException();
108int IMetadataImport.GetPropertyProps(int propertyDef, int* declaringTypeDef, char* name, int nameBufferLength, int* nameLength, int* attributes, byte** signature, int* signatureLength, int* constantType, byte** constantValue, int* constantValueLength, int* setterMethodDef, int* getterMethodDef, int* outerMethodDefs, int outerMethodDefsBufferLength, int* otherMethodDefCount) => throw new NotImplementedException();
109int IMetadataImport.GetParamProps(int parameter, int* declaringMethodDef, int* sequenceNumber, char* name, int nameBufferLength, int* nameLength, int* attributes, int* constantType, byte** constantValue, int* constantValueLength) => throw new NotImplementedException();
110int IMetadataImport.GetCustomAttributeByName(int parent, string name, byte** value, int* valueLength) => throw new NotImplementedException();
111bool IMetadataImport.IsValidToken(int token) => throw new NotImplementedException();
112int IMetadataImport.GetNativeCallConvFromSig(byte* signature, int signatureLength, int* callingConvention) => throw new NotImplementedException();
113int IMetadataImport.IsGlobal(int token, bool value) => throw new NotImplementedException();
115void IMetadataEmit.__SetModuleProps() => throw new NotImplementedException();
116void IMetadataEmit.__Save() => throw new NotImplementedException();
117void IMetadataEmit.__SaveToStream() => throw new NotImplementedException();
118void IMetadataEmit.__GetSaveSize() => throw new NotImplementedException();
119void IMetadataEmit.__DefineTypeDef() => throw new NotImplementedException();
120void IMetadataEmit.__DefineNestedType() => throw new NotImplementedException();
121void IMetadataEmit.__SetHandler() => throw new NotImplementedException();
122void IMetadataEmit.__DefineMethod() => throw new NotImplementedException();
123void IMetadataEmit.__DefineMethodImpl() => throw new NotImplementedException();
124void IMetadataEmit.__DefineTypeRefByName() => throw new NotImplementedException();
125void IMetadataEmit.__DefineImportType() => throw new NotImplementedException();
126void IMetadataEmit.__DefineMemberRef() => throw new NotImplementedException();
127void IMetadataEmit.__DefineImportMember() => throw new NotImplementedException();
128void IMetadataEmit.__DefineEvent() => throw new NotImplementedException();
129void IMetadataEmit.__SetClassLayout() => throw new NotImplementedException();
130void IMetadataEmit.__DeleteClassLayout() => throw new NotImplementedException();
131void IMetadataEmit.__SetFieldMarshal() => throw new NotImplementedException();
132void IMetadataEmit.__DeleteFieldMarshal() => throw new NotImplementedException();
133void IMetadataEmit.__DefinePermissionSet() => throw new NotImplementedException();
134void IMetadataEmit.__SetRVA() => throw new NotImplementedException();
135void IMetadataEmit.__DefineModuleRef() => throw new NotImplementedException();
136void IMetadataEmit.__SetParent() => throw new NotImplementedException();
137void IMetadataEmit.__GetTokenFromTypeSpec() => throw new NotImplementedException();
138void IMetadataEmit.__SaveToMemory() => throw new NotImplementedException();
139void IMetadataEmit.__DefineUserString() => throw new NotImplementedException();
140void IMetadataEmit.__DeleteToken() => throw new NotImplementedException();
141void IMetadataEmit.__SetMethodProps() => throw new NotImplementedException();
142void IMetadataEmit.__SetTypeDefProps() => throw new NotImplementedException();
143void IMetadataEmit.__SetEventProps() => throw new NotImplementedException();
144void IMetadataEmit.__SetPermissionSetProps() => throw new NotImplementedException();
145void IMetadataEmit.__DefinePinvokeMap() => throw new NotImplementedException();
146void IMetadataEmit.__SetPinvokeMap() => throw new NotImplementedException();
147void IMetadataEmit.__DeletePinvokeMap() => throw new NotImplementedException();
148void IMetadataEmit.__DefineCustomAttribute() => throw new NotImplementedException();
149void IMetadataEmit.__SetCustomAttributeValue() => throw new NotImplementedException();
150void IMetadataEmit.__DefineField() => throw new NotImplementedException();
151void IMetadataEmit.__DefineProperty() => throw new NotImplementedException();
152void IMetadataEmit.__DefineParam() => throw new NotImplementedException();
153void IMetadataEmit.__SetFieldProps() => throw new NotImplementedException();
154void IMetadataEmit.__SetPropertyProps() => throw new NotImplementedException();
155void IMetadataEmit.__SetParamProps() => throw new NotImplementedException();
156void IMetadataEmit.__DefineSecurityAttributeSet() => throw new NotImplementedException();
157void IMetadataEmit.__ApplyEditAndContinue() => throw new NotImplementedException();
158void IMetadataEmit.__TranslateSigWithScope() => throw new NotImplementedException();
159void IMetadataEmit.__SetMethodImplFlags() => throw new NotImplementedException();
160void IMetadataEmit.__SetFieldRVA() => throw new NotImplementedException();
161void IMetadataEmit.__Merge() => throw new NotImplementedException();
162void IMetadataEmit.__MergeEnd() => throw new NotImplementedException();
Microsoft.CodeAnalysis.Analyzers (45)
Microsoft.CodeAnalysis.Analyzers.UnitTests (13)
Microsoft.CodeAnalysis.AnalyzerUtilities (37)
Microsoft.CodeAnalysis.BannedApiAnalyzers (42)
Microsoft.CodeAnalysis.CodeStyle (20)
Microsoft.CodeAnalysis.CodeStyle.Fixes (13)
Microsoft.CodeAnalysis.CSharp (14)
Microsoft.CodeAnalysis.CSharp.CodeStyle (9)
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
Microsoft.CodeAnalysis.CSharp.CodeStyle.UnitTests (1)
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (16)
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (3)
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (1)
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (5)
Diagnostics\DiagnosticSuppressorTests.cs (4)
390var expectedException = new NotImplementedException();
411Diagnostic("AD0001").WithArguments(suppressor.ToString(), typeof(NotImplementedException).FullName, new NotImplementedException().Message, context).WithLocation(1, 1),
432var expectedException = new NotImplementedException();
455Diagnostic("AD0001").WithArguments(suppressor.ToString(), typeof(NotImplementedException).FullName, new NotImplementedException().Message, context).WithLocation(1, 1),
Microsoft.CodeAnalysis.CSharp.Features (1)
Microsoft.CodeAnalysis.CSharp.Features.UnitTests (10)
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (5)
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (27)
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (2)
Microsoft.CodeAnalysis.CSharp.Test.Utilities (6)
Microsoft.CodeAnalysis.CSharp.Workspaces (10)
Microsoft.CodeAnalysis.EditorFeatures (19)
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (16)
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (13)
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler (11)
Microsoft.CodeAnalysis.ExpressionEvaluator.FunctionResolver.UnitTests (6)
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (180)
Microsoft.CodeAnalysis.Extensions.Package (6)
Microsoft.CodeAnalysis.ExternalAccess.AspNetCore (1)
Microsoft.CodeAnalysis.ExternalAccess.Copilot (1)
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
Microsoft.CodeAnalysis.ExternalAccess.Razor.Features (11)
Microsoft.CodeAnalysis.ExternalAccess.Xaml (1)
Microsoft.CodeAnalysis.Features (26)
Microsoft.CodeAnalysis.Features.Test.Utilities (17)
Microsoft.CodeAnalysis.Features.UnitTests (1)
Microsoft.CodeAnalysis.LanguageServer (3)
Microsoft.CodeAnalysis.LanguageServer.Protocol (4)
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (2)
Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers (41)
Microsoft.CodeAnalysis.PublicApiAnalyzers (28)
Microsoft.CodeAnalysis.Rebuild.UnitTests (9)
Microsoft.CodeAnalysis.Remote.Workspaces (3)
Microsoft.CodeAnalysis.ResxSourceGenerator (31)
Microsoft.CodeAnalysis.Scripting (2)
Microsoft.CodeAnalysis.Scripting.TestUtilities (7)
Microsoft.CodeAnalysis.Test.Utilities (110)
Microsoft.CodeAnalysis.UnitTests (57)
Microsoft.CodeAnalysis.Workspaces (40)
Microsoft.CodeAnalysis.Workspaces.MSBuild.UnitTests (1)
Microsoft.CodeAnalysis.Workspaces.Test.Utilities (2)
Microsoft.CodeAnalysis.Workspaces.UnitTests (7)
Microsoft.CommonLanguageServerProtocol.Framework.Example (4)
Microsoft.CommonLanguageServerProtocol.Framework.Package (1)
Microsoft.CommonLanguageServerProtocol.Framework.UnitTests (6)
Microsoft.Data.Analysis (83)
Microsoft.Data.Analysis.Tests (4)
Microsoft.DotNet.Arcade.Sdk (3)
Microsoft.DotNet.Build.Manifest (1)
Microsoft.DotNet.Build.Tasks.Feed (7)
Microsoft.DotNet.Build.Tasks.Feed.Tests (12)
Microsoft.DotNet.Build.Tasks.Packaging.Tests (1)
Microsoft.DotNet.NuGetRepack.Tests (1)
Microsoft.DotNet.SignCheckLibrary (3)
Microsoft.DotNet.SignTool (3)
Microsoft.DotNet.StrongName (1)
Microsoft.DotNet.VersionTools.Cli (1)
Microsoft.DotNet.XUnitAssert.Tests (25)
Microsoft.Extensions.AI.Tests (1)
Microsoft.Extensions.Configuration.KeyPerFile.Tests (2)
Microsoft.Extensions.Diagnostics.HealthChecks.Tests (4)
Microsoft.Extensions.FileProviders.Embedded.Tests (1)
Microsoft.Extensions.Logging.Console (2)
Microsoft.Interop.SourceGeneration (2)
Microsoft.JSInterop (18)
Microsoft.JSInterop.Tests (14)
Microsoft.Maui (60)
Microsoft.Maui.Controls (30)
Microsoft.Maui.Controls.Compatibility (3)
Microsoft.Maui.Controls.Maps (5)
Microsoft.Maui.Controls.Xaml (2)
Microsoft.Maui.Graphics (2)
Microsoft.Maui.Graphics.Win2D.WinUI.Desktop (5)
Microsoft.Maui.Maps (15)
Microsoft.ML.AutoML (14)
Microsoft.ML.AutoML.SourceGenerator (3)
Microsoft.ML.Core (6)
Microsoft.ML.CpuMath (6)
Microsoft.ML.CpuMath.UnitTests (2)
Microsoft.ML.Fairlearn (2)
Microsoft.ML.GenAI.Core (2)
Microsoft.ML.GenAI.LLaMA (2)
Microsoft.ML.GenAI.Mistral (2)
Microsoft.ML.GenAI.Phi (3)
Microsoft.ML.OnnxTransformer (3)
Microsoft.ML.SearchSpace (4)
Microsoft.ML.StandardTrainers (1)
Microsoft.ML.TensorFlow (1)
Microsoft.ML.TimeSeries (1)
Microsoft.ML.Tokenizers (1)
Microsoft.ML.TorchSharp (9)
Microsoft.NET.StringTools.net35.UnitTests (1)
Microsoft.NET.StringTools.UnitTests (1)
Microsoft.VisualStudio.LanguageServices (36)
Microsoft.VisualStudio.LanguageServices.CSharp (25)
Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests (17)
Microsoft.VisualStudio.LanguageServices.DevKit (3)
Microsoft.VisualStudio.LanguageServices.Implementation (38)
MSBuild (3)
MSBuildTaskHost (1)
Mvc.Api.Analyzers.Test (7)
TestFiles\ApiConventionAnalyzerIntegrationTest\DiagnosticsAreReturned_IfMethodWithProducesResponseTypeAttribute_DoesNotDocumentSuccessStatusCode.cs (1)
20throw new NotImplementedException();
Negotiate.Client (1)
PresentationCore (46)
PresentationCore.Tests (15)
PresentationFramework (70)
PresentationFramework.Fluent (2)
ReachFramework (28)
ResultsOfTGenerator (2)
Roslyn.Diagnostics.Analyzers (41)
Roslyn.Diagnostics.CSharp.Analyzers (9)
Roslyn.Test.PdbUtilities (88)
Roslyn.Test.Performance.Utilities (1)
Roslyn.VisualStudio.Next.UnitTests (24)
RulesetToEditorconfigConverter (1)
SampleStartups (3)
ScenarioTests.Common.Tests (7)
ServerComparison.FunctionalTests (1)
SocialSample (1)
SocialWeather (3)
Sockets.BindTests (4)
Sockets.FunctionalTests (15)
System.CodeDom (4)
System.ComponentModel.Annotations (2)
System.ComponentModel.Composition (13)
System.ComponentModel.TypeConverter (2)
System.Composition.Hosting (2)
System.Data.Common (1)
System.Data.Odbc (3)
System.IO.Hashing (2)
System.Net.Http (4)
System.Net.Mail (14)
System.Net.NetworkInformation (2)
System.Net.Primitives (2)
System.Net.Requests (2)
System.Net.Security (2)
System.Private.CoreLib (15)
System.Private.DataContractSerialization (9)
System.Private.Windows.Core (6)
System.Private.Windows.Core.Tests (20)
System.Private.Windows.Core.TestUtilities (1)
System.Private.Xml (39)
System.Reflection.Emit (9)
System.Runtime.InteropServices (1)
System.Security.Cryptography (21)
System.Security.Permissions (2)
System.ServiceModel.Primitives (9)
System.ServiceModel.Primitives.Tests (18)
System.Text.Json (3)
System.Text.RegularExpressions (2)
System.Transactions.Local (2)
System.Windows.Controls.Ribbon (1)
System.Windows.Forms (5)
System.Windows.Forms.Design (24)
System.Windows.Forms.Design.Tests (28)
System.Windows.Forms.Primitives.Tests (33)
System.Windows.Forms.Primitives.TestUtilities (4)
System.Windows.Forms.Tests (316)
System.Windows.Forms.TestUtilities (14)
System.Windows.Forms.UI.IntegrationTests (3)
System.Xaml (18)
System.Xaml.Tests (227)
System\Xaml\XamlTypeTests.cs (125)
1802public IEnumerator GetEnumerator() => throw new NotImplementedException();
1803public void Add(object value) => throw new NotImplementedException();
1808public int GetEnumerator() => throw new NotImplementedException();
1809public void Add(object value) => throw new NotImplementedException();
1814public IEnumerator GetEnumerator(int value) => throw new NotImplementedException();
1815public void Add(object value) => throw new NotImplementedException();
1820public int Count => throw new NotImplementedException();
1822public bool IsReadOnly => throw new NotImplementedException();
1824public void Add(int item) => throw new NotImplementedException();
1825public void Add(object item) => throw new NotImplementedException();
1827public void Clear() => throw new NotImplementedException();
1829public bool Contains(int item) => throw new NotImplementedException();
1830public bool Contains(object item) => throw new NotImplementedException();
1832public void CopyTo(int[] array, int arrayIndex) => throw new NotImplementedException();
1833public void CopyTo(object[] array, int arrayIndex) => throw new NotImplementedException();
1835IEnumerator<int> IEnumerable<int>.GetEnumerator() => throw new NotImplementedException();
1836IEnumerator<object> IEnumerable<object>.GetEnumerator() => throw new NotImplementedException();
1838public bool Remove(int item) => throw new NotImplementedException();
1839public bool Remove(object item) => throw new NotImplementedException();
1841IEnumerator IEnumerable.GetEnumerator() => throw new NotImplementedException();
1846public void Add(object value) => throw new NotImplementedException();
1847public IEnumerator GetEnumerator() => throw new NotImplementedException();
1852public void Add(int value) => throw new NotImplementedException();
1857internal void Add(object value) => throw new NotImplementedException();
1858public IEnumerator GetEnumerator() => throw new NotImplementedException();
1863private void Add(object value) => throw new NotImplementedException();
1864public IEnumerator GetEnumerator() => throw new NotImplementedException();
1869protected void Add(object value) => throw new NotImplementedException();
1870public IEnumerator GetEnumerator() => throw new NotImplementedException();
1875public void Add(object key, object value) => throw new NotImplementedException();
1876public IEnumerator GetEnumerator() => throw new NotImplementedException();
1881public void Add(int key, int value) => throw new NotImplementedException();
1882public void Add() => throw new NotImplementedException();
1887internal void Add(object key, object value) => throw new NotImplementedException();
1888public IEnumerator GetEnumerator() => throw new NotImplementedException();
1893private void Add(object key, object value) => throw new NotImplementedException();
1894public IEnumerator GetEnumerator() => throw new NotImplementedException();
1899protected void Add(object key, object value) => throw new NotImplementedException();
1900public IEnumerator GetEnumerator() => throw new NotImplementedException();
3101int ICollection<object>.Count => throw new NotImplementedException();
3103int ICollection<int>.Count => throw new NotImplementedException();
3105bool ICollection<object>.IsReadOnly => throw new NotImplementedException();
3107bool ICollection<int>.IsReadOnly => throw new NotImplementedException();
3109void ICollection<object>.Add(object item) => throw new NotImplementedException();
3111void ICollection<int>.Add(int item) => throw new NotImplementedException();
3113void ICollection<object>.Clear() => throw new NotImplementedException();
3115void ICollection<int>.Clear() => throw new NotImplementedException();
3117bool ICollection<object>.Contains(object item) => throw new NotImplementedException();
3119bool ICollection<int>.Contains(int item) => throw new NotImplementedException();
3121void ICollection<object>.CopyTo(object[] array, int arrayIndex) => throw new NotImplementedException();
3123void ICollection<int>.CopyTo(int[] array, int arrayIndex) => throw new NotImplementedException();
3125IEnumerator<object> IEnumerable<object>.GetEnumerator() => throw new NotImplementedException();
3127IEnumerator IEnumerable.GetEnumerator() => throw new NotImplementedException();
3129IEnumerator<int> IEnumerable<int>.GetEnumerator() => throw new NotImplementedException();
3131bool ICollection<object>.Remove(object item) => throw new NotImplementedException();
3133bool ICollection<int>.Remove(int item) => throw new NotImplementedException();
3138int IDictionary<string, int>.this[string key] { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
3140string IDictionary<int, string>.this[int key] { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
3142ICollection<string> IDictionary<string, int>.Keys => throw new NotImplementedException();
3144ICollection<int> IDictionary<int, string>.Keys => throw new NotImplementedException();
3146ICollection<int> IDictionary<string, int>.Values => throw new NotImplementedException();
3148ICollection<string> IDictionary<int, string>.Values => throw new NotImplementedException();
3150int ICollection<KeyValuePair<string, int>>.Count => throw new NotImplementedException();
3152int ICollection<KeyValuePair<int, string>>.Count => throw new NotImplementedException();
3154bool ICollection<KeyValuePair<string, int>>.IsReadOnly => throw new NotImplementedException();
3156bool ICollection<KeyValuePair<int, string>>.IsReadOnly => throw new NotImplementedException();
3158void IDictionary<string, int>.Add(string key, int value) => throw new NotImplementedException();
3160void ICollection<KeyValuePair<string, int>>.Add(KeyValuePair<string, int> item) => throw new NotImplementedException();
3162void IDictionary<int, string>.Add(int key, string value) => throw new NotImplementedException();
3164void ICollection<KeyValuePair<int, string>>.Add(KeyValuePair<int, string> item) => throw new NotImplementedException();
3166void ICollection<KeyValuePair<string, int>>.Clear() => throw new NotImplementedException();
3168void ICollection<KeyValuePair<int, string>>.Clear() => throw new NotImplementedException();
3170bool ICollection<KeyValuePair<string, int>>.Contains(KeyValuePair<string, int> item) => throw new NotImplementedException();
3172bool ICollection<KeyValuePair<int, string>>.Contains(KeyValuePair<int, string> item) => throw new NotImplementedException();
3174bool IDictionary<string, int>.ContainsKey(string key) => throw new NotImplementedException();
3176bool IDictionary<int, string>.ContainsKey(int key) => throw new NotImplementedException();
3178void ICollection<KeyValuePair<string, int>>.CopyTo(KeyValuePair<string, int>[] array, int arrayIndex) => throw new NotImplementedException();
3180void ICollection<KeyValuePair<int, string>>.CopyTo(KeyValuePair<int, string>[] array, int arrayIndex) => throw new NotImplementedException();
3182IEnumerator<KeyValuePair<string, int>> IEnumerable<KeyValuePair<string, int>>.GetEnumerator() => throw new NotImplementedException();
3184IEnumerator IEnumerable.GetEnumerator() => throw new NotImplementedException();
3186IEnumerator<KeyValuePair<int, string>> IEnumerable<KeyValuePair<int, string>>.GetEnumerator() => throw new NotImplementedException();
3188bool IDictionary<string, int>.Remove(string key) => throw new NotImplementedException();
3190bool ICollection<KeyValuePair<string, int>>.Remove(KeyValuePair<string, int> item) => throw new NotImplementedException();
3192bool IDictionary<int, string>.Remove(int key) => throw new NotImplementedException();
3194bool ICollection<KeyValuePair<int, string>>.Remove(KeyValuePair<int, string> item) => throw new NotImplementedException();
3196bool IDictionary<string, int>.TryGetValue(string key, out int value) => throw new NotImplementedException();
3198bool IDictionary<int, string>.TryGetValue(int key, out string value) => throw new NotImplementedException();
3203public int Count => throw new NotImplementedException();
3205public object SyncRoot => throw new NotImplementedException();
3207public bool IsSynchronized => throw new NotImplementedException();
3209public void CopyTo(Array array, int index) => throw new NotImplementedException();
3211public IEnumerator GetEnumerator() => throw new NotImplementedException();
3224public object? this[int index] { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
3226public bool IsReadOnly => throw new NotImplementedException();
3228public bool IsFixedSize => throw new NotImplementedException();
3230public int Add(object? value) => throw new NotImplementedException();
3232public void Clear() => throw new NotImplementedException();
3234public bool Contains(object? value) => throw new NotImplementedException();
3236public int IndexOf(object? value) => throw new NotImplementedException();
3238public void Insert(int index, object? value) => throw new NotImplementedException();
3240public void Remove(object? value) => throw new NotImplementedException();
3242public void RemoveAt(int index) => throw new NotImplementedException();
3255public object? this[object key] { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
3257public ICollection Keys => throw new NotImplementedException();
3259public ICollection Values => throw new NotImplementedException();
3261public bool IsReadOnly => throw new NotImplementedException();
3263public bool IsFixedSize => throw new NotImplementedException();
3265public int Count => throw new NotImplementedException();
3267public object SyncRoot => throw new NotImplementedException();
3269public bool IsSynchronized => throw new NotImplementedException();
3271public void Add(object key, object? value) => throw new NotImplementedException();
3273public void Clear() => throw new NotImplementedException();
3275public bool Contains(object key) => throw new NotImplementedException();
3277public void CopyTo(Array array, int index) => throw new NotImplementedException();
3279public IDictionaryEnumerator GetEnumerator() => throw new NotImplementedException();
3281public void Remove(object key) => throw new NotImplementedException();
3283IEnumerator IEnumerable.GetEnumerator() => throw new NotImplementedException();
5267throw new NotImplementedException();
5273public object[] GetCustomAttributes(bool inherit) => throw new NotImplementedException();
5281throw new NotImplementedException();
5296throw new NotImplementedException();
Test.Utilities (28)
Text.Analyzers (44)
UIAutomationClientSideProviders (3)
WindowsBase.Tests (204)
XmlFormattersWebSite (1)
xunit.assert (6)
259 references to NotImplementedException
Aspire.Components.Common.TestUtilities (1)
dotnet-svcutil-lib (1)
GenerateDocumentationAndConfigFiles (3)
Metrics (2)
Metrics.Legacy (2)
Microsoft.Arcade.Common (1)
Microsoft.AspNetCore.CookiePolicy.Test (4)
Microsoft.AspNetCore.Hosting.Tests (1)
Microsoft.AspNetCore.Http.Abstractions.Tests (1)
Microsoft.AspNetCore.Http.Connections.Client (1)
Microsoft.AspNetCore.Identity.Test (2)
Microsoft.AspNetCore.InternalTesting.Tests (6)
Microsoft.AspNetCore.Mvc.Abstractions.Test (5)
Microsoft.AspNetCore.Mvc.Core.Test (6)
Microsoft.AspNetCore.Mvc.Formatters.Xml (1)
Microsoft.AspNetCore.Mvc.NewtonsoftJson.Test (3)
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (2)
Microsoft.AspNetCore.Shared.Tests (3)
Microsoft.AspNetCore.SignalR.Tests (2)
Microsoft.AspNetCore.StaticAssets (1)
Microsoft.AspNetCore.StaticFiles (1)
Microsoft.Build.Engine.UnitTests (1)
Microsoft.Build.Framework (1)
Microsoft.CodeAnalysis (1)
Microsoft.CodeAnalysis.Analyzers (3)
Microsoft.CodeAnalysis.AnalyzerUtilities (1)
Microsoft.CodeAnalysis.BannedApiAnalyzers (2)
Microsoft.CodeAnalysis.CodeStyle (1)
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (2)
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (4)
Diagnostics\DiagnosticSuppressorTests.cs (4)
390var expectedException = new NotImplementedException();
411Diagnostic("AD0001").WithArguments(suppressor.ToString(), typeof(NotImplementedException).FullName, new NotImplementedException().Message, context).WithLocation(1, 1),
432var expectedException = new NotImplementedException();
455Diagnostic("AD0001").WithArguments(suppressor.ToString(), typeof(NotImplementedException).FullName, new NotImplementedException().Message, context).WithLocation(1, 1),
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ResultProvider (1)
Microsoft.CodeAnalysis.CSharp.Features (1)
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler (3)
Microsoft.CodeAnalysis.ExpressionEvaluator.FunctionResolver (3)
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider (1)
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (1)
Microsoft.CodeAnalysis.Extensions.Package (1)
Microsoft.CodeAnalysis.Features (2)
Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers (2)
Microsoft.CodeAnalysis.PublicApiAnalyzers (1)
Microsoft.CodeAnalysis.PublicApiAnalyzers.CodeFixes (1)
Microsoft.CodeAnalysis.ResxSourceGenerator (1)
Microsoft.CodeAnalysis.Test.Utilities (4)
Microsoft.CodeAnalysis.UnitTests (1)
Microsoft.CodeAnalysis.Workspaces (2)
Microsoft.CodeAnalysis.Workspaces.UnitTests (3)
Microsoft.CommonLanguageServerProtocol.Framework.UnitTests (1)
Microsoft.Data.Analysis.Tests (16)
Microsoft.DotNet.Build.Manifest (1)
Microsoft.DotNet.Build.Tasks.Feed (1)
Microsoft.DotNet.SignTool.Tests (1)
Microsoft.DotNet.VersionTools.Cli.Tests (1)
Microsoft.Extensions.AI.Tests (1)
Microsoft.Maui.Controls.Maps (2)
Microsoft.Maui.Graphics (1)
Microsoft.ML.Fairlearn (1)
Microsoft.VisualStudio.LanguageServices (1)
Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests (58)
mscorlib (1)
netstandard (1)
PresentationCore (2)
PresentationFramework (2)
Roslyn.Diagnostics.Analyzers (3)
Sockets.BindTests (1)
System.ComponentModel.Annotations (4)
System.ComponentModel.Composition (7)
System.Composition.Hosting (2)
System.Drawing.Common (2)
System.Drawing.Common.Tests (4)
System.IO.Pipelines (2)
System.Net.WebClient (1)
System.Private.CoreLib (3)
System.Private.Windows.Core.TestUtilities (1)
System.Runtime (1)
System.Security.Cryptography (24)
System.Threading.Tasks.Dataflow (1)
System.Windows.Forms.Design.Tests (8)
System.Windows.Forms.Tests (3)
System.Xaml.Tests (1)
Test.Utilities (2)
Text.Analyzers (3)
UIAutomationClientSideProviders (1)