2032 references to Action
aspire (4)
Commands\RunCommand.cs (2)
590async Task ProcessResourceStatesAsync(Action<string, string> endpointWriter) 1426public void ProcessResourceState(RpcResourceState resourceState, Action<string, string> endpointWriter)
Processes\IsolatedProcess.cs (2)
134public event Action<IsolatedProcess, string>? OutputDataReceived; 137public event Action<IsolatedProcess, string>? ErrorDataReceived;
Aspire.Azure.Npgsql.EntityFrameworkCore.PostgreSQL (1)
src\Components\Common\EntityFrameworkUtils.cs (1)
17public static TSettings GetDbContextSettings<TContext, TSettings>(this IHostApplicationBuilder builder, string defaultConfigSectionName, string? connectionName, Action<TSettings, IConfiguration> bindSettings)
Aspire.Cli.Tests (5)
TestServices\TestConfigurationService.cs (1)
14public Action<string, bool>? OnDeleteConfiguration { get; set; }
TestServices\TestExtensionInteractionService.cs (3)
30public Action<string, bool>? ConsoleDisplaySubtleMessageCallback { get; set; } 275public Action<int, string>? RequestAppHostAttachCallback { get; set; } 283public Action<LogLevel, string>? LogMessageCallback { get; set; }
TestServices\TestInteractionService.cs (1)
30public Action<string?, ConsoleOutput?>? DisplayCancellationMessageCallback { get; set; }
Aspire.Components.Common.TestUtilities (1)
ConformanceTests.cs (1)
702private static bool CheckIfImplemented(Action<TOptions, bool> action)
Aspire.Confluent.Kafka (34)
AspireKafkaConsumerExtensions.cs (17)
25/// <inheritdoc cref="AddKafkaConsumer{TKey,TValue}(IHostApplicationBuilder, string, Action{KafkaConsumerSettings}?, Action{IServiceProvider,ConsumerBuilder{TKey,TValue}}?)"/> 29/// <inheritdoc cref="AddKafkaConsumer{TKey,TValue}(IHostApplicationBuilder, string, Action{KafkaConsumerSettings}?, Action{IServiceProvider,ConsumerBuilder{TKey,TValue}}?)"/> 33/// <inheritdoc cref="AddKafkaConsumer{TKey,TValue}(IHostApplicationBuilder, string, Action{KafkaConsumerSettings}?, Action{IServiceProvider,ConsumerBuilder{TKey,TValue}}?)"/> 37/// <inheritdoc cref="AddKafkaConsumer{TKey,TValue}(IHostApplicationBuilder, string, Action{KafkaConsumerSettings}?, Action{IServiceProvider,ConsumerBuilder{TKey,TValue}}?)"/> 38public static void AddKafkaConsumer<TKey, TValue>(this IHostApplicationBuilder builder, string connectionName, Action<IServiceProvider, ConsumerBuilder<TKey, TValue>>? configureBuilder) 41/// <inheritdoc cref="AddKafkaConsumer{TKey,TValue}(IHostApplicationBuilder, string, Action{KafkaConsumerSettings}?, Action{IServiceProvider,ConsumerBuilder{TKey,TValue}}?)"/> 53public static void AddKafkaConsumer<TKey, TValue>(this IHostApplicationBuilder builder, string connectionName, Action<KafkaConsumerSettings>? configureSettings, Action<IServiceProvider, ConsumerBuilder<TKey, TValue>>? configureBuilder) 56/// <inheritdoc cref="AddKeyedKafkaConsumer{TKey, TValue}(IHostApplicationBuilder, string, Action{KafkaConsumerSettings}?, Action{IServiceProvider, ConsumerBuilder{TKey, TValue}}?)"/> 64/// <inheritdoc cref="AddKeyedKafkaConsumer{TKey, TValue}(IHostApplicationBuilder, string, Action{KafkaConsumerSettings}?, Action{IServiceProvider, ConsumerBuilder{TKey, TValue}}?)"/> 72/// <inheritdoc cref="AddKeyedKafkaConsumer{TKey, TValue}(IHostApplicationBuilder, string, Action{KafkaConsumerSettings}?, Action{IServiceProvider, ConsumerBuilder{TKey, TValue}}?)"/> 80/// <inheritdoc cref="AddKeyedKafkaConsumer{TKey, TValue}(IHostApplicationBuilder, string, Action{KafkaConsumerSettings}?, Action{IServiceProvider, ConsumerBuilder{TKey, TValue}}?)"/> 81public static void AddKeyedKafkaConsumer<TKey, TValue>(this IHostApplicationBuilder builder, string name, Action<IServiceProvider, ConsumerBuilder<TKey, TValue>>? configureBuilder) 88/// <inheritdoc cref="AddKeyedKafkaConsumer{TKey, TValue}(IHostApplicationBuilder, string, Action{KafkaConsumerSettings}?, Action{IServiceProvider, ConsumerBuilder{TKey, TValue}}?)"/> 104public static void AddKeyedKafkaConsumer<TKey, TValue>(this IHostApplicationBuilder builder, string name, Action<KafkaConsumerSettings>? configureSettings, Action<IServiceProvider, ConsumerBuilder<TKey, TValue>>? configureBuilder) 114Action<IServiceProvider, ConsumerBuilder<TKey, TValue>>? configureBuilder, 201private static InstrumentedConsumerBuilder<TKey, TValue> CreateConsumerBuilder<TKey, TValue>(IServiceProvider serviceProvider, Action<IServiceProvider, ConsumerBuilder<TKey, TValue>>? configureBuilder, KafkaConsumerSettings settings) 271private static Action<IServiceProvider, ConsumerBuilder<TKey, TValue>>? Wrap<TKey, TValue>(Action<ConsumerBuilder<TKey, TValue>>? action)
AspireKafkaProducerExtensions.cs (17)
25/// <inheritdoc cref="AddKafkaProducer{TKey, TValue}(IHostApplicationBuilder, string, Action{KafkaProducerSettings}?, Action{IServiceProvider, ProducerBuilder{TKey, TValue}}?)"/> 29/// <inheritdoc cref="AddKafkaProducer{TKey, TValue}(IHostApplicationBuilder, string, Action{KafkaProducerSettings}?, Action{IServiceProvider, ProducerBuilder{TKey, TValue}}?)"/> 33/// <inheritdoc cref="AddKafkaProducer{TKey, TValue}(IHostApplicationBuilder, string, Action{KafkaProducerSettings}?, Action{IServiceProvider, ProducerBuilder{TKey, TValue}}?)"/> 37/// <inheritdoc cref="AddKafkaProducer{TKey, TValue}(IHostApplicationBuilder, string, Action{KafkaProducerSettings}?, Action{IServiceProvider, ProducerBuilder{TKey, TValue}}?)"/> 38public static void AddKafkaProducer<TKey, TValue>(this IHostApplicationBuilder builder, string connectionName, Action<IServiceProvider, ProducerBuilder<TKey, TValue>>? configureBuilder) 41/// <inheritdoc cref="AddKafkaProducer{TKey, TValue}(IHostApplicationBuilder, string, Action{KafkaProducerSettings}?, Action{IServiceProvider, ProducerBuilder{TKey, TValue}}?)"/> 53public static void AddKafkaProducer<TKey, TValue>(this IHostApplicationBuilder builder, string connectionName, Action<KafkaProducerSettings>? configureSettings, Action<IServiceProvider, ProducerBuilder<TKey, TValue>>? configureBuilder) 56/// <inheritdoc cref="AddKeyedKafkaProducer{TKey, TValue}(IHostApplicationBuilder, string, Action{KafkaProducerSettings}?, Action{IServiceProvider, ProducerBuilder{TKey, TValue}}?)"/> 64/// <inheritdoc cref="AddKeyedKafkaProducer{TKey, TValue}(IHostApplicationBuilder, string, Action{KafkaProducerSettings}?, Action{IServiceProvider, ProducerBuilder{TKey, TValue}}?)"/> 72/// <inheritdoc cref="AddKeyedKafkaProducer{TKey, TValue}(IHostApplicationBuilder, string, Action{KafkaProducerSettings}?, Action{IServiceProvider, ProducerBuilder{TKey, TValue}}?)"/> 80/// <inheritdoc cref="AddKeyedKafkaProducer{TKey, TValue}(IHostApplicationBuilder, string, Action{KafkaProducerSettings}?, Action{IServiceProvider, ProducerBuilder{TKey, TValue}}?)"/> 81public static void AddKeyedKafkaProducer<TKey, TValue>(this IHostApplicationBuilder builder, string name, Action<IServiceProvider, ProducerBuilder<TKey, TValue>>? configureBuilder) 88/// <inheritdoc cref="AddKeyedKafkaProducer{TKey, TValue}(IHostApplicationBuilder, string, Action{KafkaProducerSettings}?, Action{IServiceProvider, ProducerBuilder{TKey, TValue}}?)"/> 104public static void AddKeyedKafkaProducer<TKey, TValue>(this IHostApplicationBuilder builder, string name, Action<KafkaProducerSettings>? configureSettings, Action<IServiceProvider, ProducerBuilder<TKey, TValue>>? configureBuilder) 114Action<IServiceProvider, ProducerBuilder<TKey, TValue>>? configureBuilder, 201private static InstrumentedProducerBuilder<TKey, TValue> CreateProducerBuilder<TKey, TValue>(IServiceProvider serviceProvider, Action<IServiceProvider, ProducerBuilder<TKey, TValue>>? configureBuilder, KafkaProducerSettings settings) 272private static Action<IServiceProvider, ProducerBuilder<TKey, TValue>>? Wrap<TKey, TValue>(Action<ProducerBuilder<TKey, TValue>>? action)
Aspire.Confluent.Kafka.Tests (8)
ConfluentKafkaPublicApiTests.cs (8)
25Action<IServiceProvider, ConsumerBuilder<string, string>>? configureBuilderWithServiceProvider = null; 61Action<IServiceProvider, ConsumerBuilder<string, string>>? configureBuilderWithServiceProvider = null; 93Action<IServiceProvider, ConsumerBuilder<string, string>>? configureBuilderWithServiceProvider = null; 129Action<IServiceProvider, ConsumerBuilder<string, string>>? configureBuilderWithServiceProvider = null; 161Action<IServiceProvider, ProducerBuilder<string, string>>? configureBuilderWithServiceProvider = null; 197Action<IServiceProvider, ProducerBuilder<string, string>>? configureBuilderWithServiceProvider = null; 229Action<IServiceProvider, ProducerBuilder<string, string>>? configureBuilderWithServiceProvider = null; 265Action<IServiceProvider, ProducerBuilder<string, string>>? configureBuilderWithServiceProvider = null;
Aspire.Dashboard (4)
Api\TelemetryApiService.cs (1)
361Action<SearchFilter, List<TelemetryFilter>> addFilters,
Utils\MaxItemCountHelper.cs (3)
22private static readonly Action<Virtualize<TItem>, int>? s_setMaxItemCount = 41private static Action<Virtualize<TItem>, int>? CreateSetter() 55return Expression.Lambda<Action<Virtualize<TItem>, int>>(body, instance, valueParam).Compile();
Aspire.Dashboard.Components.Tests (3)
Shared\FluentUISetupHelpers.cs (1)
279public Action<DashboardRunDescriptor, bool>? OnSetRunPinned { get; set; }
Shared\TestLocalStorage.cs (1)
12public Action<string, object?>? OnSetUnprotectedAsync { get; set; }
tests\Shared\TestSessionStorage.cs (1)
12public Action<string, object?>? OnSetAsync { get; set; }
Aspire.Dashboard.Tests (3)
Model\TestOptionsMonitor.cs (1)
22public IDisposable? OnChange(Action<T, string?> listener)
OtlpApiKeyAuthenticationHandlerTests.cs (1)
112public IDisposable OnChange(Action<T, string> listener) => throw new NotImplementedException();
tests\Shared\TestSessionStorage.cs (1)
12public Action<string, object?>? OnSetAsync { get; set; }
Aspire.Hosting (3)
ApplicationModel\ResourceExtensions.cs (1)
616Action<string?, Exception?> processValue,
Diagnostics\ProfilingTelemetry.cs (1)
852public void AnnotateTraceContext(Action<string, string> annotate)
ResourceBuilderExtensions.cs (1)
1531private static IResourceBuilder<T> WithWellKnownEndpointCallback<T>(this IResourceBuilder<T> builder, Action<EndpointUpdateContext> callback, string endpointName, bool createIfNotExists, Action<IResourceBuilder<T>, string> createEndpoint) where T : IResourceWithEndpoints
Aspire.Hosting.Azure.AppContainers (15)
AzureContainerAppContainerExtensions.cs (1)
35public static IResourceBuilder<T> PublishAsAzureContainerApp<T>(this IResourceBuilder<T> container, Action<AzureResourceInfrastructure, ContainerApp> configure)
AzureContainerAppCustomizationAnnotation.cs (2)
12public sealed class AzureContainerAppCustomizationAnnotation(Action<AzureResourceInfrastructure, ContainerApp> configure) 18public Action<AzureResourceInfrastructure, ContainerApp> Configure { get; } = configure ?? throw new ArgumentNullException(nameof(configure));
AzureContainerAppExecutableExtensions.cs (1)
35public static IResourceBuilder<T> PublishAsAzureContainerApp<T>(this IResourceBuilder<T> executable, Action<AzureResourceInfrastructure, ContainerApp> configure)
AzureContainerAppJobCustomizationAnnotation.cs (2)
12public sealed class AzureContainerAppJobCustomizationAnnotation(Action<AzureResourceInfrastructure, ContainerAppJob> configure) 18public Action<AzureResourceInfrastructure, ContainerAppJob> Configure { get; } = configure ?? throw new ArgumentNullException(nameof(configure));
AzureContainerAppProjectExtensions.cs (1)
36public static IResourceBuilder<T> PublishAsAzureContainerApp<T>(this IResourceBuilder<T> project, Action<AzureResourceInfrastructure, ContainerApp> configure)
ContainerAppExtensions.cs (7)
28/// in conjunction with the <see cref="AzureContainerAppContainerExtensions.PublishAsAzureContainerApp{T}(IResourceBuilder{T}, Action{AzureResourceInfrastructure, ContainerApp})"/> 42/// method via the <see cref="AzureContainerAppContainerExtensions.PublishAsAzureContainerApp{T}(IResourceBuilder{T}, Action{AzureResourceInfrastructure, ContainerApp})"/> 153public static IResourceBuilder<T> PublishAsAzureContainerAppJob<T>(this IResourceBuilder<T> resource, Action<AzureResourceInfrastructure, ContainerAppJob> configure) 208Action<AzureResourceInfrastructure, ContainerAppJob>? configure = null) 227/// This method is a convenience wrapper around <see cref="PublishAsAzureContainerAppJob{T}(IResourceBuilder{T}, Action{AzureResourceInfrastructure, ContainerAppJob})"/> 239public static IResourceBuilder<T> PublishAsScheduledAzureContainerAppJob<T>(this IResourceBuilder<T> resource, string cronExpression, Action<AzureResourceInfrastructure, ContainerAppJob>? configure = null) 261Action<AzureResourceInfrastructure, ContainerAppJob>? configure = null)
src\Shared\ContainerRegistryInfrastructure.cs (1)
31Action<ContainerRegistryService, AzureResourceInfrastructure>? configureNewRegistry)
Aspire.Hosting.Azure.AppService (7)
AzureAppServiceComputeResourceExtensions.cs (2)
36Action<AzureResourceInfrastructure, WebSite>? configure = null, 37Action<AzureResourceInfrastructure, WebSiteSlot>? configureSlot = null)
AzureAppServiceWebsiteCustomizationAnnotation.cs (2)
12public sealed class AzureAppServiceWebsiteCustomizationAnnotation(Action<AzureResourceInfrastructure, WebSite> configure) 18public Action<AzureResourceInfrastructure, WebSite> Configure { get; } = configure ?? throw new ArgumentNullException(nameof(configure));
AzureAppServiceWebsiteSlotCustomizationAnnotation.cs (2)
13public sealed class AzureAppServiceWebsiteSlotCustomizationAnnotation(Action<AzureResourceInfrastructure, WebSiteSlot> configure) 19public Action<AzureResourceInfrastructure, WebSiteSlot> Configure { get; } = configure ?? throw new ArgumentNullException(nameof(configure));
src\Shared\ContainerRegistryInfrastructure.cs (1)
31Action<ContainerRegistryService, AzureResourceInfrastructure>? configureNewRegistry)
Aspire.Hosting.Azure.ContainerRegistry (1)
src\Shared\ContainerRegistryInfrastructure.cs (1)
31Action<ContainerRegistryService, AzureResourceInfrastructure>? configureNewRegistry)
Aspire.Hosting.Azure.Sandboxes (1)
src\Shared\ContainerRegistryInfrastructure.cs (1)
31Action<ContainerRegistryService, AzureResourceInfrastructure>? configureNewRegistry)
Aspire.Hosting.Azure.Tests (7)
PublicApiTests\AppContainersPublicApiTests.cs (7)
16Action<AzureResourceInfrastructure, ContainerApp> configure = (r, c) => { }; 29Action<AzureResourceInfrastructure, ContainerApp> configure = null!; 40Action<AzureResourceInfrastructure, ContainerApp> configure = null!; 52Action<AzureResourceInfrastructure, ContainerApp> configure = (r, c) => { }; 65Action<AzureResourceInfrastructure, ContainerApp> configure = null!; 93Action<AzureResourceInfrastructure, ContainerApp> configure = (r, c) => { }; 106Action<AzureResourceInfrastructure, ContainerApp> configure = null!;
Aspire.Hosting.DevTunnels (1)
DevTunnelCli.cs (1)
238private async Task<int> RunAsync(Action<bool, string> onOutput, string[] args, bool useShellExecute = false, ILogger? logger = default, CancellationToken cancellationToken = default)
Aspire.Hosting.Docker (3)
DockerComposeServiceCustomizationAnnotation.cs (2)
16public sealed class DockerComposeServiceCustomizationAnnotation(Action<DockerComposeServiceResource, Service> configure) : IResourceAnnotation 22public Action<DockerComposeServiceResource, Service> Configure { get; } = configure ?? throw new ArgumentNullException(nameof(configure));
DockerComposeServiceExtensions.cs (1)
35public static IResourceBuilder<T> PublishAsDockerComposeService<T>(this IResourceBuilder<T> builder, Action<DockerComposeServiceResource, Service> configure)
Aspire.Hosting.Foundry (2)
Project\ConnectionBuilderExtensions.cs (1)
44Action<AzureResourceInfrastructure, CognitiveServicesProject>? configureAdditionalInfrastructure)
src\Shared\ContainerRegistryInfrastructure.cs (1)
31Action<ContainerRegistryService, AzureResourceInfrastructure>? configureNewRegistry)
Aspire.Hosting.Testing (16)
DistributedApplicationEntryPointInvoker.cs (6)
20Action<DistributedApplicationOptions, HostApplicationBuilderSettings>? onConstructing = null, 50private readonly Action<DistributedApplicationOptions, HostApplicationBuilderSettings>? _onConstructing; 58Action<DistributedApplicationOptions, HostApplicationBuilderSettings>? onConstructing, 212private readonly Action<DistributedApplicationOptions, HostApplicationBuilderSettings>? _onConstructing; 215private TestingBuilderFactory(Action<DistributedApplicationOptions, HostApplicationBuilderSettings>? onConstructing) 222Action<DistributedApplicationOptions, HostApplicationBuilderSettings>? onConstructing)
DistributedApplicationFactory.cs (1)
246Action<DistributedApplicationOptions, HostApplicationBuilderSettings> configureBuilder)
DistributedApplicationTestingBuilder.cs (9)
165public static Task<IDistributedApplicationTestingBuilder> CreateAsync<TEntryPoint>(string[] args, Action<DistributedApplicationOptions, HostApplicationBuilderSettings> configureBuilder, CancellationToken cancellationToken = default) 179public static async Task<IDistributedApplicationTestingBuilder> CreateAsync(Type entryPoint, string[] args, Action<DistributedApplicationOptions, HostApplicationBuilderSettings> configureBuilder, CancellationToken cancellationToken = default) 186Action<DistributedApplicationOptions, HostApplicationBuilderSettings> configureBuilder, 252public static IDistributedApplicationTestingBuilder Create(string[] args, Action<DistributedApplicationOptions, HostApplicationBuilderSettings> configureBuilder) 258Action<DistributedApplicationOptions, HostApplicationBuilderSettings> configureBuilder, 278Action<DistributedApplicationOptions, HostApplicationBuilderSettings> configureBuilder, 465Action<DistributedApplicationOptions, HostApplicationBuilderSettings> configureBuilder) 612Action<DistributedApplicationOptions, HostApplicationBuilderSettings> configureBuilder, 622Action<DistributedApplicationOptions, HostApplicationBuilderSettings> configureBuilder,
Aspire.Hosting.Testing.Tests (14)
TestingBuilderTests.cs (4)
92Action<DistributedApplicationOptions, HostApplicationBuilderSettings> configureBuilder = (options, settings) => 225Action<DistributedApplicationOptions, HostApplicationBuilderSettings> configureBuilder = directArgs switch 312Action<DistributedApplicationOptions, HostApplicationBuilderSettings> configureBuilder; 361Action<DistributedApplicationOptions, HostApplicationBuilderSettings> configureBuilder;
TestingPublicApiTests.cs (10)
312Action<DistributedApplicationOptions, HostApplicationBuilderSettings> configureBuilder = (_, _) => { }; 324Action<DistributedApplicationOptions, HostApplicationBuilderSettings> configureBuilder = null!; 338Action<DistributedApplicationOptions, HostApplicationBuilderSettings> configureBuilder = (_, _) => { }; 357Action<DistributedApplicationOptions, HostApplicationBuilderSettings> configureBuilder = (_, _) => { }; 370Action<DistributedApplicationOptions, HostApplicationBuilderSettings> configureBuilder = (_, _) => { }; 383Action<DistributedApplicationOptions, HostApplicationBuilderSettings> configureBuilder = null!; 398Action<DistributedApplicationOptions, HostApplicationBuilderSettings> configureBuilder = (_, _) => { }; 446Action<DistributedApplicationOptions, HostApplicationBuilderSettings> configureBuilder = (_, _) => { }; 458Action<DistributedApplicationOptions, HostApplicationBuilderSettings> configureBuilder = null!; 472Action<DistributedApplicationOptions, HostApplicationBuilderSettings> configureBuilder = (_, _) => { };
Aspire.Hosting.Yarp.Tests (1)
YarpFunctionalTests.cs (1)
33private async Task VerifyYarpResource(Action<IResourceBuilder<YarpResource>, EndpointReference> configurator)
Aspire.Microsoft.EntityFrameworkCore.Cosmos (1)
src\Components\Common\EntityFrameworkUtils.cs (1)
17public static TSettings GetDbContextSettings<TContext, TSettings>(this IHostApplicationBuilder builder, string defaultConfigSectionName, string? connectionName, Action<TSettings, IConfiguration> bindSettings)
Aspire.Microsoft.EntityFrameworkCore.SqlServer (1)
src\Components\Common\EntityFrameworkUtils.cs (1)
17public static TSettings GetDbContextSettings<TContext, TSettings>(this IHostApplicationBuilder builder, string defaultConfigSectionName, string? connectionName, Action<TSettings, IConfiguration> bindSettings)
Aspire.MongoDB.EntityFrameworkCore (1)
src\Components\Common\EntityFrameworkUtils.cs (1)
17public static TSettings GetDbContextSettings<TContext, TSettings>(this IHostApplicationBuilder builder, string defaultConfigSectionName, string? connectionName, Action<TSettings, IConfiguration> bindSettings)
Aspire.Npgsql.EntityFrameworkCore.PostgreSQL (1)
src\Components\Common\EntityFrameworkUtils.cs (1)
17public static TSettings GetDbContextSettings<TContext, TSettings>(this IHostApplicationBuilder builder, string defaultConfigSectionName, string? connectionName, Action<TSettings, IConfiguration> bindSettings)
Aspire.Oracle.EntityFrameworkCore (1)
src\Components\Common\EntityFrameworkUtils.cs (1)
17public static TSettings GetDbContextSettings<TContext, TSettings>(this IHostApplicationBuilder builder, string defaultConfigSectionName, string? connectionName, Action<TSettings, IConfiguration> bindSettings)
Aspire.Pomelo.EntityFrameworkCore.MySql (1)
src\Components\Common\EntityFrameworkUtils.cs (1)
17public static TSettings GetDbContextSettings<TContext, TSettings>(this IHostApplicationBuilder builder, string defaultConfigSectionName, string? connectionName, Action<TSettings, IConfiguration> bindSettings)
Aspire.StackExchange.Redis (2)
src\Vendoring\OpenTelemetry.Instrumentation.StackExchangeRedis\StackExchangeRedisInstrumentationOptions.cs (1)
63public Action<Activity, RedisInstrumentationContext>? Enrich { get; set; }
src\Vendoring\OpenTelemetry.Instrumentation.StackExchangeRedis\TracerProviderBuilderExtensions.cs (1)
195Action<IServiceProvider, StackExchangeRedisInstrumentation> configure)
Aspire.StackExchange.Redis.DistributedCaching (1)
AspireRedisDistributedCacheExtensions.cs (1)
121private static void AddRedisDistributedCacheCore(this IHostApplicationBuilder builder, Action<RedisCacheOptions, IServiceProvider> configureRedisOptions)
Aspire.StackExchange.Redis.OutputCaching (1)
AspireRedisOutputCacheExtensions.cs (1)
102private static void AddRedisOutputCacheCore(this IHostApplicationBuilder builder, Action<RedisOutputCacheOptions, IServiceProvider> configureRedisOptions)
csc (2)
src\roslyn\src\Compilers\Shared\RuntimeHostInfo.cs (2)
49internal static string? GetToolDotNetRoot(IBuildEnvironment buildEnvironment, Action<string, object[]>? logger) 52internal static string? GetToolDotNetRoot(string dotNetHostPath, Action<string, object[]>? logger)
dotnet-aot (2)
parent\dotnet\Commands\Run\CommonRunHelpers.cs (2)
144Action<string, bool> report, 199Action<string, string?> apply)
dotnet-sourcelink (1)
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\AsyncResult.cs (2)
95protected Action<AsyncResult, Exception> OnCompleting { get; set; } 106protected Action<AsyncCallback, IAsyncResult> VirtualCallback
FrameworkFork\System.ServiceModel\Internals\System\Runtime\InputQueue.cs (2)
38public InputQueue(Func<Action<AsyncCallback, IAsyncResult>> asyncCallbackGenerator) 64private Func<Action<AsyncCallback, IAsyncResult>> AsyncCallbackGenerator
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (2)
448private Action<Task<int>, object> _onRead; 449private Action<Task, object> _onWrite;
FrameworkFork\System.ServiceModel\System\ServiceModel\Diagnostics\TraceAsyncResult.cs (1)
12private static Action<AsyncCallback, IAsyncResult> s_waitResultCallback = new Action<AsyncCallback, IAsyncResult>(DoCallback);
GenerateDocumentationAndConfigFiles (21)
src\a1065d420d446521\NamingStylePreferencesEditorConfigSerializer.cs (1)
51Action<string, string> entryWriter,
src\b310f676f7308b7f\SymbolUsageAnalysis.BasicBlockAnalysisData.cs (1)
74public void ForEachCurrentWrite<TArg>(ISymbol symbol, Action<IOperation, TArg> action, TArg arg)
src\roslyn\src\Dependencies\PooledObjects\PooledDelegates.cs (8)
98public static Releaser GetPooledAction<T1, TArg>(Action<T1, TArg> unboundAction, TArg argument, out Action<T1> boundAction) 99=> GetPooledDelegate<ActionWithBoundArgument<T1, TArg>, TArg, Action<T1, TArg>, Action<T1>>(unboundAction, argument, out boundAction); 102/// Gets an <see cref="Action{T1, T2}"/> delegate, which calls <paramref name="unboundAction"/> with the specified 132public static Releaser GetPooledAction<T1, T2, TArg>(Action<T1, T2, TArg> unboundAction, TArg argument, out Action<T1, T2> boundAction) 133=> GetPooledDelegate<ActionWithBoundArgument<T1, T2, TArg>, TArg, Action<T1, T2, TArg>, Action<T1, T2>>(unboundAction, argument, out boundAction); 391: AbstractDelegateWithBoundArgument<ActionWithBoundArgument<T1, TArg>, TArg, Action<T1, TArg>, Action<T1>> 398: AbstractDelegateWithBoundArgument<ActionWithBoundArgument<T1, T2, TArg>, TArg, Action<T1, T2, TArg>, Action<T1, T2>> 400protected override Action<T1, T2> Bind()
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\ObjectWriterExtensions.cs (1)
13public static void WriteArray<T>(this ObjectWriter writer, ImmutableArray<T> values, Action<ObjectWriter, T> write)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Engine\AbstractFormatEngine.cs (6)
167var addIndentBlockOperations = _formattingRules.AddIndentBlockOperations; 168var addSuppressOperation = _formattingRules.AddSuppressOperations; 169var addAlignTokensOperations = _formattingRules.AddAlignTokensOperations; 170var addAnchorIndentationOperations = _formattingRules.AddAnchorIndentationOperations; 189private static void AddOperations<T>(SegmentedList<T> operations, List<T> scratch, SyntaxNode node, Action<List<T>, SyntaxNode> addOperations) 203private static void AddOperations<T>(SegmentedList<T> operations, ArrayBuilder<T> scratch, SyntaxNode node, Action<ArrayBuilder<T>, SyntaxNode> addOperations)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\ObjectPools\PooledObject.cs (2)
19private readonly Action<ObjectPool<T>, T> _releaser; 22public PooledObject(ObjectPool<T> pool, Func<ObjectPool<T>, T> allocator, Action<ObjectPool<T>, T> releaser) : this()
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Extensions\StringBuilderExtensions.cs (2)
21this StringBuilder builder, string separator, SeparatedSyntaxList<TNode> values, Action<TNode, StringBuilder> append) 37public static StringBuilder AppendJoinedValues<T>(this StringBuilder builder, string separator, ImmutableArray<T> values, Action<T, StringBuilder> append)
ILCompiler.Compiler (4)
Compiler\GenericRootProvider.cs (2)
12private readonly Action<TState, IRootingServiceProvider> _addRoots; 14public GenericRootProvider(TState state, Action<TState, IRootingServiceProvider> addRootsMethod) =>
parent\parent\Common\Compiler\InstructionSetSupport.cs (1)
319Action<string, string> invalidInstructionSetImplication)
src\runtime\src\tools\illink\src\ILLink.Shared\DataFlow\ForwardDataFlowAnalysis.cs (1)
192Action<IControlFlowGraph<TBlock, TRegion>.ControlFlowBranch, TValue> updateState
ILCompiler.MetadataTransform (20)
ILCompiler\Metadata\EntityMap.cs (2)
25public TRecord GetOrCreate<TConcreteEntity, TConcreteRecord>(TConcreteEntity entity, Action<TConcreteEntity, TConcreteRecord> initializer) 69public TConcreteRecord Create<TConcreteEntity, TConcreteRecord>(TConcreteEntity entity, Action<TConcreteEntity, TConcreteRecord> initializer)
ILCompiler\Metadata\Transform.Field.cs (2)
22private Action<Cts.FieldDesc, Field> _initFieldDef; 23private Action<Cts.FieldDesc, MemberReference> _initFieldRef;
ILCompiler\Metadata\Transform.Method.cs (3)
24private Action<Cts.MethodDesc, Method> _initMethodDef; 25private Action<Cts.MethodDesc, MemberReference> _initMethodRef; 26private Action<Cts.MethodDesc, MethodInstantiation> _initMethodInst;
ILCompiler\Metadata\Transform.Scope.cs (2)
25private Action<Cts.ModuleDesc, ScopeDefinition> _initScopeDef; 92private Action<AssemblyNameInfo, ScopeReference> _initScopeRef;
ILCompiler\Metadata\Transform.Type.cs (10)
23private Action<Cts.MetadataType, TypeDefinition> _initTypeDef; 24private Action<Cts.MetadataType, TypeReference> _initTypeRef; 25private Action<Cts.ArrayType, TypeSpecification> _initSzArray; 26private Action<Cts.ArrayType, TypeSpecification> _initArray; 27private Action<Cts.ByRefType, TypeSpecification> _initByRef; 28private Action<Cts.PointerType, TypeSpecification> _initPointer; 29private Action<Cts.FunctionPointerType, TypeSpecification> _initFunctionPointer; 30private Action<Cts.TypeDesc, TypeSpecification> _initTypeInst; 31private Action<Cts.SignatureTypeVariable, TypeSpecification> _initTypeVar; 32private Action<Cts.SignatureMethodVariable, TypeSpecification> _initMethodVar;
ILCompiler\Metadata\Transform.TypeForwarders.cs (1)
24private Action<ForwarderKey, TypeForwarder> _initForwarder;
ILCompiler.ReadyToRun (2)
Compiler\DependencyAnalysis\ReadyToRun\AttributePresenceFilterNode.cs (1)
386Action<uint, ushort> fillEmptyEntryInBucket = (uint bucketIndex, ushort fprint) =>
parent\parent\Common\Compiler\InstructionSetSupport.cs (1)
319Action<string, string> invalidInstructionSetImplication)
illink (1)
ILLink.RoslynAnalyzer (1)
src\runtime\src\tools\illink\src\ILLink.Shared\DataFlow\ForwardDataFlowAnalysis.cs (1)
192Action<IControlFlowGraph<TBlock, TRegion>.ControlFlowBranch, TValue> updateState
Infrastructure.Tests (1)
TestTriggerMap\SelectTestsCliTests.cs (1)
1235private static void WithGitRepo(Action<string, Func<IReadOnlyDictionary<string, string>>> body)
Microsoft.Analyzers.Extra (21)
CallAnalysis\CallAnalyzer.Handlers.cs (5)
32foreach (var handler in handlers) 50foreach (var action in h.Actions) 69foreach (var action in h.Actions) 91foreach (var handler in handlers) 105foreach (var handler in handlers)
CallAnalysis\CallAnalyzer.Registrar.cs (11)
33public void RegisterMethod(IMethodSymbol method, Action<OperationAnalysisContext, IInvocationOperation> action) 50public void RegisterMethods(string typeName, string methodName, Action<OperationAnalysisContext, IInvocationOperation> action) 66public void RegisterMethods(Dictionary<string, string[]> methods, Action<OperationAnalysisContext, IInvocationOperation> action) 87public void RegisterConstructor(IMethodSymbol ctor, Action<OperationAnalysisContext, IObjectCreationOperation> action) 101public void RegisterConstructors(string typeName, Action<OperationAnalysisContext, IObjectCreationOperation> action) 109public void RegisterConstructors(string[] typeNames, Action<OperationAnalysisContext, IObjectCreationOperation> action) 127public void RegisterProperty(IPropertySymbol prop, Action<OperationAnalysisContext, IPropertyReferenceOperation> action) 144public void RegisterProperties(Dictionary<string, string[]> props, Action<OperationAnalysisContext, IPropertyReferenceOperation> action) 165public void RegisterInterfaceMethod(IMethodSymbol method, Action<OperationAnalysisContext, IInvocationOperation> action) 200public void RegisterInterfaceMethods(Dictionary<string, string[]> methods, Action<OperationAnalysisContext, IInvocationOperation> action) 221public void RegisterExceptionTypes(string[] exceptionTypes, Action<OperationAnalysisContext, IThrowOperation> action)
CallAnalysis\CallAnalyzer.State.cs (5)
16public readonly Dictionary<IMethodSymbol, List<Action<OperationAnalysisContext, IInvocationOperation>>> Methods = new(SymbolEqualityComparer.Default); 17public readonly Dictionary<IMethodSymbol, List<Action<OperationAnalysisContext, IObjectCreationOperation>>> Ctors = new(SymbolEqualityComparer.Default); 18public readonly Dictionary<IPropertySymbol, List<Action<OperationAnalysisContext, IPropertyReferenceOperation>>> Props = new(SymbolEqualityComparer.Default); 19public readonly Dictionary<ITypeSymbol, List<Action<OperationAnalysisContext, IThrowOperation>>> ExceptionTypes = new(SymbolEqualityComparer.Default); 32public List<Action<OperationAnalysisContext, IInvocationOperation>> Actions { get; } = [];
Microsoft.Analyzers.Local (22)
CallAnalysis\CallAnalyzer.Handlers.cs (6)
32foreach (var handler in handlers) 50foreach (var action in h.Actions) 69foreach (var action in h.Actions) 91foreach (var handler in handlers) 105foreach (var handler in handlers) 124foreach (var handler in handlers)
CallAnalysis\CallAnalyzer.Registrar.cs (11)
33public void RegisterMethod(IMethodSymbol method, Action<OperationAnalysisContext, IInvocationOperation> action) 50public void RegisterMethods(string typeName, string methodName, Action<OperationAnalysisContext, IInvocationOperation> action) 66public void RegisterMethods(Dictionary<string, string[]> methods, Action<OperationAnalysisContext, IInvocationOperation> action) 87public void RegisterConstructor(IMethodSymbol ctor, Action<OperationAnalysisContext, IObjectCreationOperation> action) 101public void RegisterConstructors(string typeName, Action<OperationAnalysisContext, IObjectCreationOperation> action) 109public void RegisterConstructors(string[] typeNames, Action<OperationAnalysisContext, IObjectCreationOperation> action) 127public void RegisterProperty(IPropertySymbol prop, Action<OperationAnalysisContext, IPropertyReferenceOperation> action) 144public void RegisterProperties(Dictionary<string, string[]> props, Action<OperationAnalysisContext, IPropertyReferenceOperation> action) 165public void RegisterInterfaceMethod(IMethodSymbol method, Action<OperationAnalysisContext, IInvocationOperation> action) 200public void RegisterInterfaceMethods(Dictionary<string, string[]> methods, Action<OperationAnalysisContext, IInvocationOperation> action) 221public void RegisterExceptionTypes(string[] exceptionTypes, Action<OperationAnalysisContext, IThrowOperation> action)
CallAnalysis\CallAnalyzer.State.cs (5)
16public readonly Dictionary<IMethodSymbol, List<Action<OperationAnalysisContext, IInvocationOperation>>> Methods = new(SymbolEqualityComparer.Default); 17public readonly Dictionary<IMethodSymbol, List<Action<OperationAnalysisContext, IObjectCreationOperation>>> Ctors = new(SymbolEqualityComparer.Default); 18public readonly Dictionary<IPropertySymbol, List<Action<OperationAnalysisContext, IPropertyReferenceOperation>>> Props = new(SymbolEqualityComparer.Default); 19public readonly Dictionary<ITypeSymbol, List<Action<OperationAnalysisContext, IThrowOperation>>> ExceptionTypes = new(SymbolEqualityComparer.Default); 32public List<Action<OperationAnalysisContext, IInvocationOperation>> Actions { get; } = [];
Microsoft.Arcade.Common (1)
ExponentialRetry.cs (1)
41public Action<int, TimeSpan> RetryDelayCallback { get; set; }
Microsoft.AspNetCore (16)
BootstrapHostBuilder.cs (7)
17private readonly List<Action<HostBuilderContext, IConfigurationBuilder>> _configureAppActions = new(); 18private readonly List<Action<HostBuilderContext, IServiceCollection>> _configureServicesActions = new(); 49public IHostBuilder ConfigureAppConfiguration(Action<HostBuilderContext, IConfigurationBuilder> configureDelegate) 55public IHostBuilder ConfigureServices(Action<HostBuilderContext, IServiceCollection> configureDelegate) 67public IHostBuilder ConfigureContainer<TContainerBuilder>(Action<HostBuilderContext, TContainerBuilder> configureDelegate) 94foreach (var configureAppAction in _configureAppActions) 99foreach (var configureServicesAction in _configureServicesActions)
ConfigureHostBuilder.cs (6)
22private readonly List<Action<HostBuilderContext, object>> _configureContainerActions = new(); 44public IHostBuilder ConfigureAppConfiguration(Action<HostBuilderContext, IConfigurationBuilder> configureDelegate) 52public IHostBuilder ConfigureContainer<TContainerBuilder>(Action<HostBuilderContext, TContainerBuilder> configureDelegate) 95public IHostBuilder ConfigureServices(Action<HostBuilderContext, IServiceCollection> configureDelegate) 128foreach (var action in _configureContainerActions) 138foreach (var action in _configureContainerActions)
ConfigureWebHostBuilder.cs (3)
39public IWebHostBuilder ConfigureAppConfiguration(Action<WebHostBuilderContext, IConfigurationBuilder> configureDelegate) 90public IWebHostBuilder ConfigureServices(Action<WebHostBuilderContext, IServiceCollection> configureServices) 173IWebHostBuilder ISupportsStartup.Configure(Action<WebHostBuilderContext, IApplicationBuilder> configure)
Microsoft.AspNetCore.Antiforgery (6)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (6)
25private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ValidatedAntiforgeryTokenCallback = 73private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NewCookieTokenCallback = 89private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ReusedCookieTokenCallback = 105private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TokenDeserializeExceptionCallback = 121private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ResponseCacheHeadersOverridenToNoCacheCallback = 137private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __FailedToDeserialzeTokensCallback =
Microsoft.AspNetCore.Authentication (5)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (5)
25private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SignInHandledCallback = 41private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SignInSkippedCallback = 185private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AccessDeniedErrorCallback = 201private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AccessDeniedContextHandledCallback = 217private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AccessDeniedContextSkippedCallback =
Microsoft.AspNetCore.Authentication.Certificate (2)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (2)
9private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NoCertificateCallback = 25private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NotHttpsCallback =
Microsoft.AspNetCore.Authentication.DeviceBoundSessions (11)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (11)
73private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RegistrationNoSourceAuthenticationCallback = 89private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RegistrationChallengeMissingCallback = 105private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RegistrationChallengeUndecryptableCallback = 121private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RegistrationChallengeMalformedCallback = 137private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RegistrationChallengePrincipalMismatchCallback = 169private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ProofMalformedCallback = 185private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ProofWrongTypeCallback = 201private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ProofMissingAlgorithmCallback = 217private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ProofMissingKeyCallback = 233private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ProofUnsupportedKeyCallback = 249private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ProofSignatureInvalidCallback =
Microsoft.AspNetCore.Authentication.JwtBearer (4)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (4)
9private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TokenValidationFailedCallback = 25private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TokenValidationSucceededCallback = 41private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorProcessingMessageCallback = 57private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ForbiddenResponseHasStartedCallback =
Microsoft.AspNetCore.Authentication.Negotiate (9)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (9)
9private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __IncompleteNegotiateChallengeCallback = 25private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NegotiateCompleteCallback = 41private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __EnablingCredentialPersistenceCallback = 73private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ExceptionProcessingAuthCallback = 89private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ChallengeNegotiateCallback = 105private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ReauthenticatingCallback = 121private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __DeferringCallback = 137private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __CredentialErrorCallback = 153private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ClientErrorCallback =
Microsoft.AspNetCore.Authentication.OpenIdConnect (39)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (39)
9private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UpdatingConfigurationCallback = 25private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ConfigurationManagerRequestRefreshCalledCallback = 41private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AuthorizationCodeReceivedCallback = 57private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TokenResponseReceivedCallback = 73private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ReceivedIdTokenCallback = 89private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RedeemingCodeForTokensCallback = 105private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TokenValidatedHandledResponseCallback = 121private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TokenValidatedSkippedCallback = 137private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AuthorizationCodeReceivedContextHandledResponseCallback = 153private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AuthorizationCodeReceivedContextSkippedCallback = 169private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TokenResponseReceivedHandledResponseCallback = 185private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TokenResponseReceivedSkippedCallback = 201private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AuthenticationFailedContextHandledResponseCallback = 217private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AuthenticationFailedContextSkippedCallback = 249private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __MessageReceivedContextHandledResponseCallback = 265private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __MessageReceivedContextSkippedCallback = 281private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RedirectToIdentityProviderForSignOutHandledResponseCallback = 297private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RedirectToIdentityProviderHandledResponseCallback = 313private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SignOutCallbackRedirectHandledResponseCallback = 329private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SignOutCallbackRedirectSkippedCallback = 345private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UserInformationReceivedHandledResponseCallback = 361private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UserInformationReceivedSkippedCallback = 377private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __PushAuthorizationHandledClientAuthenticationCallback = 393private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __PushAuthorizationHandledPushCallback = 409private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __PushAuthorizationSkippedPushCallback = 441private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NullOrEmptyAuthorizationResponseStateCallback = 457private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UnableToReadAuthorizationResponseStateCallback = 505private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ExceptionProcessingMessageCallback = 521private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AccessTokenNotAvailableCallback = 537private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RetrievingClaimsCallback = 553private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UserInfoEndpointNotSetCallback = 569private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UnableToProtectNonceCookieCallback = 745private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RemoteSignOutHandledResponseCallback = 761private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RemoteSignOutSkippedCallback = 777private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RemoteSignOutCallback = 793private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RemoteSignOutSessionIdMissingCallback = 809private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RemoteSignOutSessionIdInvalidCallback = 857private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RemoteSignOutIssuerMissingCallback = 873private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RemoteSignOutIssuerInvalidCallback =
Microsoft.AspNetCore.Authentication.Twitter (3)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (3)
9private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ObtainAccessTokenCallback = 25private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ObtainRequestTokenCallback = 41private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RetrieveUserDetailsCallback =
Microsoft.AspNetCore.Authentication.WsFederation (6)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (6)
9private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SignInWithoutWResultCallback = 25private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SignInWithoutTokenCallback = 41private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ExceptionProcessingMessageCallback = 73private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RemoteSignOutHandledResponseCallback = 89private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RemoteSignOutSkippedCallback = 105private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RemoteSignOutCallback =
Microsoft.AspNetCore.Authorization (1)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (1)
9private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UserAuthorizationSucceededCallback =
Microsoft.AspNetCore.Components (11)
ComponentFactory.cs (1)
96var propertyActivator = _propertyActivator.GetActivator(instance.GetType());
DefaultComponentPropertyActivator.cs (4)
19private static readonly ConcurrentDictionary<Type, Action<IServiceProvider, IComponent>> _cachedPropertyActivators = new(); 32public Action<IServiceProvider, IComponent> GetActivator( 38if (!_cachedPropertyActivators.TryGetValue(componentType, out var activator)) 47private static Action<IServiceProvider, IComponent> CreatePropertyActivator(
IComponentPropertyActivator.cs (1)
27Action<IServiceProvider, IComponent> GetActivator(
src\aspnetcore\src\Components\Shared\src\Reflection\PropertySetter.cs (5)
15private readonly Action<object, object> _setterDelegate; 35setMethod.CreateDelegate(typeof(Action<,>).MakeGenericType(targetType, property.PropertyType)); 38_setterDelegate = (Action<object, object>) 39callPropertySetterClosedGenericMethod.CreateDelegate(typeof(Action<object, object>), propertySetterAsAction); 54Action<TTarget, TValue> setter,
Microsoft.AspNetCore.Components.AI (6)
Engine\AgentContext.cs (4)
26private readonly List<Action<ConversationTurn, ContentBlock>> _blockAddedCallbacks = new(); 198public IDisposable RegisterOnBlockAdded(Action<ConversationTurn, ContentBlock> callback) 202return new CallbackRegistration<Action<ConversationTurn, ContentBlock>>(_blockAddedCallbacks, callback); 353foreach (var callback in snapshot)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (2)
89private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AllContentHandledAfterPhase1Callback = 111private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __StreamingAssistantResponseCallback =
Microsoft.AspNetCore.Components.Endpoints (32)
FormMapping\Factories\ComplexType\ComplexTypeExpressionConverterFactoryOfT.cs (1)
218Expression.Constant(null, typeof(Action<string, object>)));
FormMapping\FormDataReader.cs (1)
55public Action<string, object>? AttachInstanceToErrorsHandler { get; set; }
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (18)
43private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RestoreFromCacheFailedCallback = 773private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __OpaqueUrlUnprotectionFailedCallback = 814private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __MiddlewareAntiforgeryValidationFailedCallback = 830private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __MiddlewareAntiforgeryValidationSucceededCallback = 846private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __InteractivityDisabledForErrorHandlingCallback = 871private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SessionPersistFailCallback = 887private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SessionDeserializeFailCallback = 903private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SessionUnavailableCallback = 928private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ResponseHasStartedCallback = 944private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SessionDoesNotExistCallback = 969private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TempDataSessionNotFoundCallback = 985private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TempDataSessionLoadFailureCallback = 1001private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TempDataSessionSaveSuccessCallback = 1017private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TempDataSessionLoadSuccessCallback = 1042private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TempDataPersistFailCallback = 1058private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TempDataDeserializeFailCallback = 1074private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TempDataUnavailableForReadCallback = 1099private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __CookieTempDataNotPersistedAfterResponseStartedCallback =
src\aspnetcore\src\Components\Shared\src\Reflection\PropertySetter.cs (5)
15private readonly Action<object, object> _setterDelegate; 35setMethod.CreateDelegate(typeof(Action<,>).MakeGenericType(targetType, property.PropertyType)); 38_setterDelegate = (Action<object, object>) 39callPropertySetterClosedGenericMethod.CreateDelegate(typeof(Action<object, object>), propertySetterAsAction); 54Action<TTarget, TValue> setter,
src\aspnetcore\src\Shared\PropertyHelper\PropertyHelper.cs (7)
45private Action<object, object?>? _valueSetter; 83public Action<object, object?> ValueSetter 272public static Action<object, object?> MakeFastPropertySetter(PropertyInfo propertyInfo) 295setMethod.CreateDelegate(typeof(Action<,>).MakeGenericType(typeInput, parameterType)); 300typeof(Action<object, object?>), propertySetterAsAction); 302return (Action<object, object?>)callPropertySetterDelegate; 387Action<TDeclaringType, TValue> setter,
Microsoft.AspNetCore.Components.Server (23)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (23)
182private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __InitializationStartedCallback = 198private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __InitializationSucceededCallback = 214private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __InitializationFailedCallback = 358private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UpdateRootComponentsStartedCallback = 374private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UpdateRootComponentsSucceededCallback = 390private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UpdateRootComponentsFailedCallback = 502private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __DispatchEventFailedToParseEventDataCallback = 566private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __EndInvokeDispatchExceptionCallback = 1303private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ExceptionDisposingTokenSourceCallback = 1408private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ExceptionDisposingTokenSourceCallback = 1691private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RefreshFailedCallback = 1707private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RequestingNotFoundCallback = 1876private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __FullUnacknowledgedRenderBatchesQueueCallback = 1981private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __CircuitInitializationFailedCallback = 2054private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ParameterValuesInvalidFormatCallback = 2118private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __FailedToParseParameterDefinitionsCallback = 2134private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __FailedToParseParameterValuesCallback = 2166private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __MissingParameterDefinitionNameCallback = 2191private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __FailedToDeserializeDescriptorCallback = 2223private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __FailedToUnprotectDescriptorCallback = 2255private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __MissingMarkerDescriptorCallback = 2367private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __FailedToProcessRootComponentOperationsCallback = 2383private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __InvalidRootComponentKeyCallback =
Microsoft.AspNetCore.Components.Web (1)
Forms\Mapping\FormValueMappingContext.cs (1)
57public Action<string, object>? MapErrorToContainer { get; set; }
Microsoft.AspNetCore.Components.WebAssembly (3)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (1)
100private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorStoppingHostedServicesCallback =
Hosting\WebassemblyHostBuilderExtensions.cs (1)
34Action<IWebAssemblyHostEnvironment, ServiceProviderOptions> configure)
Services\DefaultWebAssemblyJSRuntime.cs (1)
27public event Action<RootComponentOperationBatch, string>? OnUpdateRootComponents;
Microsoft.AspNetCore.Components.WebAssembly.Authentication (9)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (9)
27private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __LoginCompletedSuccessfullyCallback = 43private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __LoginRequiresRedirectCallback = 75private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __InvokingLoginCompletedCallbackCallback = 123private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __LoginRedirectCompletedSuccessfullyCallback = 139private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __LogoutOperationInitiatedExternallyCallback = 155private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __LogoutCompletedSuccessfullyCallback = 171private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __LogoutRequiresRedirectCallback = 187private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __InvokingLogoutCompletedCallbackCallback = 235private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __LogoutRedirectCompletedSuccessfullyCallback =
Microsoft.AspNetCore.Components.WebAssembly.Server (1)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (1)
11private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __StaticAssetsMappingNotFoundForDefaultManifestCallback =
Microsoft.AspNetCore.CookiePolicy (3)
CookiePolicyServiceCollectionExtensions.cs (1)
33public static IServiceCollection AddCookiePolicy<TService>(this IServiceCollection services, Action<CookiePolicyOptions, TService> configureOptions) where TService : class
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (2)
41private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ConsentGrantedCallback = 57private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ConsentWithdrawnCallback =
Microsoft.AspNetCore.Cors (7)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (7)
9private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __IsPreflightRequestCallback = 41private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RequestDoesNotHaveOriginHeaderCallback = 57private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __PolicySuccessCallback = 73private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __PolicyFailureCallback = 137private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __FailedToSetCorsHeadersCallback = 153private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NoCorsPolicyFoundCallback = 169private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __IsNotPreflightRequestCallback =
Microsoft.AspNetCore.DataProtection (19)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (19)
681private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ExceptionOccurredTryingToDecryptElementCallback = 697private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __EncryptingUsingNullEncryptorCallback = 713private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UsingEphemeralDataProtectionProviderCallback = 729private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ExistingCachedKeyRingIsExpiredCallback = 745private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorOccurredWhileRefreshingKeyRingCallback = 761private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorOccurredWhileReadingKeyRingCallback = 777private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __KeyRingDoesNotContainValidDefaultKeyCallback = 793private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UsingInmemoryRepositoryCallback = 809private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __DecryptingSecretElementUsingWindowsDPAPICallback = 825private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __DefaultKeyExpirationImminentAndRepositoryCallback = 841private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RepositoryContainsNoViableDefaultKeyCallback = 857private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorOccurredWhileEncryptingToWindowsDPAPICallback = 873private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __EncryptingToWindowsDPAPIForLocalMachineAccountCallback = 889private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorOccurredWhileEncryptingToWindowsDPAPINGCallback = 905private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __PolicyResolutionStatesThatANewKeyShouldBeAddedToTheKeyRingCallback = 937private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UsingEphemeralKeyRepositoryCallback = 1033private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __KeyRingFailedToLoadOnStartupCallback = 1097private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NotUsingReadOnlyKeyConfigurationBecauseOfRepositoryCallback = 1113private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NotUsingReadOnlyKeyConfigurationBecauseOfEncryptorCallback =
Microsoft.AspNetCore.Diagnostics (8)
ExceptionHandler\ExceptionHandlerServiceCollectionExtensions.cs (1)
35public static IServiceCollection AddExceptionHandler<TService>(this IServiceCollection services, Action<ExceptionHandlerOptions, TService> configureOptions) where TService : class
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (7)
9private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ResponseStartedErrorPageMiddlewareCallback = 25private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __DisplayErrorPageExceptionCallback = 47private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UnhandledExceptionCallback = 63private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RequestAbortedExceptionCallback = 79private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ResponseStartedErrorHandlerCallback = 95private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorHandlerExceptionCallback = 117private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __FailedToReadStackTraceInfoCallback =
Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore (7)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (7)
9private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ResponseStartedDatabaseDeveloperPageExceptionFilterCallback = 47private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NoRecordedExceptionCallback = 63private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NoMatchCallback = 79private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __MatchedCallback = 95private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NotRelationalDatabaseCallback = 127private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __DatabaseErrorPageMiddlewareExceptionCallback = 149private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NoContextTypeCallback =
Microsoft.AspNetCore.Grpc.JsonTranscoding (7)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (6)
152private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ReadingMessageCallback = 184private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ReceivedMessageCallback = 200private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorReadingMessageCallback = 216private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SendingMessageCallback = 232private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __MessageSentCallback = 248private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorSendingMessageCallback =
Internal\Json\MessageTypeInfoResolver.cs (1)
146private static Action<object, object?> GetSetMethod(FieldDescriptor field, FieldDescriptor? wrapperTypeValueField)
Microsoft.AspNetCore.HostFiltering (2)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (2)
9private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __WildcardDetectedCallback = 38private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AllHostsAllowedCallback =
Microsoft.AspNetCore.Hosting (26)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (5)
49private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __StartingCallback = 65private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __StartedCallback = 81private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ShutdownCallback = 97private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ServerShutdownExceptionCallback = 133private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __FailedToReadStackTraceInfoCallback =
GenericHost\GenericWebHostBuilder.cs (2)
295var actionType = typeof(Action<,>).MakeGenericType(typeof(HostBuilderContext), containerType); 341public IWebHostBuilder Configure(Action<WebHostBuilderContext, IApplicationBuilder> configure)
GenericHost\HostingStartupWebHostBuilder.cs (6)
18private Action<WebHostBuilderContext, IConfigurationBuilder>? _configureConfiguration; 19private Action<WebHostBuilderContext, IServiceCollection>? _configureServices; 33public IWebHostBuilder ConfigureAppConfiguration(Action<WebHostBuilderContext, IConfigurationBuilder> configureDelegate) 44public IWebHostBuilder ConfigureServices(Action<WebHostBuilderContext, IServiceCollection> configureServices) 68public IWebHostBuilder UseDefaultServiceProvider(Action<WebHostBuilderContext, ServiceProviderOptions> configure) 78public IWebHostBuilder Configure(Action<WebHostBuilderContext, IApplicationBuilder> configure)
GenericHost\ISupportsUseDefaultServiceProvider.cs (1)
10IWebHostBuilder UseDefaultServiceProvider(Action<WebHostBuilderContext, ServiceProviderOptions> configure);
GenericHost\SlimWebHostBuilder.cs (1)
77public IWebHostBuilder Configure(Action<WebHostBuilderContext, IApplicationBuilder> configure)
GenericHost\WebHostBuilderBase.cs (3)
36public IWebHostBuilder ConfigureAppConfiguration(Action<WebHostBuilderContext, IConfigurationBuilder> configureDelegate) 52public IWebHostBuilder ConfigureServices(Action<WebHostBuilderContext, IServiceCollection> configureServices) 63public IWebHostBuilder UseDefaultServiceProvider(Action<WebHostBuilderContext, ServiceProviderOptions> configure)
Infrastructure\ISupportsStartup.cs (1)
29IWebHostBuilder Configure(Action<WebHostBuilderContext, IApplicationBuilder> configure);
WebHostBuilder.cs (4)
33private Action<WebHostBuilderContext, IServiceCollection>? _configureServices; 34private Action<WebHostBuilderContext, IConfigurationBuilder>? _configureAppConfigurationBuilder; 107public IWebHostBuilder ConfigureServices(Action<WebHostBuilderContext, IServiceCollection> configureServices) 122public IWebHostBuilder ConfigureAppConfiguration(Action<WebHostBuilderContext, IConfigurationBuilder> configureDelegate)
WebHostBuilderExtensions.cs (3)
60public static IWebHostBuilder Configure(this IWebHostBuilder hostBuilder, Action<WebHostBuilderContext, IApplicationBuilder> configureApp) 193public static IWebHostBuilder UseDefaultServiceProvider(this IWebHostBuilder hostBuilder, Action<WebHostBuilderContext, ServiceProviderOptions> configure) 241public static IWebHostBuilder ConfigureLogging(this IWebHostBuilder hostBuilder, Action<WebHostBuilderContext, ILoggingBuilder> configureLogging)
Microsoft.AspNetCore.Hosting.Abstractions (2)
IWebHostBuilder.cs (2)
31IWebHostBuilder ConfigureAppConfiguration(Action<WebHostBuilderContext, IConfigurationBuilder> configureDelegate); 47IWebHostBuilder ConfigureServices(Action<WebHostBuilderContext, IServiceCollection> configureServices);
Microsoft.AspNetCore.Http (1)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (1)
34private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TimeoutExceptionHandledCallback =
Microsoft.AspNetCore.Http.Abstractions (8)
Features\IConnectionAuthenticationRefreshFeature.cs (1)
34IDisposable OnAuthenticationRefreshed(Action<AuthenticationRefreshContext, object?> callback, object? state);
src\aspnetcore\src\Shared\PropertyHelper\PropertyHelper.cs (7)
45private Action<object, object?>? _valueSetter; 83public Action<object, object?> ValueSetter 272public static Action<object, object?> MakeFastPropertySetter(PropertyInfo propertyInfo) 295setMethod.CreateDelegate(typeof(Action<,>).MakeGenericType(typeInput, parameterType)); 300typeof(Action<object, object?>), propertySetterAsAction); 302return (Action<object, object?>)callPropertySetterDelegate; 387Action<TDeclaringType, TValue> setter,
Microsoft.AspNetCore.Http.Connections (29)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (27)
27private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __WaitingForApplicationCallback = 43private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ApplicationCompleteCallback = 155private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UserRefreshedCallbackFailedCallback = 171private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UserRefreshingCallbackFailedCallback = 244private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __EstablishedConnectionCallback = 260private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ResumingConnectionCallback = 324private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __PostNotAllowedForWebSocketsCallback = 340private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NegotiationRequestCallback = 372private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TerminatingConnectionCallback = 452private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NotifyOnReconnectErrorCallback = 589private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ScanningConnectionsFailedCallback = 605private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __HeartBeatStartedCallback = 621private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __HeartBeatEndedCallback = 662private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __LongPolling204Callback = 678private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __PollTimedOutCallback = 710private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __LongPollingDisconnectedCallback = 726private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __LongPollingTerminatedCallback = 792private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SocketClosedCallback = 824private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __WaitingForSendCallback = 840private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __FailedSendingCallback = 856private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __FinishedSendingCallback = 872private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __WaitingForCloseCallback = 888private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __CloseTimedOutCallback = 952private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorWritingFrameCallback = 968private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ClosedPrematurelyCallback = 984private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ClosingWebSocketFailedCallback = 1000private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SendErroredCallback =
Internal\HttpConnectionContext.cs (2)
282public IDisposable OnAuthenticationRefreshed(Action<AuthenticationRefreshContext, object?> callback, object? state) 1129Action<AuthenticationRefreshContext, object?> callback,
Microsoft.AspNetCore.Http.Connections.Client (45)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (45)
11private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __StartingCallback = 27private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SkippingStartCallback = 43private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __StartedCallback = 59private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __DisposingHttpConnectionCallback = 75private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SkippingDisposeCallback = 91private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __DisposedCallback = 239private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __WebSocketsNotSupportedByOperatingSystemCallback = 255private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TransportThrewExceptionOnStopCallback = 287private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ServerSentEventsNotSupportedByBrowserCallback = 303private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __CookiesNotSupportedCallback = 426private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TransportStoppedCallback = 442private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __StartReceiveCallback = 458private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TransportStoppingCallback = 474private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ReceiveCanceledCallback = 490private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ReceiveStoppedCallback = 506private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ClosingConnectionCallback = 522private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ReceivedMessagesCallback = 640private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SendStartedCallback = 656private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SendCanceledCallback = 672private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SendStoppedCallback = 704private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SentSuccessfullyCallback = 720private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NoMessagesCallback = 777private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TransportStoppedCallback = 793private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __StartReceiveCallback = 809private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TransportStoppingCallback = 841private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ReceiveCanceledCallback = 857private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ReceiveStoppedCallback = 873private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __EventStreamEndedCallback = 930private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TransportStoppedCallback = 946private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __StartReceiveCallback = 962private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TransportStoppingCallback = 994private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ReceiveCanceledCallback = 1010private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ReceiveStoppedCallback = 1026private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SendStartedCallback = 1042private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SendCanceledCallback = 1058private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SendStoppedCallback = 1122private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SendMessageCanceledCallback = 1138private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorSendingMessageCallback = 1154private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ClosingWebSocketCallback = 1170private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ClosingWebSocketFailedCallback = 1186private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __CancelMessageCallback = 1202private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __StartedTransportCallback = 1218private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __HeadersNotSupportedCallback = 1234private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ReceiveErroredCallback = 1250private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SendErroredCallback =
Microsoft.AspNetCore.Http.Extensions (19)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (1)
602private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RequestBodyIOExceptionCallback =
src\aspnetcore\src\Components\Endpoints\src\FormMapping\Factories\ComplexType\ComplexTypeExpressionConverterFactoryOfT.cs (1)
218Expression.Constant(null, typeof(Action<string, object>)));
src\aspnetcore\src\Components\Endpoints\src\FormMapping\FormDataReader.cs (1)
55public Action<string, object>? AttachInstanceToErrorsHandler { get; set; }
src\aspnetcore\src\Shared\ObjectMethodExecutor\ObjectMethodExecutor.cs (7)
26typeof(Action<object, Action>), // onCompletedMethod 27typeof(Action<object, Action>) // unsafeOnCompletedMethod 335var onCompletedFunc = Expression.Lambda<Action<object, Action>>( 343Action<object, Action>? unsafeOnCompletedFunc = null; 351unsafeOnCompletedFunc = Expression.Lambda<Action<object, Action>>( 380Expression.Constant(unsafeOnCompletedFunc, typeof(Action<object, Action>)));
src\aspnetcore\src\Shared\ObjectMethodExecutor\ObjectMethodExecutorAwaitable.cs (9)
22private readonly Action<object, Action> _onCompletedMethod; 23private readonly Action<object, Action> _unsafeOnCompletedMethod; 48Action<object, Action> onCompletedMethod, 49Action<object, Action> unsafeOnCompletedMethod) 70private readonly Action<object, Action> _onCompletedMethod; 71private readonly Action<object, Action> _unsafeOnCompletedMethod; 77Action<object, Action> onCompletedMethod, 78Action<object, Action> unsafeOnCompletedMethod) 111var underlyingMethodToUse = _unsafeOnCompletedMethod ?? _onCompletedMethod;
Microsoft.AspNetCore.Http.Results (2)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (2)
225private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __WritingRangeToBodyCallback = 305private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NotEnabledForRangeProcessingCallback =
Microsoft.AspNetCore.HttpLogging (3)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (3)
11private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __WriteMessagesFailedCallback = 43private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __MaxFilesReachedCallback = 98private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __DecodeFailureCallback =
Microsoft.AspNetCore.HttpOverrides (1)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (1)
9private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NoCertificateCallback =
Microsoft.AspNetCore.HttpsPolicy (3)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (3)
9private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SkippingInsecureCallback = 41private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AddingHstsHeaderCallback = 95private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __FailedToDeterminePortCallback =
Microsoft.AspNetCore.Identity (7)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\GeneratedRouteBuilderExtensions.g.cs (1)
1653private static readonly Action<ILogger, Exception?> _requestBodyIOException =
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (6)
101private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __InvalidExpirationTimeCallback = 117private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UserIdsNotEqualsCallback = 149private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UnexpectedEndOfInputCallback = 165private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SecurityStampNotEqualsCallback = 181private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SecurityStampIsNotEmptyCallback = 197private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UnhandledExceptionCallback =
Microsoft.AspNetCore.Localization (1)
RequestLocalizationServiceCollectionExtensions.cs (1)
33public static IServiceCollection AddRequestLocalization<TService>(this IServiceCollection services, Action<RequestLocalizationOptions, TService> configureOptions) where TService : class
Microsoft.AspNetCore.Mvc.Abstractions (1)
ModelBinding\ModelMetadata.cs (1)
606public abstract Action<object, object?>? PropertySetter { get; }
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
EndpointModelMetadata.cs (1)
47public override Action<object, object?>? PropertySetter { get; }
Microsoft.AspNetCore.Mvc.Core (60)
Controllers\ControllerActivatorProvider.cs (3)
15private static readonly Action<ControllerContext, object> _dispose = Dispose; 19private readonly Action<ControllerContext, object>? _controllerActivatorRelease; 63public Action<ControllerContext, object>? CreateReleaser(ControllerActionDescriptor descriptor)
Controllers\ControllerFactoryProvider.cs (5)
13private readonly Action<ControllerContext, object>? _factoryReleaseController; 63var propertyActivator = propertyActivators[i]; 73public Action<ControllerContext, object>? CreateControllerReleaser(ControllerActionDescriptor descriptor) 115private Action<ControllerContext, object>[] GetPropertiesToActivate(ControllerActionDescriptor actionDescriptor) 117var propertyActivators = new Action<ControllerContext, object>[_propertyActivators.Length];
Controllers\DefaultControllerPropertyActivator.cs (1)
33public Action<ControllerContext, object> GetActivatorDelegate(ControllerActionDescriptor actionDescriptor)
Controllers\IControllerActivatorProvider.cs (2)
23Action<ControllerContext, object>? CreateReleaser(ControllerActionDescriptor descriptor); 32var releaser = CreateReleaser(descriptor);
Controllers\IControllerFactoryProvider.cs (2)
23Action<ControllerContext, object>? CreateControllerReleaser(ControllerActionDescriptor descriptor); 32var releaser = CreateControllerReleaser(descriptor);
Controllers\IControllerPropertyActivatorFactory.cs (1)
10Action<ControllerContext, object> GetActivatorDelegate(ControllerActionDescriptor actionDescriptor);
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (20)
11private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __WritingRangeToBodyCallback = 91private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NotEnabledForRangeProcessingCallback = 138private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __FeatureNotFoundCallback = 154private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __FeatureIsReadOnlyCallback = 170private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RequestBodySizeLimitDisabledCallback = 236private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __CannotApplyRequestFormLimitsCallback = 252private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AppliedRequestFormLimitsCallback = 293private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __FeatureNotFoundCallback = 309private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __FeatureIsReadOnlyCallback = 461private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ActionDoesNotExplicitlySpecifyContentTypesCallback = 747private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NoActionDescriptorsCallback = 785private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NoAcceptForNegotiationCallback = 849private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SelectingOutputFormatterWithoutUsingContentTypesCallback = 881private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SelectFirstCanWriteFormatterCallback = 935private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __WritingRangeToBodyCallback = 973private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __WritingRangeToBodyCallback = 1023private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ModelStateInvalidFilterExecutingCallback = 1096private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __WritingRangeToBodyCallback = 1394private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __WritingRangeToBodyCallback = 1826private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NoFilesFoundInRequestCallback =
ModelBinding\Metadata\DefaultMetadataDetails.cs (1)
67public Action<object, object?>? PropertySetter { get; set; }
ModelBinding\Metadata\DefaultModelMetadata.cs (1)
551public override Action<object, object?>? PropertySetter => _details.PropertySetter;
src\aspnetcore\src\Shared\ObjectMethodExecutor\ObjectMethodExecutor.cs (7)
26typeof(Action<object, Action>), // onCompletedMethod 27typeof(Action<object, Action>) // unsafeOnCompletedMethod 335var onCompletedFunc = Expression.Lambda<Action<object, Action>>( 343Action<object, Action>? unsafeOnCompletedFunc = null; 351unsafeOnCompletedFunc = Expression.Lambda<Action<object, Action>>( 380Expression.Constant(unsafeOnCompletedFunc, typeof(Action<object, Action>)));
src\aspnetcore\src\Shared\ObjectMethodExecutor\ObjectMethodExecutorAwaitable.cs (9)
22private readonly Action<object, Action> _onCompletedMethod; 23private readonly Action<object, Action> _unsafeOnCompletedMethod; 48Action<object, Action> onCompletedMethod, 49Action<object, Action> unsafeOnCompletedMethod) 70private readonly Action<object, Action> _onCompletedMethod; 71private readonly Action<object, Action> _unsafeOnCompletedMethod; 77Action<object, Action> onCompletedMethod, 78Action<object, Action> unsafeOnCompletedMethod) 111var underlyingMethodToUse = _unsafeOnCompletedMethod ?? _onCompletedMethod;
src\aspnetcore\src\Shared\PropertyActivator\PropertyActivator.cs (1)
15private readonly Action<object, object> _fastPropertySetter;
src\aspnetcore\src\Shared\PropertyHelper\PropertyHelper.cs (7)
45private Action<object, object?>? _valueSetter; 83public Action<object, object?> ValueSetter 272public static Action<object, object?> MakeFastPropertySetter(PropertyInfo propertyInfo) 295setMethod.CreateDelegate(typeof(Action<,>).MakeGenericType(typeInput, parameterType)); 300typeof(Action<object, object?>), propertySetterAsAction); 302return (Action<object, object?>)callPropertySetterDelegate; 387Action<TDeclaringType, TValue> setter,
Microsoft.AspNetCore.Mvc.NewtonsoftJson (1)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (1)
11private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __JsonInputExceptionCallback =
Microsoft.AspNetCore.Mvc.Razor (6)
DependencyInjection\MvcRazorMvcBuilderExtensions.cs (1)
59Action<TTagHelper, ViewContext> initialize)
DependencyInjection\MvcRazorMvcCoreBuilderExtensions.cs (1)
104Action<TTagHelper, ViewContext> initialize)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (1)
27private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ViewCompilerNoCompiledViewsFoundCallback =
RazorView.cs (1)
73internal Action<IRazorPage, ViewContext>? OnAfterPageActivated { get; set; }
TagHelperInitializerOfT.cs (2)
13private readonly Action<TTagHelper, ViewContext> _initializeDelegate; 19public TagHelperInitializer(Action<TTagHelper, ViewContext> action)
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation (1)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (1)
106private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ViewCompilerNoCompiledViewsFoundCallback =
Microsoft.AspNetCore.Mvc.RazorPages (10)
Infrastructure\DefaultPageModelActivatorProvider.cs (2)
14private readonly Action<PageContext, object> _disposer = Dispose; 36public Action<PageContext, object>? CreateReleaser(CompiledPageActionDescriptor actionDescriptor)
Infrastructure\DefaultPageModelFactoryProvider.cs (1)
48public Action<PageContext, object>? CreateModelDisposer(CompiledPageActionDescriptor descriptor)
Infrastructure\ExecutorFactory.cs (2)
145private readonly Action<object, object?[]?> _thunk; 153_thunk = Expression.Lambda<Action<object, object?[]?>>(
Infrastructure\ServiceBasedPageModelActivatorProvider.cs (1)
34public Action<PageContext, object>? CreateReleaser(CompiledPageActionDescriptor descriptor)
IPageModelActivatorProvider.cs (2)
23Action<PageContext, object>? CreateReleaser(CompiledPageActionDescriptor descriptor); 32var releaser = CreateReleaser(descriptor);
IPageModelFactoryProvider.cs (2)
23Action<PageContext, object>? CreateModelDisposer(CompiledPageActionDescriptor descriptor); 32var releaser = CreateModelDisposer(descriptor);
Microsoft.AspNetCore.Mvc.Testing (3)
DeferredHostBuilder.cs (3)
56public IHostBuilder ConfigureAppConfiguration(Action<HostBuilderContext, IConfigurationBuilder> configureDelegate) 62public IHostBuilder ConfigureContainer<TContainerBuilder>(Action<HostBuilderContext, TContainerBuilder> configureDelegate) 77public IHostBuilder ConfigureServices(Action<HostBuilderContext, IServiceCollection> configureDelegate)
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
ViewDataDictionaryControllerPropertyActivator.cs (1)
53public Action<ControllerContext, object> GetActivatorDelegate(ControllerActionDescriptor actionDescriptor)
Microsoft.AspNetCore.OpenApi (17)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\GeneratedRouteBuilderExtensions.g.cs (1)
292private static readonly Action<ILogger, Exception?> _requestBodyIOException =
src\aspnetcore\src\Shared\ObjectMethodExecutor\ObjectMethodExecutor.cs (7)
26typeof(Action<object, Action>), // onCompletedMethod 27typeof(Action<object, Action>) // unsafeOnCompletedMethod 335var onCompletedFunc = Expression.Lambda<Action<object, Action>>( 343Action<object, Action>? unsafeOnCompletedFunc = null; 351unsafeOnCompletedFunc = Expression.Lambda<Action<object, Action>>( 380Expression.Constant(unsafeOnCompletedFunc, typeof(Action<object, Action>)));
src\aspnetcore\src\Shared\ObjectMethodExecutor\ObjectMethodExecutorAwaitable.cs (9)
22private readonly Action<object, Action> _onCompletedMethod; 23private readonly Action<object, Action> _unsafeOnCompletedMethod; 48Action<object, Action> onCompletedMethod, 49Action<object, Action> unsafeOnCompletedMethod) 70private readonly Action<object, Action> _onCompletedMethod; 71private readonly Action<object, Action> _unsafeOnCompletedMethod; 77Action<object, Action> onCompletedMethod, 78Action<object, Action> unsafeOnCompletedMethod) 111var underlyingMethodToUse = _unsafeOnCompletedMethod ?? _onCompletedMethod;
Microsoft.AspNetCore.OutputCaching (10)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (10)
9private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NotModifiedIfNoneMatchStarCallback = 57private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NotModifiedServedCallback = 73private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __CachedResponseServedCallback = 89private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __GatewayTimeoutServedCallback = 105private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NoResponseServedCallback = 121private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ResponseCachedCallback = 137private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ResponseNotCachedCallback = 153private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ResponseContentLengthMismatchNotCachedCallback = 169private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UnableToQueryOutputCacheCallback = 185private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UnableToWriteToOutputCacheCallback =
Microsoft.AspNetCore.OutputCaching.StackExchangeRedis (3)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (3)
9private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RedisOutputCacheGCTransientFaultCallback = 25private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RedisOutputCacheGCFatalErrorCallback = 41private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UnableToAddLibraryNameSuffixCallback =
Microsoft.AspNetCore.Owin (17)
OwinEnvironment.cs (7)
262public FeatureMap(Type featureInterface, Func<object, object> getter, Action<object, object> setter) 274public FeatureMap(Type featureInterface, Func<object, object> getter, Func<object> defaultFactory, Action<object, object> setter) 287public FeatureMap(Type featureInterface, Func<object, object> getter, Func<object> defaultFactory, Action<object, object> setter, Func<object> featureFactory) 298private Action<object, object> Setter { get; set; } 375public FeatureMap(Func<TFeature, object> getter, Action<TFeature, object> setter) 386public FeatureMap(Func<TFeature, object> getter, Func<object> defaultFactory, Action<TFeature, object> setter) 398public FeatureMap(Func<TFeature, object> getter, Func<object> defaultFactory, Action<TFeature, object> setter, Func<TFeature> featureFactory)
OwinFeatureCollection.cs (4)
52var register = Prop<Action<Action<object>, object>>(OwinConstants.CommonKeys.OnSendingHeaders); 184var register = Prop<Action<Action<object>, object>>(OwinConstants.CommonKeys.OnSendingHeaders);
WebSockets\OwinWebSocketAcceptAdapter.cs (5)
11Action 33private readonly WebSocketAccept _owinWebSocketAccept; 39private OwinWebSocketAcceptAdapter(WebSocketAccept owinWebSocketAccept) 119if (environment.TryGetValue(OwinConstants.WebSocket.Accept, out accept) && accept is WebSocketAccept) 121var adapter = new OwinWebSocketAcceptAdapter((WebSocketAccept)accept);
WebSockets\WebSocketAcceptAdapter.cs (1)
11Action
Microsoft.AspNetCore.RateLimiting (2)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (2)
11private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RequestRejectedLimitsExceededCallback = 43private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RequestCanceledCallback =
Microsoft.AspNetCore.Razor.Utilities.Shared (8)
src\roslyn\src\Dependencies\PooledObjects\PooledDelegates.cs (8)
98public static Releaser GetPooledAction<T1, TArg>(Action<T1, TArg> unboundAction, TArg argument, out Action<T1> boundAction) 99=> GetPooledDelegate<ActionWithBoundArgument<T1, TArg>, TArg, Action<T1, TArg>, Action<T1>>(unboundAction, argument, out boundAction); 102/// Gets an <see cref="Action{T1, T2}"/> delegate, which calls <paramref name="unboundAction"/> with the specified 132public static Releaser GetPooledAction<T1, T2, TArg>(Action<T1, T2, TArg> unboundAction, TArg argument, out Action<T1, T2> boundAction) 133=> GetPooledDelegate<ActionWithBoundArgument<T1, T2, TArg>, TArg, Action<T1, T2, TArg>, Action<T1, T2>>(unboundAction, argument, out boundAction); 391: AbstractDelegateWithBoundArgument<ActionWithBoundArgument<T1, TArg>, TArg, Action<T1, TArg>, Action<T1>> 398: AbstractDelegateWithBoundArgument<ActionWithBoundArgument<T1, T2, TArg>, TArg, Action<T1, T2, TArg>, Action<T1, T2>> 400protected override Action<T1, T2> Bind()
Microsoft.AspNetCore.RequestDecompression (3)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (3)
11private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NoContentEncodingCallback = 27private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __MultipleContentEncodingsSpecifiedCallback = 43private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NoDecompressionProviderCallback =
Microsoft.AspNetCore.ResponseCaching (18)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (18)
25private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RequestWithAuthorizationNotCacheableCallback = 41private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RequestWithNoCacheNotCacheableCallback = 57private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RequestWithPragmaNoCacheNotCacheableCallback = 169private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ResponseWithoutPublicNotCacheableCallback = 185private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ResponseWithNoStoreNotCacheableCallback = 201private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ResponseWithNoCacheNotCacheableCallback = 217private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ResponseWithSetCookieNotCacheableCallback = 233private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ResponseWithVaryStarNotCacheableCallback = 249private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ResponseWithPrivateNotCacheableCallback = 281private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NotModifiedIfNoneMatchStarCallback = 329private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NotModifiedServedCallback = 345private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __CachedResponseServedCallback = 361private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __GatewayTimeoutServedCallback = 377private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NoResponseServedCallback = 409private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ResponseCachedCallback = 425private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __LogResponseNotCachedCallback = 441private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ResponseContentLengthMismatchNotCachedCallback = 473private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RequestContainsInvalidCacheSymbolsCallback =
Microsoft.AspNetCore.ResponseCompression (5)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (5)
9private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NoAcceptEncodingCallback = 25private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NoCompressionForHttpsCallback = 41private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RequestAcceptsCompressionCallback = 89private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ShouldCompressResponseCallback = 105private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NoCompressionProviderCallback =
Microsoft.AspNetCore.Rewrite (5)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (5)
89private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ModRewriteNotMatchedRuleCallback = 105private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ModRewriteMatchedRuleCallback = 121private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RedirectedToHttpsCallback = 137private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RedirectedToWwwCallback = 153private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RedirectedToNonWwwCallback =
Microsoft.AspNetCore.Routing (13)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (6)
11private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RequestNotMatchedCallback = 276private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __MatchFailureCallback = 372private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RequestSizeLimitMetadataNotFoundCallback = 388private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RequestSizeFeatureNotFoundCallback = 404private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RequestSizeFeatureIsReadOnlyCallback = 436private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __MaxRequestBodySizeDisabledCallback =
src\aspnetcore\src\Shared\PropertyHelper\PropertyHelper.cs (7)
45private Action<object, object?>? _valueSetter; 83public Action<object, object?> ValueSetter 272public static Action<object, object?> MakeFastPropertySetter(PropertyInfo propertyInfo) 295setMethod.CreateDelegate(typeof(Action<,>).MakeGenericType(typeInput, parameterType)); 300typeof(Action<object, object?>), propertySetterAsAction); 302return (Action<object, object?>)callPropertySetterDelegate; 387Action<TDeclaringType, TValue> setter,
Microsoft.AspNetCore.Routing.Abstractions (7)
src\aspnetcore\src\Shared\PropertyHelper\PropertyHelper.cs (7)
45private Action<object, object?>? _valueSetter; 83public Action<object, object?> ValueSetter 272public static Action<object, object?> MakeFastPropertySetter(PropertyInfo propertyInfo) 295setMethod.CreateDelegate(typeof(Action<,>).MakeGenericType(typeInput, parameterType)); 300typeof(Action<object, object?>), propertySetterAsAction); 302return (Action<object, object?>)callPropertySetterDelegate; 387Action<TDeclaringType, TValue> setter,
Microsoft.AspNetCore.Server.HttpSys (38)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (36)
11private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AcceptSetResultFailedCallback = 84private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ChannelBindingMissingCallback = 100private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ChannelBindingUnsupportedCallback = 125private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __DisconnectHandlerErrorCallback = 141private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __DisconnectRegistrationErrorCallback = 157private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __CreateDisconnectTokenErrorCallback = 205private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UnknownDisconnectErrorCallback = 230private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ListenerDisposeErrorCallback = 246private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ListenerDisposingCallback = 262private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __HttpSysListenerCtorErrorCallback = 278private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ListenerStartErrorCallback = 294private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ListenerStartingCallback = 310private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ListenerStopErrorCallback = 326private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ListenerStoppingCallback = 367private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AcceptErrorCallback = 383private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AcceptErrorStoppingCallback = 399private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __BindingToDefaultCallback = 441private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RequestListenerProcessErrorCallback = 498private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorInReadingCertificateCallback = 523private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AbortErrorCallback = 539private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ChannelBindingNeedsHttpsCallback = 555private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ChannelBindingRetrievedCallback = 571private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RequestParsingErrorCallback = 642private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RequestErrorCallback = 658private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RequestProcessErrorCallback = 674private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RequestsDrainedCallback = 690private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __RequestAbortedCallback = 739private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorWhenReadAsyncCallback = 755private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorWhenReadBegunCallback = 771private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorWhileReadCallback = 796private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __FewerBytesThanExpectedCallback = 812private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __WriteErrorCallback = 844private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorWhenFlushAsyncCallback = 876private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __FileSendAsyncErrorCallback = 949private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __WriteErrorCallback = 1022private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SetUrlPropertyErrorCallback =
src\aspnetcore\src\Shared\Buffers.MemoryPool\PinnedBlockMemoryPool.cs (2)
62private Action<object?, PinnedBlockMemoryPool>? _onPoolDisposed; 83public void OnPoolDisposed(Action<object?, PinnedBlockMemoryPool> onPoolDisposed, object? state = null)
Microsoft.AspNetCore.Server.IIS (3)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (1)
98private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __FailedToReadStackTraceInfoCallback =
src\aspnetcore\src\Shared\Buffers.MemoryPool\PinnedBlockMemoryPool.cs (2)
62private Action<object?, PinnedBlockMemoryPool>? _onPoolDisposed; 83public void OnPoolDisposed(Action<object?, PinnedBlockMemoryPool> onPoolDisposed, object? state = null)
Microsoft.AspNetCore.Server.Kestrel (2)
WebHostBuilderKestrelExtensions.cs (2)
151public static IWebHostBuilder UseKestrel(this IWebHostBuilder hostBuilder, Action<WebHostBuilderContext, KestrelServerOptions> configureOptions) 166public static IWebHostBuilder ConfigureKestrel(this IWebHostBuilder hostBuilder, Action<WebHostBuilderContext, KestrelServerOptions> configureOptions)
Microsoft.AspNetCore.Server.Kestrel.Core (20)
DirectTlsEndpointOptions.cs (1)
92public Action<ConnectionContext, ReadOnlySequence<byte>>? TlsClientHelloBytesCallback { get; set; }
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (11)
538private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NotAllConnectionsClosedGracefullyCallback = 554private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NotAllConnectionsAbortedCallback = 749private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __InvalidResponseHeaderRemovedCallback = 1342private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UnableToLocateDevelopmentCertificateCallback = 1390private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __BadDeveloperCertificateStateCallback = 1454private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __DeveloperCertificateNotTrustedCallback = 1470private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __DeveloperCertificatePartiallyTrustedCallback = 1492private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AuthenticationFailedCallback = 1508private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AuthenticationTimedOutCallback = 1540private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __Http2DefaultCiphersInsufficientCallback = 1588private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __FailedToFindCertificateInStoreCallback =
HttpsConnectionAdapterOptions.cs (2)
98public Action<ConnectionContext, SslServerAuthenticationOptions>? OnAuthenticate { get; set; } 111public Action<ConnectionContext, ReadOnlySequence<byte>>? TlsClientHelloBytesCallback { get; set; }
Internal\SniOptionsSelector.cs (1)
26private readonly Action<ConnectionContext, SslServerAuthenticationOptions>? _onAuthenticateCallback;
ListenOptionsHttpsExtensions.cs (1)
304public static ListenOptions UseTlsClientHelloListener(this ListenOptions listenOptions, Action<ConnectionContext, ReadOnlySequence<byte>> tlsClientHelloBytesCallback, TimeSpan? timeout = null)
Middleware\TlsListener.cs (2)
12private readonly Action<ConnectionContext, ReadOnlySequence<byte>> _tlsClientHelloBytesCallback; 14public TlsListener(Action<ConnectionContext, ReadOnlySequence<byte>> tlsClientHelloBytesCallback)
src\aspnetcore\src\Shared\Buffers.MemoryPool\PinnedBlockMemoryPool.cs (2)
62private Action<object?, PinnedBlockMemoryPool>? _onPoolDisposed; 83public void OnPoolDisposed(Action<object?, PinnedBlockMemoryPool> onPoolDisposed, object? state = null)
Microsoft.AspNetCore.Server.Kestrel.Transport.DirectTls (8)
Connection\DirectTlsConnectionListener.cs (2)
32private readonly Action<ConnectionContext, ReadOnlySequence<byte>>? _clientHelloCallback; 66Action<ConnectionContext, ReadOnlySequence<byte>>? clientHelloCallback = null,
DirectTlsTransportFactory.cs (1)
150Action<ConnectionContext, ReadOnlySequence<byte>>? clientHelloCallback = endpointOptions.TlsClientHelloBytesCallback;
TlsEventPump.cs (2)
99private Action<ConnectionContext, ReadOnlySequence<byte>>? _clientHelloCallback; 205Action<ConnectionContext, ReadOnlySequence<byte>>? clientHelloCallback = null,
TlsEventPumpPool.cs (1)
59Action<ConnectionContext, ReadOnlySequence<byte>>? clientHelloCallback = null,
UserCallbacks\ResolveTlsContextCallback.cs (2)
18private readonly Action<ConnectionContext, ReadOnlySequence<byte>>? _clientHelloCallback; 39Action<ConnectionContext, ReadOnlySequence<byte>>? clientHelloCallback,
Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes (5)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (3)
35private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ConnectionListenerAbortedCallback = 103private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ConnectionListenerBrokenPipeCallback = 119private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ConnectionListenerQueueExitedCallback =
src\aspnetcore\src\Shared\Buffers.MemoryPool\PinnedBlockMemoryPool.cs (2)
62private Action<object?, PinnedBlockMemoryPool>? _onPoolDisposed; 83public void OnPoolDisposed(Action<object?, PinnedBlockMemoryPool> onPoolDisposed, object? state = null)
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (6)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (4)
230private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ConnectionListenerCertificateNotSpecifiedCallback = 246private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ConnectionListenerApplicationProtocolsNotSpecifiedCallback = 278private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ConnectionListenerAbortedCallback = 320private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ConnectionListenerAcceptConnectionFailedCallback =
src\aspnetcore\src\Shared\Buffers.MemoryPool\PinnedBlockMemoryPool.cs (2)
62private Action<object?, PinnedBlockMemoryPool>? _onPoolDisposed; 83public void OnPoolDisposed(Action<object?, PinnedBlockMemoryPool> onPoolDisposed, object? state = null)
Microsoft.AspNetCore.Session (8)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (8)
9private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorClosingTheSessionCallback = 96private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorUnprotectingSessionCookieCallback = 112private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SessionLoadingTimeoutCallback = 128private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SessionCommitTimeoutCallback = 144private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SessionCommitCanceledCallback = 160private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SessionRefreshTimeoutCallback = 176private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SessionRefreshCanceledCallback = 192private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SessionNotAvailableCallback =
Microsoft.AspNetCore.SignalR.Client.Core (39)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (37)
185private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ShutdownConnectionCallback = 201private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ShutdownWithErrorCallback = 329private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __StoppedCallback = 409private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ResettingKeepAliveTimerCallback = 425private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorDuringClosedEventCallback = 441private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SendingHubHandshakeCallback = 457private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ReceivedPingCallback = 489private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorReceivingHandshakeResponseCallback = 521private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ReceivedCloseCallback = 553private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __HandshakeCompleteCallback = 601private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __StartingCallback = 617private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorStartingConnectionCallback = 633private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __StartedCallback = 665private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __CancelingOutstandingInvocationsCallback = 681private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ReceiveLoopStartingCallback = 710private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NotUsingServerTimeoutCallback = 726private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ServerDisconnectedWithErrorCallback = 742private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __InvokingClosedEventHandlerCallback = 758private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __StoppingCallback = 774private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TerminatingReceiveLoopCallback = 790private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __WaitingForReceiveLoopToTerminateCallback = 886private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AcquiredConnectionLockForPingCallback = 902private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UnableToAcquireConnectionLockForPingCallback = 998private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ReconnectingCallback = 1014private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ReconnectingWithErrorCallback = 1078private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ReconnectAttemptFailedCallback = 1094private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorDuringReconnectingEventCallback = 1110private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorDuringReconnectedEventCallback = 1126private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorDuringNextRetryDelayCallback = 1142private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __FirstReconnectRetryDelayNullCallback = 1158private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ReconnectingStoppedDuringRetryDelayCallback = 1174private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ReconnectingStoppedDuringReconnectAttemptCallback = 1206private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorInvalidHandshakeResponseCallback = 1238private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorHandshakeCanceledCallback = 1430private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AuthenticationRefreshStartingCallback = 1462private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AuthenticationRefreshFailedCallback = 1478private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AuthenticationRefreshCallbackFailedCallback =
HubConnection.cs (1)
668Action<ILogger, Exception> logError)
HubConnectionExtensions.cs (1)
65public static IDisposable On<T1, T2>(this HubConnection hubConnection, string methodName, Action<T1, T2> handler)
Microsoft.AspNetCore.SignalR.Core (35)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (16)
27private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __HandshakeCanceledCallback = 43private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __SentPingCallback = 59private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __TransportBufferFullCallback = 75private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __HandshakeFailedCallback = 91private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __FailedWritingMessageCallback = 174private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AbortFailedCallback = 261private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorProcessingRequestCallback = 277private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __AbortFailedCallback = 293private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorSendingCloseCallback = 309private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ConnectedStartingCallback = 325private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ConnectedEndingCallback = 357private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorApplyingAuthenticationRefreshCallback = 389private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorValidatingAuthenticationRefreshCallback = 405private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorResolvingRefreshedUserIdentifierCallback = 565private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UnexpectedCancelCallback = 709private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UnexpectedStreamItemCallback =
src\aspnetcore\src\Shared\ObjectMethodExecutor\ObjectMethodExecutor.cs (7)
26typeof(Action<object, Action>), // onCompletedMethod 27typeof(Action<object, Action>) // unsafeOnCompletedMethod 335var onCompletedFunc = Expression.Lambda<Action<object, Action>>( 343Action<object, Action>? unsafeOnCompletedFunc = null; 351unsafeOnCompletedFunc = Expression.Lambda<Action<object, Action>>( 380Expression.Constant(unsafeOnCompletedFunc, typeof(Action<object, Action>)));
src\aspnetcore\src\Shared\ObjectMethodExecutor\ObjectMethodExecutorAwaitable.cs (9)
22private readonly Action<object, Action> _onCompletedMethod; 23private readonly Action<object, Action> _unsafeOnCompletedMethod; 48Action<object, Action> onCompletedMethod, 49Action<object, Action> unsafeOnCompletedMethod) 70private readonly Action<object, Action> _onCompletedMethod; 71private readonly Action<object, Action> _unsafeOnCompletedMethod; 77Action<object, Action> onCompletedMethod, 78Action<object, Action> unsafeOnCompletedMethod) 111var underlyingMethodToUse = _unsafeOnCompletedMethod ?? _onCompletedMethod;
src\aspnetcore\src\SignalR\common\Shared\ClientResultsManager.cs (3)
16private readonly ConcurrentDictionary<string, (Type Type, string ConnectionId, object Tcs, Action<object, CompletionMessage> Complete)> _pendingInvocations = new(); 41public void AddInvocation(string invocationId, (Type Type, string ConnectionId, object Tcs, Action<object, CompletionMessage> Complete) invocationInfo) 75public (Type Type, string ConnectionId, object Tcs, Action<object, CompletionMessage> Completion)? RemoveInvocation(string invocationId)
Microsoft.AspNetCore.SignalR.StackExchangeRedis (10)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (7)
25private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ConnectedCallback = 105private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __NotConnectedCallback = 121private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ConnectionRestoredCallback = 137private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ConnectionFailedCallback = 153private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __FailedWritingMessageCallback = 169private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __InternalMessageFailedCallback = 217private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __ErrorConnectingCallback =
src\aspnetcore\src\SignalR\common\Shared\ClientResultsManager.cs (3)
16private readonly ConcurrentDictionary<string, (Type Type, string ConnectionId, object Tcs, Action<object, CompletionMessage> Complete)> _pendingInvocations = new(); 41public void AddInvocation(string invocationId, (Type Type, string ConnectionId, object Tcs, Action<object, CompletionMessage> Complete) invocationInfo) 75public (Type Type, string ConnectionId, object Tcs, Action<object, CompletionMessage> Completion)? RemoveInvocation(string invocationId)
Microsoft.AspNetCore.SpaServices.Extensions (1)
Prerendering\SpaPrerenderingOptions.cs (1)
42public Action<HttpContext, IDictionary<string, object>> SupplyData { get; set; }
Microsoft.AspNetCore.StaticAssets (3)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (3)
66private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __EndpointMatchedCallback = 226private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __WriteCancelledCallback = 258private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __EnsureStaticWebAssetsEnabledCallback =
Microsoft.AspNetCore.StaticFiles (2)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (2)
41private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __EndpointMatchedCallback = 201private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __WriteCancelledCallback =
Microsoft.AspNetCore.TestHost (1)
HttpContextBuilder.cs (1)
61internal void Configure(Action<HttpContext, PipeReader> configureContext)
Microsoft.AspNetCore.Watch.BrowserRefresh (7)
src\sdk\src\Dotnet.Watch\Web.Middleware\BrowserRefreshMiddleware.cs (7)
228private static readonly Action<ILogger, Exception?> _setupResponseForBrowserRefresh = LoggerMessage.Define( 233private static readonly Action<ILogger, Exception?> _browserConfiguredForRefreshes = LoggerMessage.Define( 238private static readonly Action<ILogger, Exception?> _failedToConfigureForRefreshes = LoggerMessage.Define( 256private static readonly Action<ILogger, Exception?> _modifiableAssembliesNotSet = LoggerMessage.Define( 261private static readonly Action<ILogger, Exception?> _modifiableAssembliesHeaderAlreadySet = LoggerMessage.Define( 266private static readonly Action<ILogger, Exception?> _browserToolsNotSet = LoggerMessage.Define( 271private static readonly Action<ILogger, Exception?> _browserToolsHeaderAlreadySet = LoggerMessage.Define(
Microsoft.AspNetCore.WebSockets (1)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (1)
27private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __CompressionNotAcceptedCallback =
Microsoft.Build (18)
BuildCheck\Infrastructure\BuildCheckCentralContext.cs (2)
27Action<List<CheckWrapper>?, ICheckContext> removeCheck) 99private readonly Action<List<CheckWrapper>?, ICheckContext> _removeChecks;
Collections\IItemDictionary.cs (1)
55void EnumerateItemsPerType(Action<string, IEnumerable<T>> itemTypeCallback);
Collections\ItemDictionary.cs (1)
204public void EnumerateItemsPerType(Action<string, IEnumerable<T>> itemTypeCallback)
Collections\PropertyDictionary.cs (1)
595internal void Enumerate(Action<string, string> keyValueCallback)
Instance\ImmutableProjectCollections\ImmutableItemDictionary.cs (1)
68public void EnumerateItemsPerType(Action<string, IEnumerable<T>> itemTypeCallback)
Logging\BinaryLogger\BinaryLogReplayEventSource.cs (3)
26event Action<BinaryLogRecordKind, Stream>? RawLogRecordReceived; 348private Action<BinaryLogRecordKind, Stream>? _rawLogRecordReceived; 350event Action<BinaryLogRecordKind, Stream>? IBinaryLogReplaySource.RawLogRecordReceived
src\msbuild\artifacts\.packages\microsoft.codeanalysis.pooledobjects\5.0.0-1.25277.114\contentFiles\cs\netstandard2.0\PooledDelegates.cs (8)
98public static Releaser GetPooledAction<T1, TArg>(Action<T1, TArg> unboundAction, TArg argument, out Action<T1> boundAction) 99=> GetPooledDelegate<ActionWithBoundArgument<T1, TArg>, TArg, Action<T1, TArg>, Action<T1>>(unboundAction, argument, out boundAction); 102/// Gets an <see cref="Action{T1, T2}"/> delegate, which calls <paramref name="unboundAction"/> with the specified 132public static Releaser GetPooledAction<T1, T2, TArg>(Action<T1, T2, TArg> unboundAction, TArg argument, out Action<T1, T2> boundAction) 133=> GetPooledDelegate<ActionWithBoundArgument<T1, T2, TArg>, TArg, Action<T1, T2, TArg>, Action<T1, T2>>(unboundAction, argument, out boundAction); 391: AbstractDelegateWithBoundArgument<ActionWithBoundArgument<T1, TArg>, TArg, Action<T1, TArg>, Action<T1>> 398: AbstractDelegateWithBoundArgument<ActionWithBoundArgument<T1, T2, TArg>, TArg, Action<T1, T2, TArg>, Action<T1, T2>> 400protected override Action<T1, T2> Bind()
Utilities\Utilities.cs (1)
740public static void EnumerateProperties<TArg>(IEnumerable properties, TArg arg, Action<TArg, KeyValuePair<string, string>> callback)
Microsoft.Build.Tasks.CodeAnalysis (2)
src\roslyn\src\Compilers\Shared\RuntimeHostInfo.cs (2)
49internal static string? GetToolDotNetRoot(IBuildEnvironment buildEnvironment, Action<string, object[]>? logger) 52internal static string? GetToolDotNetRoot(string dotNetHostPath, Action<string, object[]>? logger)
Microsoft.Build.Tasks.Git (3)
GitOperations.cs (3)
26public static string? GetRepositoryUrl(GitRepository repository, string? remoteName, bool warnOnMissingOrUnsupportedRemote = true, Action<string, object?[]>? logWarning = null) 57private static string? GetRemoteUrl(GitRepository repository, ref string? remoteName, bool warnOnMissingRemote, Action<string, object?[]>? logWarning) 241public static ITaskItem[] GetSourceRoots(GitRepository repository, string? remoteName, bool warnOnMissingCommitOrUnsupportedUri, Action<string, object?[]> logWarning)
Microsoft.CodeAnalysis (37)
DiagnosticAnalyzer\AnalyzerDriver.cs (1)
2001internal static Action<Diagnostic, DiagnosticAnalyzer, AnalyzerOptions?, CancellationToken> GetDiagnosticSink(Action<Diagnostic, DiagnosticAnalyzer> addDiagnosticCore, Compilation compilation, SeverityFilter severityFilter, ConcurrentSet<string>? suppressedDiagnosticIds)
SourceGeneration\IncrementalContexts.cs (13)
102public void RegisterSourceOutput<TSource>(IncrementalValueProvider<TSource> source, Action<SourceProductionContext, TSource> action) => RegisterSourceOutput(source.Node, action, IncrementalGeneratorOutputKind.Source, _sourceExtension); 111public void RegisterSourceOutput<TSource>(IncrementalValuesProvider<TSource> source, Action<SourceProductionContext, TSource> action) => RegisterSourceOutput(source.Node, action, IncrementalGeneratorOutputKind.Source, _sourceExtension); 121public void RegisterImplementationSourceOutput<TSource>(IncrementalValueProvider<TSource> source, Action<SourceProductionContext, TSource> action) => RegisterSourceOutput(source.Node, action, IncrementalGeneratorOutputKind.Implementation, _sourceExtension); 131public void RegisterImplementationSourceOutput<TSource>(IncrementalValuesProvider<TSource> source, Action<SourceProductionContext, TSource> action) => RegisterSourceOutput(source.Node, action, IncrementalGeneratorOutputKind.Implementation, _sourceExtension); 152public void RegisterHostOutput<TSource>(IncrementalValueProvider<TSource> source, Action<HostOutputProductionContext, TSource> action) => source.Node.RegisterOutput(new HostOutputNode<TSource>(source.Node, action.WrapUserAction(CatchAnalyzerExceptions))); 165public void RegisterHostOutput<TSource>(IncrementalValuesProvider<TSource> source, Action<HostOutputProductionContext, TSource> action) => source.Node.RegisterOutput(new HostOutputNode<TSource>(source.Node, action.WrapUserAction(CatchAnalyzerExceptions))); 181public void RegisterPreCompilationSourceOutput<TSource>(IncrementalValueProvider<TSource> source, Action<PreCompilationSourceProductionContext, TSource> action) => RegisterPreCompilationSourceOutput(source.Node, action); 197public void RegisterPreCompilationSourceOutput<TSource>(IncrementalValuesProvider<TSource> source, Action<PreCompilationSourceProductionContext, TSource> action) => RegisterPreCompilationSourceOutput(source.Node, action); 207private void RegisterSourceOutput<TSource>(IIncrementalGeneratorNode<TSource> node, Action<SourceProductionContext, TSource> action, IncrementalGeneratorOutputKind kind, string sourceExt) 212private void RegisterPreCompilationSourceOutput<TSource>(IIncrementalGeneratorNode<TSource> node, Action<PreCompilationSourceProductionContext, TSource> action) 267/// Context passed to an incremental generator when it has registered an output via <see cref="IncrementalGeneratorInitializationContext.RegisterSourceOutput{TSource}(IncrementalValueProvider{TSource}, Action{SourceProductionContext, TSource})"/> 324/// <see cref="IncrementalGeneratorInitializationContext.RegisterPreCompilationSourceOutput{TSource}(IncrementalValueProvider{TSource}, Action{PreCompilationSourceProductionContext, TSource})"/>. 387/// Context passed to an incremental generator when it has registered an output via <see cref="IncrementalGeneratorInitializationContext.RegisterHostOutput{TSource}(IncrementalValuesProvider{TSource}, Action{HostOutputProductionContext, TSource})"/>
SourceGeneration\Nodes\IIncrementalGeneratorOutputNode.cs (8)
37/// A regular source output, registered via <see cref="IncrementalGeneratorInitializationContext.RegisterSourceOutput{TSource}(IncrementalValueProvider{TSource}, Action{SourceProductionContext, TSource})"/> 38/// or <see cref="IncrementalGeneratorInitializationContext.RegisterSourceOutput{TSource}(IncrementalValuesProvider{TSource}, Action{SourceProductionContext, TSource})"/> 48/// An Implementation only source output, registered via <see cref="IncrementalGeneratorInitializationContext.RegisterImplementationSourceOutput{TSource}(IncrementalValueProvider{TSource}, Action{SourceProductionContext, TSource})"/> 49/// or <see cref="IncrementalGeneratorInitializationContext.RegisterImplementationSourceOutput{TSource}(IncrementalValuesProvider{TSource}, Action{SourceProductionContext, TSource})"/> 54/// A host specific output, registered via <see cref="IncrementalGeneratorInitializationContext.RegisterHostOutput{TSource}(IncrementalValueProvider{TSource}, Action{HostOutputProductionContext, TSource})"/> 55/// or <see cref="IncrementalGeneratorInitializationContext.RegisterHostOutput{TSource}(IncrementalValuesProvider{TSource}, Action{HostOutputProductionContext, TSource})"/> 61/// <see cref="IncrementalGeneratorInitializationContext.RegisterPreCompilationSourceOutput{TSource}(IncrementalValueProvider{TSource}, Action{PreCompilationSourceProductionContext, TSource})"/> 62/// or <see cref="IncrementalGeneratorInitializationContext.RegisterPreCompilationSourceOutput{TSource}(IncrementalValuesProvider{TSource}, Action{PreCompilationSourceProductionContext, TSource})"/>.
SourceGeneration\Nodes\PostInitOutputNode.cs (2)
12private readonly Action<IncrementalGeneratorPostInitializationContext, CancellationToken> _callback; 15public PostInitOutputNode(Action<IncrementalGeneratorPostInitializationContext, CancellationToken> callback, string embeddedAttributeDefinition)
SourceGeneration\Nodes\SyntaxInputNode.cs (2)
19private readonly Action<SyntaxInputNode, IIncrementalGeneratorOutputNode> _registerOutput; 23internal SyntaxInputNode(ISyntaxSelectionStrategy<T> inputNode, Action<SyntaxInputNode, IIncrementalGeneratorOutputNode> registerOutput, IEqualityComparer<T>? comparer = null, string? name = null)
SourceGeneration\UserFunction.cs (2)
83internal static Action<TInput, CancellationToken> WrapUserAction<TInput>(this Action<TInput> userAction, bool catchAnalyzerExceptions) 98internal static Action<TInput1, TInput2, CancellationToken> WrapUserAction<TInput1, TInput2>(this Action<TInput1, TInput2> userAction, bool catchAnalyzerExceptions)
src\roslyn\src\Dependencies\CodeAnalysis.Debugging\CustomDebugInfoEncoder.cs (1)
208Action<T, BlobBuilder> recordSerializer)
src\roslyn\src\Dependencies\PooledObjects\PooledDelegates.cs (8)
98public static Releaser GetPooledAction<T1, TArg>(Action<T1, TArg> unboundAction, TArg argument, out Action<T1> boundAction) 99=> GetPooledDelegate<ActionWithBoundArgument<T1, TArg>, TArg, Action<T1, TArg>, Action<T1>>(unboundAction, argument, out boundAction); 102/// Gets an <see cref="Action{T1, T2}"/> delegate, which calls <paramref name="unboundAction"/> with the specified 132public static Releaser GetPooledAction<T1, T2, TArg>(Action<T1, T2, TArg> unboundAction, TArg argument, out Action<T1, T2> boundAction) 133=> GetPooledDelegate<ActionWithBoundArgument<T1, T2, TArg>, TArg, Action<T1, T2, TArg>, Action<T1, T2>>(unboundAction, argument, out boundAction); 391: AbstractDelegateWithBoundArgument<ActionWithBoundArgument<T1, TArg>, TArg, Action<T1, TArg>, Action<T1>> 398: AbstractDelegateWithBoundArgument<ActionWithBoundArgument<T1, T2, TArg>, TArg, Action<T1, T2, TArg>, Action<T1, T2>> 400protected override Action<T1, T2> Bind()
Microsoft.CodeAnalysis.Analyzers (21)
src\a1065d420d446521\NamingStylePreferencesEditorConfigSerializer.cs (1)
51Action<string, string> entryWriter,
src\b310f676f7308b7f\SymbolUsageAnalysis.BasicBlockAnalysisData.cs (1)
74public void ForEachCurrentWrite<TArg>(ISymbol symbol, Action<IOperation, TArg> action, TArg arg)
src\roslyn\src\Dependencies\PooledObjects\PooledDelegates.cs (8)
98public static Releaser GetPooledAction<T1, TArg>(Action<T1, TArg> unboundAction, TArg argument, out Action<T1> boundAction) 99=> GetPooledDelegate<ActionWithBoundArgument<T1, TArg>, TArg, Action<T1, TArg>, Action<T1>>(unboundAction, argument, out boundAction); 102/// Gets an <see cref="Action{T1, T2}"/> delegate, which calls <paramref name="unboundAction"/> with the specified 132public static Releaser GetPooledAction<T1, T2, TArg>(Action<T1, T2, TArg> unboundAction, TArg argument, out Action<T1, T2> boundAction) 133=> GetPooledDelegate<ActionWithBoundArgument<T1, T2, TArg>, TArg, Action<T1, T2, TArg>, Action<T1, T2>>(unboundAction, argument, out boundAction); 391: AbstractDelegateWithBoundArgument<ActionWithBoundArgument<T1, TArg>, TArg, Action<T1, TArg>, Action<T1>> 398: AbstractDelegateWithBoundArgument<ActionWithBoundArgument<T1, T2, TArg>, TArg, Action<T1, T2, TArg>, Action<T1, T2>> 400protected override Action<T1, T2> Bind()
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\ObjectWriterExtensions.cs (1)
13public static void WriteArray<T>(this ObjectWriter writer, ImmutableArray<T> values, Action<ObjectWriter, T> write)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Engine\AbstractFormatEngine.cs (6)
167var addIndentBlockOperations = _formattingRules.AddIndentBlockOperations; 168var addSuppressOperation = _formattingRules.AddSuppressOperations; 169var addAlignTokensOperations = _formattingRules.AddAlignTokensOperations; 170var addAnchorIndentationOperations = _formattingRules.AddAnchorIndentationOperations; 189private static void AddOperations<T>(SegmentedList<T> operations, List<T> scratch, SyntaxNode node, Action<List<T>, SyntaxNode> addOperations) 203private static void AddOperations<T>(SegmentedList<T> operations, ArrayBuilder<T> scratch, SyntaxNode node, Action<ArrayBuilder<T>, SyntaxNode> addOperations)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\ObjectPools\PooledObject.cs (2)
19private readonly Action<ObjectPool<T>, T> _releaser; 22public PooledObject(ObjectPool<T> pool, Func<ObjectPool<T>, T> allocator, Action<ObjectPool<T>, T> releaser) : this()
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Extensions\StringBuilderExtensions.cs (2)
21this StringBuilder builder, string separator, SeparatedSyntaxList<TNode> values, Action<TNode, StringBuilder> append) 37public static StringBuilder AppendJoinedValues<T>(this StringBuilder builder, string separator, ImmutableArray<T> values, Action<T, StringBuilder> append)
Microsoft.CodeAnalysis.AnalyzerUtilities (25)
src\66dd3055a1c91c38\PointsToAnalysis.CorePointsToAnalysisDataDomain.cs (1)
59Action<AnalysisEntity, PointsToAnalysisData> resetAbstractValue)
src\a1065d420d446521\NamingStylePreferencesEditorConfigSerializer.cs (1)
51Action<string, string> entryWriter,
src\b310f676f7308b7f\SymbolUsageAnalysis.BasicBlockAnalysisData.cs (1)
74public void ForEachCurrentWrite<TArg>(ISymbol symbol, Action<IOperation, TArg> action, TArg arg)
src\roslyn\src\Dependencies\PooledObjects\PooledDelegates.cs (8)
98public static Releaser GetPooledAction<T1, TArg>(Action<T1, TArg> unboundAction, TArg argument, out Action<T1> boundAction) 99=> GetPooledDelegate<ActionWithBoundArgument<T1, TArg>, TArg, Action<T1, TArg>, Action<T1>>(unboundAction, argument, out boundAction); 102/// Gets an <see cref="Action{T1, T2}"/> delegate, which calls <paramref name="unboundAction"/> with the specified 132public static Releaser GetPooledAction<T1, T2, TArg>(Action<T1, T2, TArg> unboundAction, TArg argument, out Action<T1, T2> boundAction) 133=> GetPooledDelegate<ActionWithBoundArgument<T1, T2, TArg>, TArg, Action<T1, T2, TArg>, Action<T1, T2>>(unboundAction, argument, out boundAction); 391: AbstractDelegateWithBoundArgument<ActionWithBoundArgument<T1, TArg>, TArg, Action<T1, TArg>, Action<T1>> 398: AbstractDelegateWithBoundArgument<ActionWithBoundArgument<T1, T2, TArg>, TArg, Action<T1, T2, TArg>, Action<T1, T2>> 400protected override Action<T1, T2> Bind()
src\roslyn\src\RoslynAnalyzers\Utilities\FlowAnalysis\FlowAnalysis\Analysis\PointsToAnalysis\PointsToAnalysis.PointsToAnalysisDomain.cs (1)
27Action<AnalysisEntity, PointsToAnalysisData> resetAbstractValue,
src\roslyn\src\RoslynAnalyzers\Utilities\FlowAnalysis\FlowAnalysis\Framework\DataFlow\PredicatedAnalysisData.cs (4)
222Action<DictionaryAnalysisData<TKey, TValue>, DictionaryAnalysisData<TKey, TValue>> applyPredicatedData) 278Action<DictionaryAnalysisData<TKey, TValue>, DictionaryAnalysisData<TKey, TValue>> applyPredicatedData) 327Action<DictionaryAnalysisData<TKey, TValue>, DictionaryAnalysisData<TKey, TValue>> applyPredicatedData) 349Action<DictionaryAnalysisData<TKey, TValue>, DictionaryAnalysisData<TKey, TValue>> applyPredicatedData)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\ObjectWriterExtensions.cs (1)
13public static void WriteArray<T>(this ObjectWriter writer, ImmutableArray<T> values, Action<ObjectWriter, T> write)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Engine\AbstractFormatEngine.cs (6)
167var addIndentBlockOperations = _formattingRules.AddIndentBlockOperations; 168var addSuppressOperation = _formattingRules.AddSuppressOperations; 169var addAlignTokensOperations = _formattingRules.AddAlignTokensOperations; 170var addAnchorIndentationOperations = _formattingRules.AddAnchorIndentationOperations; 189private static void AddOperations<T>(SegmentedList<T> operations, List<T> scratch, SyntaxNode node, Action<List<T>, SyntaxNode> addOperations) 203private static void AddOperations<T>(SegmentedList<T> operations, ArrayBuilder<T> scratch, SyntaxNode node, Action<ArrayBuilder<T>, SyntaxNode> addOperations)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\ObjectPools\PooledObject.cs (2)
19private readonly Action<ObjectPool<T>, T> _releaser; 22public PooledObject(ObjectPool<T> pool, Func<ObjectPool<T>, T> allocator, Action<ObjectPool<T>, T> releaser) : this()
Microsoft.CodeAnalysis.BuildClient.Package (2)
src\roslyn\src\Compilers\Shared\RuntimeHostInfo.cs (2)
49internal static string? GetToolDotNetRoot(IBuildEnvironment buildEnvironment, Action<string, object[]>? logger) 52internal static string? GetToolDotNetRoot(string dotNetHostPath, Action<string, object[]>? logger)
Microsoft.CodeAnalysis.CodeStyle (21)
src\a1065d420d446521\NamingStylePreferencesEditorConfigSerializer.cs (1)
51Action<string, string> entryWriter,
src\b310f676f7308b7f\SymbolUsageAnalysis.BasicBlockAnalysisData.cs (1)
74public void ForEachCurrentWrite<TArg>(ISymbol symbol, Action<IOperation, TArg> action, TArg arg)
src\roslyn\src\Analyzers\Core\Analyzers\RemoveUnusedMembers\AbstractRemoveUnusedMembersDiagnosticAnalyzer.cs (2)
90protected virtual void HandleNamedTypeSymbolStart(SymbolStartAnalysisContext context, Action<ISymbol, ValueUsageInfo> onSymbolUsageFound) 231Action<ISymbol, ValueUsageInfo> onSymbolUsageFound = OnSymbolUsage;
src\roslyn\src\Dependencies\PooledObjects\PooledDelegates.cs (8)
98public static Releaser GetPooledAction<T1, TArg>(Action<T1, TArg> unboundAction, TArg argument, out Action<T1> boundAction) 99=> GetPooledDelegate<ActionWithBoundArgument<T1, TArg>, TArg, Action<T1, TArg>, Action<T1>>(unboundAction, argument, out boundAction); 102/// Gets an <see cref="Action{T1, T2}"/> delegate, which calls <paramref name="unboundAction"/> with the specified 132public static Releaser GetPooledAction<T1, T2, TArg>(Action<T1, T2, TArg> unboundAction, TArg argument, out Action<T1, T2> boundAction) 133=> GetPooledDelegate<ActionWithBoundArgument<T1, T2, TArg>, TArg, Action<T1, T2, TArg>, Action<T1, T2>>(unboundAction, argument, out boundAction); 391: AbstractDelegateWithBoundArgument<ActionWithBoundArgument<T1, TArg>, TArg, Action<T1, TArg>, Action<T1>> 398: AbstractDelegateWithBoundArgument<ActionWithBoundArgument<T1, T2, TArg>, TArg, Action<T1, T2, TArg>, Action<T1, T2>> 400protected override Action<T1, T2> Bind()
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\ObjectWriterExtensions.cs (1)
13public static void WriteArray<T>(this ObjectWriter writer, ImmutableArray<T> values, Action<ObjectWriter, T> write)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Engine\AbstractFormatEngine.cs (6)
167var addIndentBlockOperations = _formattingRules.AddIndentBlockOperations; 168var addSuppressOperation = _formattingRules.AddSuppressOperations; 169var addAlignTokensOperations = _formattingRules.AddAlignTokensOperations; 170var addAnchorIndentationOperations = _formattingRules.AddAnchorIndentationOperations; 189private static void AddOperations<T>(SegmentedList<T> operations, List<T> scratch, SyntaxNode node, Action<List<T>, SyntaxNode> addOperations) 203private static void AddOperations<T>(SegmentedList<T> operations, ArrayBuilder<T> scratch, SyntaxNode node, Action<ArrayBuilder<T>, SyntaxNode> addOperations)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\ObjectPools\PooledObject.cs (2)
19private readonly Action<ObjectPool<T>, T> _releaser; 22public PooledObject(ObjectPool<T> pool, Func<ObjectPool<T>, T> allocator, Action<ObjectPool<T>, T> releaser) : this()
Microsoft.CodeAnalysis.CodeStyle.Fixes (2)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Extensions\StringBuilderExtensions.cs (2)
21this StringBuilder builder, string separator, SeparatedSyntaxList<TNode> values, Action<TNode, StringBuilder> append) 37public static StringBuilder AppendJoinedValues<T>(this StringBuilder builder, string separator, ImmutableArray<T> values, Action<T, StringBuilder> append)
Microsoft.CodeAnalysis.CSharp (14)
Binder\ExecutableCodeBinder.cs (2)
29private readonly Action<Binder, SyntaxNode> _binderUpdatedHandler; 32internal ExecutableCodeBinder(SyntaxNode root, Symbol memberSymbol, Binder next, Action<Binder, SyntaxNode> binderUpdatedHandler = null)
Binder\LocalBinderFactory.cs (1)
75Action<Binder, SyntaxNode> binderUpdatedHandler = null)
BoundTree\BoundExpression.cs (1)
685internal void VisitAllElements<T>(Action<BoundExpression, T> action, T args)
BoundTree\BoundNodeExtensions.cs (2)
111Action<BoundBinaryOperator, TArg>? binaryOperatorCallback = null) 156static void pushLeftNodes(BoundBinaryOperator binary, ArrayBuilder<BoundBinaryOperator> stack, TArg arg, Action<BoundBinaryOperator, TArg>? binaryOperatorCallback)
Declarations\DeclarationTreeBuilder.cs (1)
1056Action<HashSet<string>, TData> addMemberNames,
FlowAnalysis\NullableWalker.cs (5)
3999var elementConversionCompletions = ArrayBuilder<Action<TypeWithAnnotations /*targetElementType*/, TypeSymbol /*targetCollectionType*/>>.GetInstance(); 4138void visitElement(BoundNode element, BoundCollectionExpression node, TypeWithAnnotations targetElementType, ArrayBuilder<Action<TypeWithAnnotations, TypeSymbol>> elementConversionCompletions) 4233ArrayBuilder<Action<TypeWithAnnotations, TypeSymbol>> completions) 4248foreach (var completion in completions) 14296internal void ForEach<TArg>(Action<int, TArg> action, TArg arg)
Lowering\ClosureConversion\ClosureConversion.Analysis.Tree.cs (1)
219public static void VisitNestedFunctions(Scope scope, Action<Scope, NestedFunction> action)
Syntax\SyntaxExtensions.cs (1)
401internal static void VisitRankSpecifiers<TArg>(this TypeSyntax type, Action<ArrayRankSpecifierSyntax, TArg> action, in TArg argument)
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Extensions\SyntaxNodeExtensions.cs (1)
749public static void ForEachMember<TArg>(this SyntaxNode? node, Action<MemberDeclarationSyntax, TArg> callback, TArg arg)
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Extensions\SyntaxNodeExtensions.cs (1)
749public static void ForEachMember<TArg>(this SyntaxNode? node, Action<MemberDeclarationSyntax, TArg> callback, TArg arg)
Microsoft.CodeAnalysis.Extensions.Package (8)
src\roslyn\src\Dependencies\PooledObjects\PooledDelegates.cs (8)
98public static Releaser GetPooledAction<T1, TArg>(Action<T1, TArg> unboundAction, TArg argument, out Action<T1> boundAction) 99=> GetPooledDelegate<ActionWithBoundArgument<T1, TArg>, TArg, Action<T1, TArg>, Action<T1>>(unboundAction, argument, out boundAction); 102/// Gets an <see cref="Action{T1, T2}"/> delegate, which calls <paramref name="unboundAction"/> with the specified 132public static Releaser GetPooledAction<T1, T2, TArg>(Action<T1, T2, TArg> unboundAction, TArg argument, out Action<T1, T2> boundAction) 133=> GetPooledDelegate<ActionWithBoundArgument<T1, T2, TArg>, TArg, Action<T1, T2, TArg>, Action<T1, T2>>(unboundAction, argument, out boundAction); 391: AbstractDelegateWithBoundArgument<ActionWithBoundArgument<T1, TArg>, TArg, Action<T1, TArg>, Action<T1>> 398: AbstractDelegateWithBoundArgument<ActionWithBoundArgument<T1, T2, TArg>, TArg, Action<T1, T2, TArg>, Action<T1, T2>> 400protected override Action<T1, T2> Bind()
Microsoft.CodeAnalysis.ExternalAccess.OmniSharp (2)
CodeActions\OmniSharpCodeFixContextFactory.cs (2)
21Action<CodeAction, ImmutableArray<Diagnostic>> registerCodeFix, 28Action<CodeAction, TextSpan?> registerRefactoring,
Microsoft.CodeAnalysis.Features (16)
ChangeSignature\DelegateInvokeMethodReferenceFinder.cs (2)
72Action<Document, TData> processResult, 86Action<FinderLocation, TData> processResult,
CodeFixes\Suppression\AbstractSuppressionBatchFixAllProvider.cs (2)
119var registerCodeFix = GetRegisterCodeFixAction(fixAllState, onItemFound); 175private static Action<CodeAction, ImmutableArray<Diagnostic>> GetRegisterCodeFixAction(
Completion\Providers\SymbolCompletionItem.cs (3)
24private static readonly Action<ImmutableArray<ISymbol>, ArrayBuilder<KeyValuePair<string, string>>> s_addSymbolEncoding = AddSymbolEncoding; 25private static readonly Action<ImmutableArray<ISymbol>, ArrayBuilder<KeyValuePair<string, string>>> s_addSymbolInfo = AddSymbolInfo; 36Action<ImmutableArray<ISymbol>, ArrayBuilder<KeyValuePair<string, string>>> symbolEncoder,
EditAndContinue\DebuggingSession.cs (1)
983public void SetTelemetryLogger(Action<FunctionId, LogMessage> logger, Func<int> getNextId)
EditAndContinue\DebuggingSessionTelemetry.cs (1)
72public static void Log(Data data, Action<FunctionId, LogMessage> log, Func<int> getNextId)
ExtractInterface\AbstractExtractInterfaceService.cs (1)
60Action<string, NotificationSeverity> errorHandler,
GenerateConstructors\AbstractGenerateConstructorsCodeRefactoringProvider.cs (1)
154Action<CodeAction, TextSpan> registerSingleAction,
SolutionExplorer\ISolutionExplorerSymbolTreeItemProvider.cs (2)
40Action<TArgument, StringBuilder> append, 56Action<TNode, StringBuilder> append,
src\roslyn\src\Analyzers\Core\Analyzers\RemoveUnusedMembers\AbstractRemoveUnusedMembersDiagnosticAnalyzer.cs (2)
90protected virtual void HandleNamedTypeSymbolStart(SymbolStartAnalysisContext context, Action<ISymbol, ValueUsageInfo> onSymbolUsageFound) 231Action<ISymbol, ValueUsageInfo> onSymbolUsageFound = OnSymbolUsage;
src\roslyn\src\Dependencies\CodeAnalysis.Debugging\CustomDebugInfoEncoder.cs (1)
208Action<T, BlobBuilder> recordSerializer)
Microsoft.CodeAnalysis.NetAnalyzers (18)
Microsoft.CodeQuality.Analyzers\ApiDesignGuidelines\IdentifiersShouldHaveCorrectPrefix.cs (3)
96private static void AnalyzeNamedTypeSymbol<TContext>(INamedTypeSymbol symbol, bool allowSingleLetterTypeParameters, Action<TContext, Diagnostic> addDiagnostic, TContext context) 108private static void AnalyzeMethodSymbol<TContext>(IMethodSymbol symbol, bool allowSingleLetterTypeParameters, Action<TContext, Diagnostic> addDiagnostic, TContext context) 111private static void AnalyzeTypeParameters<TContext>(ImmutableArray<ITypeParameterSymbol> typeParameters, bool allowSingleLetterTypeParameters, Action<TContext, Diagnostic> addDiagnostic, TContext context)
Microsoft.CodeQuality.Analyzers\ApiDesignGuidelines\MarkAttributesWithAttributeUsage.cs (1)
62private static void AnalyzeSymbol<TContext>(INamedTypeSymbol symbol, INamedTypeSymbol attributeType, INamedTypeSymbol attributeUsageAttributeType, Action<TContext, Diagnostic> addDiagnostic, TContext context)
Microsoft.CodeQuality.Analyzers\ApiDesignGuidelines\MovePInvokesToNativeMethodsClass.cs (1)
54private static void AnalyzeSymbol<TContext>(INamedTypeSymbol symbol, Action<TContext, Diagnostic> addDiagnostic, TContext context)
Microsoft.NetCore.Analyzers\InteropServices\UseValidPlatformString.cs (3)
168private static void AnalyzeSymbol<TContext>(Action<TContext, Diagnostic> reportDiagnostic, TContext context, ISymbol symbol, INamedTypeSymbol supportedAttribute, 177private static void AnalyzeAttribute<TContext>(Action<TContext, Diagnostic> reportDiagnostic, TContext context, AttributeData attributeData, PooledDictionary<string, int> knownPlatforms, CancellationToken token) 194static void AnalyzeStringParameter(Action<TContext, Diagnostic> reportDiagnostic, TContext context, SyntaxNode syntax, PooledDictionary<string, int> knownPlatforms, string value)
Microsoft.NetCore.Analyzers\Runtime\DoNotDefineFinalizersForTypesDerivedFromMemoryManager.cs (1)
59private static void AnalyzeSymbol<TContext>(INamedTypeSymbol namedTypeSymbol, INamedTypeSymbol memoryManager, Action<TContext, Diagnostic> addDiagnostic, TContext context)
Microsoft.NetCore.Analyzers\Runtime\TestForEmptyStringsUsingStringLength.cs (2)
74INamedTypeSymbol? linqExpressionTreeType, Action<TContext, Diagnostic> reportDiagnostic, TContext context) 100INamedTypeSymbol? linqExpressionTreeType, Action<TContext, Diagnostic> reportDiagnostic, TContext context)
Microsoft.NetFramework.Analyzers\DoNotUseInsecureXSLTScriptExecution.cs (1)
114ImmutableArray<IArgumentOperation> arguments, Action<TContext, Diagnostic> reportDiagnostic, TContext context)
src\ffd9070534249528\PointsToAnalysis.CorePointsToAnalysisDataDomain.cs (1)
58Action<AnalysisEntity, PointsToAnalysisData> resetAbstractValue)
src\ffd9070534249528\PointsToAnalysis.PointsToAnalysisDomain.cs (1)
26Action<AnalysisEntity, PointsToAnalysisData> resetAbstractValue,
src\sdk\src\Microsoft.CodeAnalysis.NetAnalyzers\src\Utilities\FlowAnalysis\FlowAnalysis\Framework\DataFlow\PredicatedAnalysisData.cs (4)
220Action<DictionaryAnalysisData<TKey, TValue>, DictionaryAnalysisData<TKey, TValue>> applyPredicatedData) 276Action<DictionaryAnalysisData<TKey, TValue>, DictionaryAnalysisData<TKey, TValue>> applyPredicatedData) 325Action<DictionaryAnalysisData<TKey, TValue>, DictionaryAnalysisData<TKey, TValue>> applyPredicatedData) 347Action<DictionaryAnalysisData<TKey, TValue>, DictionaryAnalysisData<TKey, TValue>> applyPredicatedData)
Microsoft.CodeAnalysis.Razor.Compiler (22)
Language\CodeGeneration\CodeWriterExtensions.cs (2)
847public static CodeWriter WriteCommaSeparatedList<T>(this CodeWriter writer, ImmutableArray<T> items, Action<CodeWriter, T> elementWriter) 871public static CodeWriter WriteSeparatedList<T>(this CodeWriter writer, string separator, ImmutableArray<T> items, Action<CodeWriter, T> elementWriter)
Language\DefaultDocumentClassifierPass.cs (3)
29var configureClass = configuration.ConfigureClass[i]; 35var configureNamespace = configuration.ConfigureNamespace[i]; 41var configureMethod = configuration.ConfigureMethod[i];
Language\DefaultDocumentClassifierPassFeature.cs (6)
14public IList<Action<RazorCodeDocument, ClassDeclarationIntermediateNode>> ConfigureClass { get; } = 15new List<Action<RazorCodeDocument, ClassDeclarationIntermediateNode>>(); 17public IList<Action<RazorCodeDocument, NamespaceDeclarationIntermediateNode>> ConfigureNamespace { get; } = 18new List<Action<RazorCodeDocument, NamespaceDeclarationIntermediateNode>>(); 20public IList<Action<RazorCodeDocument, MethodDeclarationIntermediateNode>> ConfigureMethod { get; } = 21new List<Action<RazorCodeDocument, MethodDeclarationIntermediateNode>>();
Language\Legacy\CSharpCodeParser.cs (11)
115private readonly Dictionary<CSharpSyntaxKind, Action<SyntaxListBuilder<RazorSyntaxNode>, CSharpTransitionSyntax?>> _keywordParserMap; 116private readonly Dictionary<string, Action<SyntaxListBuilder<RazorSyntaxNode>, CSharpTransitionSyntax>> _directiveParserMap; 154var keywordParserMap = new Dictionary<CSharpSyntaxKind, Action<SyntaxListBuilder<RazorSyntaxNode>, CSharpTransitionSyntax?>>(capacity: s_initialKeywordCount + 1); 158var directiveParserMap = new Dictionary<string, Action<SyntaxListBuilder<RazorSyntaxNode>, CSharpTransitionSyntax>>(capacity: directives.Length + 5, StringComparer.Ordinal); 180Action<SyntaxListBuilder<RazorSyntaxNode>, CSharpTransitionSyntax?> handler, 225Action<SyntaxListBuilder<RazorSyntaxNode>, CSharpTransitionSyntax> handler, 226Dictionary<string, Action<SyntaxListBuilder<RazorSyntaxNode>, CSharpTransitionSyntax>> directiveParserMap, 1195if (_directiveParserMap.TryGetValue(directive, out var handler)) 2028private void ParseDirectiveBlock(in SyntaxListBuilder<RazorSyntaxNode> builder, DirectiveDescriptor descriptor, Action<SyntaxListBuilder<RazorSyntaxNode>, SourceLocation> parseChildren) 2096if (_keywordParserMap.TryGetValue(result!.Value, out var handler)) 2113if (_keywordParserMap.TryGetValue(result!.Value, out var handler))
Microsoft.CodeAnalysis.ResxSourceGenerator (19)
src\a1065d420d446521\NamingStylePreferencesEditorConfigSerializer.cs (1)
51Action<string, string> entryWriter,
src\b310f676f7308b7f\SymbolUsageAnalysis.BasicBlockAnalysisData.cs (1)
74public void ForEachCurrentWrite<TArg>(ISymbol symbol, Action<IOperation, TArg> action, TArg arg)
src\roslyn\src\Dependencies\PooledObjects\PooledDelegates.cs (8)
98public static Releaser GetPooledAction<T1, TArg>(Action<T1, TArg> unboundAction, TArg argument, out Action<T1> boundAction) 99=> GetPooledDelegate<ActionWithBoundArgument<T1, TArg>, TArg, Action<T1, TArg>, Action<T1>>(unboundAction, argument, out boundAction); 102/// Gets an <see cref="Action{T1, T2}"/> delegate, which calls <paramref name="unboundAction"/> with the specified 132public static Releaser GetPooledAction<T1, T2, TArg>(Action<T1, T2, TArg> unboundAction, TArg argument, out Action<T1, T2> boundAction) 133=> GetPooledDelegate<ActionWithBoundArgument<T1, T2, TArg>, TArg, Action<T1, T2, TArg>, Action<T1, T2>>(unboundAction, argument, out boundAction); 391: AbstractDelegateWithBoundArgument<ActionWithBoundArgument<T1, TArg>, TArg, Action<T1, TArg>, Action<T1>> 398: AbstractDelegateWithBoundArgument<ActionWithBoundArgument<T1, T2, TArg>, TArg, Action<T1, T2, TArg>, Action<T1, T2>> 400protected override Action<T1, T2> Bind()
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\ObjectWriterExtensions.cs (1)
13public static void WriteArray<T>(this ObjectWriter writer, ImmutableArray<T> values, Action<ObjectWriter, T> write)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Engine\AbstractFormatEngine.cs (6)
167var addIndentBlockOperations = _formattingRules.AddIndentBlockOperations; 168var addSuppressOperation = _formattingRules.AddSuppressOperations; 169var addAlignTokensOperations = _formattingRules.AddAlignTokensOperations; 170var addAnchorIndentationOperations = _formattingRules.AddAnchorIndentationOperations; 189private static void AddOperations<T>(SegmentedList<T> operations, List<T> scratch, SyntaxNode node, Action<List<T>, SyntaxNode> addOperations) 203private static void AddOperations<T>(SegmentedList<T> operations, ArrayBuilder<T> scratch, SyntaxNode node, Action<ArrayBuilder<T>, SyntaxNode> addOperations)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\ObjectPools\PooledObject.cs (2)
19private readonly Action<ObjectPool<T>, T> _releaser; 22public PooledObject(ObjectPool<T> pool, Func<ObjectPool<T>, T> allocator, Action<ObjectPool<T>, T> releaser) : this()
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (2)
src\roslyn\src\Analyzers\VisualBasic\Analyzers\RemoveUnusedMembers\VisualBasicRemoveUnusedMembersDiagnosticAnalyzer.vb (2)
22Protected Overrides Sub HandleNamedTypeSymbolStart(context As SymbolStartAnalysisContext, onSymbolUsageFound As Action(Of ISymbol, ValueUsageInfo)) 45Private Shared Sub AnalyzeHandlesClause(context As SyntaxNodeAnalysisContext, onSymbolUsageFound As Action(Of ISymbol, ValueUsageInfo))
Microsoft.CodeAnalysis.VisualBasic.Features (2)
src\roslyn\src\Analyzers\VisualBasic\Analyzers\RemoveUnusedMembers\VisualBasicRemoveUnusedMembersDiagnosticAnalyzer.vb (2)
22Protected Overrides Sub HandleNamedTypeSymbolStart(context As SymbolStartAnalysisContext, onSymbolUsageFound As Action(Of ISymbol, ValueUsageInfo)) 45Private Shared Sub AnalyzeHandlesClause(context As SyntaxNodeAnalysisContext, onSymbolUsageFound As Action(Of ISymbol, ValueUsageInfo))
Microsoft.CodeAnalysis.Workspaces (167)
CodeFixes\CodeFixContext.cs (5)
21private readonly Action<CodeAction, ImmutableArray<Diagnostic>> _registerCodeFix; 89Action<CodeAction, ImmutableArray<Diagnostic>> registerCodeFix, 120Action<CodeAction, ImmutableArray<Diagnostic>> registerCodeFix, 147Action<CodeAction, ImmutableArray<Diagnostic>> registerCodeFix, 171Action<CodeAction, ImmutableArray<Diagnostic>> registerCodeFix,
CodeFixes\FixAllOccurrences\BatchFixAllProvider.cs (2)
154var action = GetRegisterCodeFixAction(fixAllContext.CodeActionEquivalenceKey, codeActions); 229private static Action<CodeAction, ImmutableArray<Diagnostic>> GetRegisterCodeFixAction(
CodeRefactorings\CodeRefactoringContext.cs (2)
56private readonly Action<CodeAction, TextSpan?> _registerRefactoring; 87Action<CodeAction, TextSpan?> registerRefactoring,
FindSymbols\FindReferences\Finders\AbstractMemberScopedReferenceFinder.cs (3)
32Action<Document, TData> processResult, 54Action<FinderLocation, TData> processResult, 103Action<FinderLocation, TData> processResult,
FindSymbols\FindReferences\Finders\AbstractReferenceFinder_GlobalSuppressions.cs (1)
55Action<FinderLocation, TData> processResult,
FindSymbols\FindReferences\Finders\AbstractReferenceFinder.cs (36)
34ISymbol symbol, HashSet<string>? globalAliases, Project project, IImmutableSet<Document>? documents, Action<Document, TData> processResult, TData processResultData, FindReferencesSearchOptions options, CancellationToken cancellationToken); 37ISymbol symbol, FindReferencesDocumentState state, Action<FinderLocation, TData> processResult, TData processResultData, FindReferencesSearchOptions options, CancellationToken cancellationToken); 88Action<Document, TData> processResult, 119Action<Document, TData> processResult, 140Project project, IImmutableSet<Document>? documents, Action<Document, TData> processResult, TData processResultData, CancellationToken cancellationToken) 150Action<Document, TData> processResult, 168Action<FinderLocation, TData> processResult, 183Action<FinderLocation, TData> processResult, 246Action<FinderLocation, TData> processResult, 258Action<FinderLocation, TData> processResult, 287Action<FinderLocation, TData> processResult, 309Action<FinderLocation, TData> processResult, 333Action<Document, TData> processResult, 348Action<Document, TData> processResult, 361protected static Task FindDocumentsWithForEachStatementsAsync<TData>(Project project, IImmutableSet<Document>? documents, Action<Document, TData> processResult, TData processResultData, CancellationToken cancellationToken) 364protected static Task FindDocumentsWithUsingStatementsAsync<TData>(Project project, IImmutableSet<Document>? documents, Action<Document, TData> processResult, TData processResultData, CancellationToken cancellationToken) 367protected static Task FindDocumentsWithCollectionExpressionsAsync<TData>(Project project, IImmutableSet<Document>? documents, Action<Document, TData> processResult, TData processResultData, CancellationToken cancellationToken) 374SyntaxNode node, FindReferencesDocumentState state, Action<FinderLocation, TData> processResult, TData processResultData); 380Action<FinderLocation, TData> processResult, 398Action<FinderLocation, TData> processResult, 406SyntaxNode node, FindReferencesDocumentState state, Action<FinderLocation, TData> processResult, TData processResultData) 434Action<FinderLocation, TData> processResult, 445SyntaxNode node, FindReferencesDocumentState state, Action<FinderLocation, TData> processResult, TData processResultData) 477Action<FinderLocation, TData> processResult, 486Action<FinderLocation, TData> processResult, 513Action<FinderLocation, TData> processResult, 524SyntaxNode node, FindReferencesDocumentState state, Action<FinderLocation, TData> processResult, TData processResultData) 551Action<FinderLocation, TData> processResult, 562SyntaxNode node, FindReferencesDocumentState state, Action<FinderLocation, TData> processResult, TData processResultData) 582Action<FinderLocation, TData> processResult, 593SyntaxNode node, FindReferencesDocumentState state, Action<FinderLocation, TData> processResult, TData processResultData) 699Action<Document, TData> processResult, TData processResultData, 704Action<FinderLocation, TData> processResult, TData processResultData, 723IImmutableSet<Document>? documents, Action<Document, TData> processResult, 731ISymbol symbol, FindReferencesDocumentState state, Action<FinderLocation, TData> processResult, TData processResultData, FindReferencesSearchOptions options, CancellationToken cancellationToken) 757TSymbol symbol, FindReferencesDocumentState state, Action<FinderLocation, TData> processResult, TData processResultData, CancellationToken cancellationToken)
FindSymbols\FindReferences\Finders\AbstractTypeParameterSymbolReferenceFinder.cs (2)
18Action<FinderLocation, TData> processResult, 56Action<FinderLocation, TData> processResult,
FindSymbols\FindReferences\Finders\AliasSymbolReferenceFinder.cs (2)
29Action<Document, TData> processResult, 45Action<FinderLocation, TData> processResult,
FindSymbols\FindReferences\Finders\ConstructorSymbolReferenceFinder.cs (11)
58Action<Document, TData> processResult, 101private static Task FindDocumentsWithImplicitObjectCreationExpressionAsync<TData>(Project project, IImmutableSet<Document>? documents, Action<Document, TData> processResult, TData processResultData, CancellationToken cancellationToken) 108Action<Document, TData> processResult, 125Action<FinderLocation, TData> processResult, 162IMethodSymbol methodSymbol, FindReferencesDocumentState state, Action<FinderLocation, TData> processResult, TData processResultData, string name, string alias, CancellationToken cancellationToken) 182Action<FinderLocation, TData> processResult, 196Action<FinderLocation, TData> processResult, 207Action<FinderLocation, TData> processResult, 228Action<FinderLocation, TData> processResult, 239Action<FinderLocation, TData> processResult, 300Action<FinderLocation, TData> processResult,
FindSymbols\FindReferences\Finders\CrefTypeParameterSymbolReferenceFinder.cs (2)
32Action<Document, TData> processResult, 48Action<FinderLocation, TData> processResult,
FindSymbols\FindReferences\Finders\DestructorSymbolReferenceFinder.cs (2)
23Action<Document, TData> processResult, 33Action<FinderLocation, TData> processResult,
FindSymbols\FindReferences\Finders\DynamicTypeSymbolReferenceFinder.cs (2)
30Action<Document, TData> processResult, 42Action<FinderLocation, TData> processResult,
FindSymbols\FindReferences\Finders\EventSymbolReferenceFinder.cs (2)
54Action<Document, TData> processResult, 66Action<FinderLocation, TData> processResult,
FindSymbols\FindReferences\Finders\ExplicitConstructorInitializerSymbolReferenceFinder.cs (1)
62Action<FinderLocation, TData> processResult,
FindSymbols\FindReferences\Finders\ExplicitConversionSymbolReferenceFinder.cs (2)
31Action<Document, TData> processResult, 65Action<FinderLocation, TData> processResult,
FindSymbols\FindReferences\Finders\ExplicitInterfaceMethodReferenceFinder.cs (2)
23Action<Document, TData> processResult, 34Action<FinderLocation, TData> processResult,
FindSymbols\FindReferences\Finders\ExplicitOrImplicitConstructorInitializerSymbolReferenceFinder.cs (1)
25Action<Document, TData> processResult,
FindSymbols\FindReferences\Finders\FieldSymbolReferenceFinder.cs (2)
34Action<Document, TData> processResult, 46Action<FinderLocation, TData> processResult,
FindSymbols\FindReferences\Finders\ImplicitConstructorInitializerSymbolReferenceFinder.cs (1)
55Action<FinderLocation, TData> processResult,
FindSymbols\FindReferences\Finders\IReferenceFinder.cs (2)
56Action<Document, TData> processResult, TData processResultData, 69Action<FinderLocation, TData> processResult,
FindSymbols\FindReferences\Finders\MethodTypeParameterSymbolReferenceFinder.cs (1)
52Action<Document, TData> processResult,
FindSymbols\FindReferences\Finders\NamedTypeSymbolReferenceFinder.cs (8)
62Action<Document, TData> processResult, 89Action<Document, TData> processResult, 115Action<FinderLocation, TData> processResult, 148Action<FinderLocation, TData> processResult, 163INamedTypeSymbol namedType, FindReferencesDocumentState state, Action<FinderLocation, TData> processResult, TData processResultData, string alias, CancellationToken cancellationToken) 184Action<FinderLocation, TData> processResult, 199Action<FinderLocation, TData> processResult, 236Action<FinderLocation, TData> processResult,
FindSymbols\FindReferences\Finders\NamespaceSymbolReferenceFinder.cs (4)
31Action<Document, TData> processResult, 56Action<FinderLocation, TData> processResult, 113Action<FinderLocation, TData> processResult, 126Action<FinderLocation, TData> processResult,
FindSymbols\FindReferences\Finders\OperatorSymbolReferenceFinder.cs (3)
26Action<Document, TData> processResult, 40Action<Document, TData> processResult, 54Action<FinderLocation, TData> processResult,
FindSymbols\FindReferences\Finders\OrdinaryMethodReferenceFinder.cs (7)
72Action<Document, TData> processResult, 113private static Task FindDocumentsWithDeconstructionAsync<TData>(Project project, IImmutableSet<Document>? documents, Action<Document, TData> processResult, TData processResultData, CancellationToken cancellationToken) 116private static Task FindDocumentsWithAwaitExpressionAsync<TData>(Project project, IImmutableSet<Document>? documents, Action<Document, TData> processResult, TData processResultData, CancellationToken cancellationToken) 119private static Task FindDocumentsWithCollectionInitializersAsync<TData>(Project project, IImmutableSet<Document>? documents, Action<Document, TData> processResult, TData processResultData, CancellationToken cancellationToken) 165Action<FinderLocation, TData> processResult, 198Action<FinderLocation, TData> processResult, 208Action<FinderLocation, TData> processResult,
FindSymbols\FindReferences\Finders\ParameterSymbolReferenceFinder.cs (2)
29Action<Document, TData> processResult, 45Action<FinderLocation, TData> processResult,
FindSymbols\FindReferences\Finders\PreprocessingSymbolReferenceFinder.cs (2)
24Action<Document, TData> processResult, 41Action<FinderLocation, TData> processResult,
FindSymbols\FindReferences\Finders\PropertyAccessorSymbolReferenceFinder.cs (2)
44Action<Document, TData> processResult, 73Action<FinderLocation, TData> processResult,
FindSymbols\FindReferences\Finders\PropertySymbolReferenceFinder.cs (5)
112Action<Document, TData> processResult, 137Action<FinderLocation, TData> processResult, 175Project project, IImmutableSet<Document>? documents, Action<Document, TData> processResult, TData processResultData, CancellationToken cancellationToken) 182Project project, IImmutableSet<Document>? documents, Action<Document, TData> processResult, TData processResultData, CancellationToken cancellationToken) 191Action<FinderLocation, TData> processResult,
FindSymbols\FindReferences\Finders\TypeParameterSymbolReferenceFinder.cs (1)
29Action<Document, TData> processResult,
FindSymbols\FindReferences\StandardCallbacks.cs (2)
13public static readonly Action<T, HashSet<T>> AddToHashSet = 16public static readonly Action<T, ArrayBuilder<T>> AddToArrayBuilder =
Log\KeyValueLogMessage.cs (6)
73private Action<Dictionary<string, object?>, TArgs> _propertySetter = null!; 94LogType kind, Action<Dictionary<string, object?>, TArgs> propertySetter, TArgs args, LogLevel logLevel) 103Action<Dictionary<string, object?>, TArgs> propertySetter, TArgs args, LogLevel logLevel) 112LogType kind, Action<Dictionary<string, object?>, TArgs> propertySetter, TArgs args, LogLevel logLevel) 136public static KeyValueLogMessage Create<TArgs>(Action<Dictionary<string, object?>, TArgs> propertySetter, TArgs args, LogLevel logLevel = LogLevel.Information) 139public static KeyValueLogMessage Create<TArgs>(LogType kind, Action<Dictionary<string, object?>, TArgs> propertySetter, TArgs args, LogLevel logLevel = LogLevel.Information)
Shared\Utilities\XmlFragmentParser.cs (2)
38public static void ParseFragment<TArg>(string xmlFragment, Action<XmlReader, TArg> callback, TArg arg) 56private void ParseInternal<TArg>(string text, Action<XmlReader, TArg> callback, TArg arg)
src\a1065d420d446521\NamingStylePreferencesEditorConfigSerializer.cs (1)
51Action<string, string> entryWriter,
src\b310f676f7308b7f\SymbolUsageAnalysis.BasicBlockAnalysisData.cs (1)
74public void ForEachCurrentWrite<TArg>(ISymbol symbol, Action<IOperation, TArg> action, TArg arg)
src\roslyn\src\Dependencies\PooledObjects\PooledDelegates.cs (8)
98public static Releaser GetPooledAction<T1, TArg>(Action<T1, TArg> unboundAction, TArg argument, out Action<T1> boundAction) 99=> GetPooledDelegate<ActionWithBoundArgument<T1, TArg>, TArg, Action<T1, TArg>, Action<T1>>(unboundAction, argument, out boundAction); 102/// Gets an <see cref="Action{T1, T2}"/> delegate, which calls <paramref name="unboundAction"/> with the specified 132public static Releaser GetPooledAction<T1, T2, TArg>(Action<T1, T2, TArg> unboundAction, TArg argument, out Action<T1, T2> boundAction) 133=> GetPooledDelegate<ActionWithBoundArgument<T1, T2, TArg>, TArg, Action<T1, T2, TArg>, Action<T1, T2>>(unboundAction, argument, out boundAction); 391: AbstractDelegateWithBoundArgument<ActionWithBoundArgument<T1, TArg>, TArg, Action<T1, TArg>, Action<T1>> 398: AbstractDelegateWithBoundArgument<ActionWithBoundArgument<T1, T2, TArg>, TArg, Action<T1, T2, TArg>, Action<T1, T2>> 400protected override Action<T1, T2> Bind()
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\ObjectWriterExtensions.cs (1)
13public static void WriteArray<T>(this ObjectWriter writer, ImmutableArray<T> values, Action<ObjectWriter, T> write)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Engine\AbstractFormatEngine.cs (6)
167var addIndentBlockOperations = _formattingRules.AddIndentBlockOperations; 168var addSuppressOperation = _formattingRules.AddSuppressOperations; 169var addAlignTokensOperations = _formattingRules.AddAlignTokensOperations; 170var addAnchorIndentationOperations = _formattingRules.AddAnchorIndentationOperations; 189private static void AddOperations<T>(SegmentedList<T> operations, List<T> scratch, SyntaxNode node, Action<List<T>, SyntaxNode> addOperations) 203private static void AddOperations<T>(SegmentedList<T> operations, ArrayBuilder<T> scratch, SyntaxNode node, Action<ArrayBuilder<T>, SyntaxNode> addOperations)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\ObjectPools\PooledObject.cs (2)
19private readonly Action<ObjectPool<T>, T> _releaser; 22public PooledObject(ObjectPool<T> pool, Func<ObjectPool<T>, T> allocator, Action<ObjectPool<T>, T> releaser) : this()
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Extensions\StringBuilderExtensions.cs (2)
21this StringBuilder builder, string separator, SeparatedSyntaxList<TNode> values, Action<TNode, StringBuilder> append) 37public static StringBuilder AppendJoinedValues<T>(this StringBuilder builder, string separator, ImmutableArray<T> values, Action<T, StringBuilder> append)
Workspace\ProjectSystem\ProjectSystemProject.BatchingDocumentCollection.cs (4)
62private readonly Action<Workspace, DocumentInfo> _documentAddAction; 63private readonly Action<Workspace, DocumentId> _documentRemoveAction; 69Action<Workspace, DocumentInfo> documentAddAction, 70Action<Workspace, DocumentId> documentRemoveAction,
Workspace\Solution\Checksum_Factory.cs (1)
81public static Checksum Create<T>(T @object, Action<T, ObjectWriter> writeObject)
Workspace\Solution\SolutionCompilationState.cs (3)
215Action<ImmutableSegmentedDictionary<ProjectId, ICompilationTracker>.Builder, TArg> modifyNewTrackerInfo, 243Action<ImmutableSegmentedDictionary<ProjectId, ICompilationTracker>.Builder, TArg> modifyNewTrackerInfo, 275Action<ImmutableSegmentedDictionary<ProjectId, ICompilationTracker>.Builder, TArgModifyNewTrackerInfo> modifyNewTrackerInfo,
Workspace\Workspace_Editor.cs (2)
555Action<Solution, DocumentId> checkTextDocumentIsInSolution, 749Action<Solution, DocumentId> checkTextDocumentIsInSolution,
Workspace\Workspace.cs (8)
197/// <inheritdoc cref="SetCurrentSolution(Func{Solution, Solution}, Func{Solution, Solution, ValueTuple{WorkspaceChangeKind, ProjectId?, DocumentId?}}, Action{Solution, Solution}?, Action{Solution, Solution}?)"/> 203Action<Solution, Solution>? onBeforeUpdate = null, 204Action<Solution, Solution>? onAfterUpdate = null) 230Action<Solution, Solution>? onBeforeUpdate = null, 231Action<Solution, Solution>? onAfterUpdate = null) 250Action<Solution, Solution>? onBeforeUpdate, 251Action<Solution, Solution>? onAfterUpdate,
Microsoft.Data.Analysis.Tests (2)
parent\Microsoft.ML.TestFramework\GlobalBase.cs (2)
25var prev = Contracts.SetAssertHandler(AssertHandler); 64var prev = Contracts.SetAssertHandler(null);
Microsoft.DotNet.Cli.Telemetry (1)
Implementation\AzureMonitorLogSerializer.cs (1)
52private static readonly Action<LogRecordScope, (Dictionary<string, string> Properties, HashSet<string> Seen)> AddScopeProperties =
Microsoft.DotNet.Cli.Utils (1)
TelemetryEventEntry.cs (1)
38public static void Subscribe(Action<string, IDictionary<string, string?>?> subscriber)
Microsoft.DotNet.HotReload.Utils.Generator (3)
DeltaProject.cs (1)
60Action<DeltaNaming, DeltaOutputStreams>? outputsReady = default,
Runner.cs (2)
48protected Action<DeltaNaming,DeltaOutputStreams>? OutputsReady {get; set; } = null; 109Action<DeltaNaming, DeltaOutputStreams>? outputsReady = null,
Microsoft.DotNet.HotReload.Watch (3)
FileWatcher\PollingDirectoryWatcher.cs (1)
130private void ForeachEntityInDirectory(DirectoryInfo dirInfo, Action<string, DateTime> fileAction)
src\sdk\src\Dotnet.Watch\HotReloadClient\HotReloadClient.cs (1)
38public event Action<int, string>? OnRuntimeRudeEdit;
src\sdk\src\Dotnet.Watch\HotReloadClient\HotReloadClients.cs (1)
68public event Action<int, string> OnRuntimeRudeEdit
Microsoft.DotNet.HotReload.WebAssembly.Browser (3)
src\sdk\src\Dotnet.Watch\HotReloadAgent\HotReloadAgent.cs (3)
42private Action<int, string>? _hotReloadExceptionCreateHandler; 46Action<int, string>? hotReloadExceptionCreateHandler) 179var handler = Interlocked.Exchange(ref _hotReloadExceptionCreateHandler, null);
Microsoft.DotNet.ProjectTools (1)
LaunchSettings\LaunchSettings.cs (1)
29public static string? TryFindLaunchSettingsFile(string projectOrEntryPointFilePath, string? launchProfile, Action<string, bool> report)
Microsoft.Extensions.AI.Abstractions.Tests (4)
Utilities\AIJsonUtilitiesTests.cs (4)
556var method = ((Action<int, int>)TestMethod).Method; 610var method = ((Action<string, int>)TestMethod).Method; 630ArgumentException ex = Assert.Throws<ArgumentException>(() => AIJsonUtilities.CreateFunctionJsonSchema(((Action<string, string>)DuplicateByAttribute).Method)); 639ArgumentException ex2 = Assert.Throws<ArgumentException>(() => AIJsonUtilities.CreateFunctionJsonSchema(((Action<string, string>)DuplicateByCollision).Method));
Microsoft.Extensions.Caching.StackExchangeRedis (2)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (2)
11private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __CouldNotDetermineServerVersionCallback = 27private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __UnableToAddLibraryNameSuffixCallback =
Microsoft.Extensions.Configuration.Binder.SourceGeneration (2)
Emitter\CoreBindingHelpers.cs (2)
1198Action<string, string?>? writeOnSuccess = !canSet 1243Action<string, string?>? writeOnSuccess = null,
Microsoft.Extensions.Diagnostics.Abstractions (1)
Tracing\TracingBuilderExtensions.Listeners.cs (1)
63public static ITracingBuilder AddListener(this ITracingBuilder builder, string name, Action<IServiceProvider, ActivityListenerBuilder> configure)
Microsoft.Extensions.Diagnostics.HealthChecks (2)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\LoggerMessage.g.cs (2)
11private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __HealthCheckProcessingBeginCallback = 132private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, global::System.Exception?> __HealthCheckPublisherProcessingBeginCallback =
Microsoft.Extensions.DotNetDeltaApplier (3)
src\sdk\src\Dotnet.Watch\HotReloadAgent\HotReloadAgent.cs (3)
42private Action<int, string>? _hotReloadExceptionCreateHandler; 46Action<int, string>? hotReloadExceptionCreateHandler) 179var handler = Interlocked.Exchange(ref _hotReloadExceptionCreateHandler, null);
Microsoft.Extensions.FileSystemGlobbing (7)
Internal\IPatternContext.cs (1)
15void Declare(Action<IPathSegment, bool> onDeclare);
Internal\PatternContexts\CompositePatternContext.cs (1)
11public abstract void Declare(Action<IPathSegment, bool> onDeclare);
Internal\PatternContexts\IncludesFirstCompositePatternContext.cs (1)
20public override void Declare(Action<IPathSegment, bool> onDeclare)
Internal\PatternContexts\PatternContext.cs (1)
15public virtual void Declare(Action<IPathSegment, bool> declare) { }
Internal\PatternContexts\PatternContextLinearInclude.cs (1)
16public override void Declare(Action<IPathSegment, bool> onDeclare)
Internal\PatternContexts\PatternContextRaggedInclude.cs (1)
17public override void Declare(Action<IPathSegment, bool> onDeclare)
Internal\PatternContexts\PreserveOrderCompositePatternContext.cs (1)
16public override void Declare(Action<IPathSegment, bool> onDeclare)
Microsoft.Extensions.Hosting (22)
HostApplicationBuilder.cs (7)
259private readonly List<Action<HostBuilderContext, IConfigurationBuilder>> _configureAppConfigActions = new(); 261private readonly List<Action<HostBuilderContext, IServiceCollection>> _configureServicesActions = new(); 306foreach (Action<HostBuilderContext, IConfigurationBuilder> configureAppAction in _configureAppConfigActions) 310foreach (Action<HostBuilderContext, IServiceCollection> configureServicesAction in _configureServicesActions) 352public IHostBuilder ConfigureAppConfiguration(Action<HostBuilderContext, IConfigurationBuilder> configureDelegate) 360public IHostBuilder ConfigureServices(Action<HostBuilderContext, IServiceCollection> configureDelegate) 385public IHostBuilder ConfigureContainer<TContainerBuilder>(Action<HostBuilderContext, TContainerBuilder> configureDelegate)
HostBuilder.cs (9)
29private readonly List<Action<HostBuilderContext, IConfigurationBuilder>> _configureAppConfigActions = new List<Action<HostBuilderContext, IConfigurationBuilder>>(); 30private readonly List<Action<HostBuilderContext, IServiceCollection>> _configureServicesActions = new List<Action<HostBuilderContext, IServiceCollection>>(); 79public IHostBuilder ConfigureAppConfiguration(Action<HostBuilderContext, IConfigurationBuilder> configureDelegate) 93public IHostBuilder ConfigureServices(Action<HostBuilderContext, IServiceCollection> configureDelegate) 139public IHostBuilder ConfigureContainer<TContainerBuilder>(Action<HostBuilderContext, TContainerBuilder> configureDelegate) 283foreach (Action<HostBuilderContext, IConfigurationBuilder> buildAction in _configureAppConfigActions) 346foreach (Action<HostBuilderContext, IServiceCollection> configureServicesAction in _configureServicesActions)
HostingHostBuilderExtensions.cs (4)
82public static IHostBuilder UseDefaultServiceProvider(this IHostBuilder hostBuilder, Action<HostBuilderContext, ServiceProviderOptions> configure) 98public static IHostBuilder ConfigureLogging(this IHostBuilder hostBuilder, Action<HostBuilderContext, ILoggingBuilder> configureLogging) 120public static IHostBuilder ConfigureHostOptions(this IHostBuilder hostBuilder, Action<HostBuilderContext, HostOptions> configureOptions) 427public static IHostBuilder ConfigureMetrics(this IHostBuilder hostBuilder, Action<HostBuilderContext, IMetricsBuilder> configureMetrics)
Internal\ConfigureContainerAdapter.cs (2)
10private readonly Action<HostBuilderContext, TContainerBuilder> _action; 12public ConfigureContainerAdapter(Action<HostBuilderContext, TContainerBuilder> action)
Microsoft.Extensions.Hosting.Abstractions (4)
IHost.cs (1)
16/// Gets the services configured for the program (for example, using <see cref="IHostBuilder.ConfigureServices(Action{HostBuilderContext, Microsoft.Extensions.DependencyInjection.IServiceCollection})" />).
IHostBuilder.cs (3)
38IHostBuilder ConfigureAppConfiguration(Action<HostBuilderContext, IConfigurationBuilder> configureDelegate); 46IHostBuilder ConfigureServices(Action<HostBuilderContext, IServiceCollection> configureDelegate); 79IHostBuilder ConfigureContainer<TContainerBuilder>(Action<HostBuilderContext, TContainerBuilder> configureDelegate);
Microsoft.Extensions.Hosting.Systemd (1)
SystemdHostBuilderExtensions.cs (1)
83/// <see cref="IHostBuilder.ConfigureServices(System.Action{HostBuilderContext, IServiceCollection})"/> callback.
Microsoft.Extensions.Hosting.Testing (3)
FakeHostBuilder.cs (3)
67public IHostBuilder ConfigureAppConfiguration(Action<HostBuilderContext, IConfigurationBuilder> configureDelegate) 72public IHostBuilder ConfigureServices(Action<HostBuilderContext, IServiceCollection> configureDelegate) 89public IHostBuilder ConfigureContainer<TContainerBuilder>(Action<HostBuilderContext, TContainerBuilder> configureDelegate) => _builder.ConfigureContainer(configureDelegate);
Microsoft.Extensions.Hosting.Testing.Tests (5)
FakeHostBuilderTests.cs (2)
75var configurationDelegate = (HostBuilderContext _, IConfigurationBuilder _) => { }; 101var configurationDelegate = (HostBuilderContext _, object _) => { };
HostingFakesExtensionsTests.cs (3)
118.Setup(x => x.ConfigureAppConfiguration(It.IsAny<Action<HostBuilderContext, IConfigurationBuilder>>())) 337.Setup(x => x.ConfigureAppConfiguration(It.IsAny<Action<HostBuilderContext, IConfigurationBuilder>>())) 339.Callback<Action<HostBuilderContext?, IConfigurationBuilder>>(configure => configure(null, appConfigBuilder));
Microsoft.Extensions.Hosting.WindowsServices (2)
WindowsServiceLifetimeHostBuilderExtensions.cs (2)
72/// <see cref="IHostBuilder.ConfigureServices(Action{HostBuilderContext, IServiceCollection})"/> callback. 91/// <see cref="IHostBuilder.ConfigureServices(Action{HostBuilderContext, IServiceCollection})"/> callback.
Microsoft.Extensions.Http (10)
DependencyInjection\HttpClientBuilderExtensions.cs (4)
48public static IHttpClientBuilder ConfigureHttpClient(this IHttpClientBuilder builder, Action<IServiceProvider, HttpClient> configureClient) 238public static IHttpClientBuilder ConfigurePrimaryHttpMessageHandler(this IHttpClientBuilder builder, Action<HttpMessageHandler, IServiceProvider> configureHandler) 286public static IHttpClientBuilder UseSocketsHttpHandler(this IHttpClientBuilder builder, Action<SocketsHttpHandler, IServiceProvider>? configureHandler = null) 636public static IHttpClientBuilder ConfigureAdditionalHttpMessageHandlers(this IHttpClientBuilder builder, Action<IList<DelegatingHandler>, IServiceProvider> configureAdditionalHandlers)
DependencyInjection\HttpClientFactoryServiceCollectionExtensions.cs (5)
165public static IHttpClientBuilder AddHttpClient(this IServiceCollection services, string name, Action<IServiceProvider, HttpClient> configureClient) 401this IServiceCollection services, Action<IServiceProvider, HttpClient> configureClient) 488this IServiceCollection services, Action<IServiceProvider, HttpClient> configureClient) 573this IServiceCollection services, string name, Action<IServiceProvider, HttpClient> configureClient) 666this IServiceCollection services, string name, Action<IServiceProvider, HttpClient> configureClient)
DependencyInjection\SocketsHttpHandlerBuilderExtensions.cs (1)
28public static ISocketsHttpHandlerBuilder Configure(this ISocketsHttpHandlerBuilder builder, Action<SocketsHttpHandler, IServiceProvider> configure)
Microsoft.Extensions.Http.Diagnostics.PerformanceTests (1)
StaticOptionsMonitor.cs (1)
21public IDisposable OnChange(Action<T, string> listener)
Microsoft.Extensions.Http.Polly (1)
DependencyInjection\PollyServiceCollectionExtensions.cs (1)
89public static IServiceCollection AddPolicyRegistry(this IServiceCollection services, Action<IServiceProvider, IPolicyRegistry<string>> configureRegistry)
Microsoft.Extensions.Http.Resilience (6)
Hedging\StandardHedgingHandlerBuilderExtensions.cs (1)
63public static IStandardHedgingHandlerBuilder Configure(this IStandardHedgingHandlerBuilder builder, Action<HttpStandardHedgingResilienceOptions, IServiceProvider> configure)
Resilience\HttpStandardResiliencePipelineBuilderExtensions.cs (1)
66public static IHttpStandardResiliencePipelineBuilder Configure(this IHttpStandardResiliencePipelineBuilder builder, Action<HttpStandardResilienceOptions, IServiceProvider> configure)
Resilience\ResilienceHttpClientBuilderExtensions.Resilience.cs (2)
60Action<ResiliencePipelineBuilder<HttpResponseMessage>, ResilienceHandlerContext> configure) 136Action<ResiliencePipelineBuilder<HttpResponseMessage>, ResilienceHandlerContext> configure)
Routing\RoutingStrategyBuilderExtensions.cs (2)
61public static IRoutingStrategyBuilder ConfigureOrderedGroups(this IRoutingStrategyBuilder builder, Action<OrderedGroupsRoutingOptions, IServiceProvider> configure) 107public static IRoutingStrategyBuilder ConfigureWeightedGroups(this IRoutingStrategyBuilder builder, Action<WeightedGroupsRoutingOptions, IServiceProvider> configure)
Microsoft.Extensions.Http.Resilience.Tests (2)
Resilience\HttpClientBuilderExtensionsTests.Resilience.cs (1)
37Assert.Throws<ArgumentNullException>(() => builder.AddResilienceHandler("dummy", (Action<ResiliencePipelineBuilder<HttpResponseMessage>, ResilienceHandlerContext>)null!));
Routing\RoutingStrategyTest.cs (1)
112Action<IRoutingStrategyBuilder, IConfiguration> configure,
Microsoft.Extensions.Logging (3)
LoggerFactoryScopeProvider.cs (1)
23public void ForEachScope<TState>(Action<object?, TState> callback, TState state)
src\runtime\src\libraries\Common\src\Extensions\Logging\NullExternalScopeProvider.cs (1)
23void IExternalScopeProvider.ForEachScope<TState>(Action<object?, TState> callback, TState state)
StaticFilterOptionsMonitor.cs (1)
16public IDisposable? OnChange(Action<LoggerFilterOptions, string> listener) => null;
Microsoft.Extensions.Logging.Abstractions (5)
IExternalScopeProvider.cs (1)
20void ForEachScope<TState>(Action<object?, TState> callback, TState state);
LoggerExternalScopeProvider.cs (1)
23public void ForEachScope<TState>(Action<object?, TState> callback, TState state)
LoggerMessage.cs (2)
130public static Action<ILogger, Exception?> Define(LogLevel logLevel, EventId eventId, string formatString) 141public static Action<ILogger, Exception?> Define(LogLevel logLevel, EventId eventId, string formatString, LogDefineOptions? options)
src\runtime\src\libraries\Common\src\Extensions\Logging\NullExternalScopeProvider.cs (1)
23void IExternalScopeProvider.ForEachScope<TState>(Action<object?, TState> callback, TState state)
Microsoft.Extensions.Logging.Console (2)
FormatterOptionsMonitor.cs (1)
23public IDisposable? OnChange(Action<TOptions, string> listener)
src\runtime\src\libraries\Common\src\Extensions\Logging\NullExternalScopeProvider.cs (1)
23void IExternalScopeProvider.ForEachScope<TState>(Action<object?, TState> callback, TState state)
Microsoft.Extensions.Logging.Debug (1)
src\runtime\src\libraries\Common\src\Extensions\Logging\NullExternalScopeProvider.cs (1)
23void IExternalScopeProvider.ForEachScope<TState>(Action<object?, TState> callback, TState state)
Microsoft.Extensions.Logging.EventLog (1)
src\runtime\src\libraries\Common\src\Extensions\Logging\NullExternalScopeProvider.cs (1)
23void IExternalScopeProvider.ForEachScope<TState>(Action<object?, TState> callback, TState state)
Microsoft.Extensions.Logging.EventSource (1)
src\runtime\src\libraries\Common\src\Extensions\Logging\NullExternalScopeProvider.cs (1)
23void IExternalScopeProvider.ForEachScope<TState>(Action<object?, TState> callback, TState state)
Microsoft.Extensions.Options (11)
ConfigureNamedOptions.cs (2)
73public ConfigureNamedOptions(string? name, TDep dependency, Action<TOptions, TDep>? action) 88public Action<TOptions, TDep>? Action { get; }
IOptionsMonitor.cs (1)
39IDisposable? OnChange(Action<TOptions, string?> listener);
OptionsBuilder.cs (2)
68public virtual OptionsBuilder<TOptions> Configure<TDep>(Action<TOptions, TDep> configureOptions) 217public virtual OptionsBuilder<TOptions> PostConfigure<TDep>(Action<TOptions, TDep> configureOptions)
OptionsMonitor.cs (4)
23internal event Action<TOptions, string>? _onChange; 109public IDisposable OnChange(Action<TOptions, string> listener) 132private readonly Action<TOptions, string> _listener; 135public ChangeTrackerDisposable(OptionsMonitor<TOptions> monitor, Action<TOptions, string> listener)
PostConfigureOptions.cs (2)
67public PostConfigureOptions(string? name, TDep dependency, Action<TOptions, TDep>? action) 82public Action<TOptions, TDep>? Action { get; }
Microsoft.Extensions.Options.Contextual (5)
ContextualOptionsServiceCollectionExtensions.cs (3)
77public static IServiceCollection Configure<TOptions>(this IServiceCollection services, Action<IOptionsContext, TOptions> configure) 91public static IServiceCollection Configure<TOptions>(this IServiceCollection services, string? name, Action<IOptionsContext, TOptions> configure) 123public static IServiceCollection ConfigureAll<TOptions>(this IServiceCollection services, Action<IOptionsContext, TOptions> configure)
Internal\ConfigureContextualOptions.cs (2)
24public ConfigureContextualOptions(Action<IOptionsContext, TOptions> configureOptions, IOptionsContext context) 33public Action<IOptionsContext, TOptions> ConfigureOptions { get; }
Microsoft.Extensions.Options.Contextual.Tests (2)
ContextualOptionsServiceCollectionExtensionsTests.cs (2)
44Action<IOptionsContext, string> configureOptions = (_, _) => { }; 66Action<IOptionsContext, string> configureOptions = (_, _) => { };
Microsoft.Extensions.Telemetry (1)
Logging\Import\LoggerFactoryScopeProvider.cs (1)
38public void ForEachScope<TState>(Action<object?, TState> callback, TState state)
Microsoft.Extensions.Telemetry.Tests (2)
Logging\ExtendedLoggerTests.cs (1)
1228public IDisposable? OnChange(Action<T, string> listener) => null;
Logging\SerialExtendedLoggerTests.cs (1)
96public IDisposable? OnChange(Action<T, string> listener) => null;
Microsoft.Extensions.VectorData.Abstractions (1)
ProviderServices\PropertyModel.cs (1)
21private Action<object, object?>? _setter;
Microsoft.Extensions.VectorData.ConformanceTests (4)
TypeTests\DataTypeTests.cs (3)
156Action<TTestType, TTestType>? comparisonAction = null, 346Action<TTestType, TTestType> comparisonAction, 386Action<TTestType, TTestType> comparisonAction,
TypeTests\EmbeddingTypeTests.cs (1)
44Action<TVector, TVector>? vectorEqualityAsserter = null,
Microsoft.Gen.Logging (2)
Model\LoggingMethodParameterExtensions.cs (2)
13Action<IEnumerable<LoggingProperty>, LoggingProperty> callback) 36Action<IEnumerable<LoggingProperty>, LoggingProperty> callback)
Microsoft.Interop.SourceGeneration (8)
ContainingSyntaxContext.cs (1)
174public void WriteToWithUnsafeModifier<TState>(bool useUpdatedMemorySafetyRules, IndentedTextWriter writer, TState writeMembersState, Action<IndentedTextWriter, TState> writeMembers)
ManualTypeMarshallingHelper.cs (7)
146Action<INamedTypeSymbol, INamedTypeSymbol> onArityMismatch, 167Action<INamedTypeSymbol, INamedTypeSymbol> onArityMismatch, 177Action<INamedTypeSymbol, INamedTypeSymbol> onArityMismatch, 190Action<INamedTypeSymbol, INamedTypeSymbol> onArityMismatch, 280public static bool TryResolveEntryPointType(INamedTypeSymbol managedType, ITypeSymbol typeInAttribute, bool isLinearCollectionMarshalling, Action<INamedTypeSymbol, INamedTypeSymbol> onArityMismatch, [NotNullWhen(true)] out ITypeSymbol? entryPoint) 322public static bool TryResolveManagedType(INamedTypeSymbol entryPointType, ITypeSymbol typeInAttribute, bool isLinearCollectionMarshalling, Action<INamedTypeSymbol, INamedTypeSymbol> onArityMismatch, [NotNullWhen(true)] out ITypeSymbol? managed) 365public static bool TryResolveMarshallerType(INamedTypeSymbol entryPointType, ITypeSymbol typeInAttribute, Action<INamedTypeSymbol, INamedTypeSymbol> onArityMismatch, [NotNullWhen(true)] out ITypeSymbol? marshallerType)
Microsoft.Maui (33)
CommandMapper.cs (2)
72 void Add(string key, Action<TViewHandler, TVirtualView> action); 101 public void Add(string key, Action<TViewHandler, TVirtualView> action) =>
PropertyMapper.cs (22)
20 protected readonly Dictionary<string, Action<IElementHandler, IElement>> _mapper = new(StringComparer.Ordinal); 24 List<Action<IElementHandler, IElement>>? _updatePropertiesMappers; 25 Dictionary<string, Action<IElementHandler, IElement>?>? _cachedMappers; 28 List<Action<IElementHandler, IElement>> UpdatePropertiesMappers => _updatePropertiesMappers ?? SnapshotMappers().UpdatePropertiesMappers; 29 Dictionary<string, Action<IElementHandler, IElement>?> CachedMappers => _cachedMappers ?? SnapshotMappers().CachedMappers; 40 protected virtual void SetPropertyCore(string key, Action<IElementHandler, IElement> action) 60 if (cachedMappers.TryGetValue(key, out var action)) 73 var mapper = GetProperty(key); 85 public virtual Action<IElementHandler, IElement>? GetProperty(string key) 87 if (_mapper.TryGetValue(key, out var action)) 97 var returnValue = ch.GetProperty(key); 125 foreach (var mapper in UpdatePropertiesMappers) 177 private (List<string> UpdatePropertiesKeys, List<Action<IElementHandler, IElement>> UpdatePropertiesMappers, Dictionary<string, Action<IElementHandler, IElement>?> CachedMappers) SnapshotMappers() 180 var updatePropertiesMappers = new List<Action<IElementHandler, IElement>>(updatePropertiesKeys.Count); 186 var cachedMappers = new Dictionary<string, Action<IElementHandler, IElement>?>(cacheSize); 190 var mapper = GetProperty(key)!; 205 Action<IElementHandler, IElement>? GetProperty(string key); 218 void Add(string key, Action<TViewHandler, TVirtualView> action); 234 public Action<TViewHandler, TVirtualView> this[string key] 238 var action = GetProperty(key) ?? throw new IndexOutOfRangeException($"Unable to find mapping for '{nameof(key)}'."); 244 public void Add(string key, Action<TViewHandler, TVirtualView> action) =>
PropertyMapperExtensions.cs (9)
16 string key, Action<TViewHandler, TVirtualView, Action<IElementHandler, IElement>?> method) 19 var previousMethod = propertyMapper.GetProperty(key); 38 string key, Action<TViewHandler, TVirtualView, Action<IElementHandler, IElement>?> method) 41 var previousMethod = propertyMapper.GetProperty(key); 63 string key, Action<TViewHandler, TVirtualView> method) 78 string key, Action<TViewHandler, TVirtualView> method) 97 string key, Action<TViewHandler, TVirtualView> method) 118 string key, Action<TViewHandler, TVirtualView> method) 137 string key, Action<TViewHandler, TVirtualView> method)
Microsoft.Maui.Controls (30)
Animation.cs (1)
71 public void Commit(IAnimatable owner, string name, uint rate = 16, uint length = 250, Easing easing = null, Action<double, bool> finished = null, Func<bool> repeat = null)
AnimationExtensions.cs (7)
136 public static void Animate(this IAnimatable self, string name, Animation animation, uint rate = 16, uint length = 250, Easing easing = null, Action<double, bool> finished = null, 156 Action<double, bool> finished = null, Func<bool> repeat = null) 162 public static void Animate(this IAnimatable self, string name, Action<double> callback, uint rate = 16, uint length = 250, Easing easing = null, Action<double, bool> finished = null, 172 Action<T, bool> finished = null, Func<bool> repeat = null, IAnimationManager animationManager = null) 256 uint rate, uint length, Easing easing, Action<T, bool> finished, Func<bool> repeat) 263 Action<double, bool> final = null; 389 public Action<double, bool> Finished;
BindableObjectExtensions.cs (1)
35 internal static void PropagateBindingContext<T>(this BindableObject self, IEnumerable<T> children, Action<BindableObject, object> setChildBindingContext)
Element\Element.cs (5)
61 List<Action<object, ResourcesChangedEventArgs>> _changeHandlers; 372 void IElementDefinition.AddResourcesChangedListener(Action<object, ResourcesChangedEventArgs> onchanged) 374 _changeHandlers ??= new List<Action<object, ResourcesChangedEventArgs>>(2); 443 void IElementDefinition.RemoveResourcesChangedListener(Action<object, ResourcesChangedEventArgs> onchanged) 753 foreach (Action<object, ResourcesChangedEventArgs> handler in _changeHandlers.ToList())
ElementTemplate.cs (5)
12 List<Action<object, ResourcesChangedEventArgs>> _changeHandlers; 40 void IElementDefinition.AddResourcesChangedListener(Action<object, ResourcesChangedEventArgs> onchanged) 42 _changeHandlers = _changeHandlers ?? new List<Action<object, ResourcesChangedEventArgs>>(1); 66 void IElementDefinition.RemoveResourcesChangedListener(Action<object, ResourcesChangedEventArgs> onchanged) 104 foreach (Action<object, ResourcesChangedEventArgs> handler in _changeHandlers)
IElementDefinition.cs (2)
14 void AddResourcesChangedListener(Action<object, ResourcesChangedEventArgs> onchanged); 17 void RemoveResourcesChangedListener(Action<object, ResourcesChangedEventArgs> onchanged);
Internals\NotifyCollectionChangedEventArgsExtensions.cs (1)
25 public static NotifyCollectionChangedAction Apply(this NotifyCollectionChangedEventArgs self, Action<object, int, bool> insert, Action<object, int> removeAt, Action reset)
MessagingCenter.cs (3)
15 void Subscribe<TSender, TArgs>(object subscriber, string message, Action<TSender, TArgs> callback, TSender source = null) where TSender : class; 134 public static void Subscribe<TSender, TArgs>(object subscriber, string message, Action<TSender, TArgs> callback, TSender source = null) where TSender : class 139 void IMessagingCenter.Subscribe<TSender, TArgs>(object subscriber, string message, Action<TSender, TArgs> callback, TSender source)
StyleSheets\Selector.cs (1)
17 Action<Operator, Selector> setCurrentSelector = (op, sel) => SetCurrentSelector(ref root, ref workingRoot, ref workingRootParent, op, sel);
TypedBinding.cs (3)
97 Action<TSource, TProperty> setter = null, 123 readonly Action<TSource, TProperty> _setter; 126 public TypedBinding(Func<TSource, (TProperty value, bool success)> getter, Action<TSource, TProperty> setter, Tuple<Func<TSource, object>, string>[] handlers)
ViewExtensions.cs (1)
39 Action<VisualElement, double> updateAction, uint length = 250, Easing? easing = null)
Microsoft.Maui.Controls.SourceGen (2)
src\Controls\src\Xaml\XamlNodeVisitor.cs (2)
30 readonly Action<INode, INode> action; 32 public XamlNodeVisitor(Action<INode, INode> action, TreeVisitingMode visitingMode = TreeVisitingMode.TopDown, bool stopOnDataTemplate = false, bool visitNodeOnDataTemplate = true)
Microsoft.Maui.Controls.Xaml (2)
XamlNodeVisitor.cs (2)
30 readonly Action<INode, INode> action; 32 public XamlNodeVisitor(Action<INode, INode> action, TreeVisitingMode visitingMode = TreeVisitingMode.TopDown, bool stopOnDataTemplate = false, bool visitNodeOnDataTemplate = true)
Microsoft.ML.Core (20)
Environment\ConsoleEnvironment.cs (1)
332Action<IMessageSource, ChannelMessage> dispatch)
Environment\HostEnvironmentBase.cs (13)
161protected readonly Action<IMessageSource, TMessage> Dispatch; 168Action<IMessageSource, TMessage> dispatch) 218Action<IMessageSource, ChannelMessage> dispatch) 271Action<IMessageSource, TMessage> dispatch) : 297private volatile Action<IMessageSource, TMessage> _listenerAction; 302private readonly Action<IMessageSource, TMessage> _dispatch; 309public Action<IMessageSource, TMessage> Dispatch { get { return _dispatch; } } 316public void AddListener(Action<IMessageSource, TMessage> listenerFunc) 322public void RemoveListener(Action<IMessageSource, TMessage> listenerFunc) 452Action<IMessageSource, TMessage> listenerAction, IMessageSource channel, TMessage message) 459protected Action<IMessageSource, TMessage> GetDispatchDelegate<TMessage>() 497public void AddListener<TMessage>(Action<IMessageSource, TMessage> listenerFunc) 504public void RemoveListener<TMessage>(Action<IMessageSource, TMessage> listenerFunc)
Utilities\Contracts.cs (4)
64private static volatile Action<string, IExceptionContext> _handler; 237public static Action<string, IExceptionContext> SetAssertHandler(Action<string, IExceptionContext> handler) 778var handler = _handler;
Utilities\Utils.cs (1)
1222public static void MarshalActionInvoke<TArg1, TArg2>(Action<TArg1, TArg2> act, Type genArg, TArg1 arg1, TArg2 arg2)
Utilities\VBufferUtils.cs (1)
83public static void ForEachDefined<T>(in VBuffer<T> a, Action<int, T> visitor)
Microsoft.ML.Core.Tests (1)
UnitTests\TestCustomTypeRegister.cs (1)
169public override Action<AlienHero, SuperAlienHero> GetMapping()
Microsoft.ML.CpuMath (4)
parent\Microsoft.ML.Core\Utilities\Contracts.cs (4)
64private static volatile Action<string, IExceptionContext> _handler; 237public static Action<string, IExceptionContext> SetAssertHandler(Action<string, IExceptionContext> handler) 778var handler = _handler;
Microsoft.ML.Data (19)
DataDebuggerPreview.cs (5)
19private static readonly FuncInstanceMethodInfo1<DataDebuggerPreview, DataViewRow, int, Action<RowInfo, List<object>>> _makeSetterMethodInfo 20= FuncInstanceMethodInfo1<DataDebuggerPreview, DataViewRow, int, Action<RowInfo, List<object>>>.Create(target => target.MakeSetter<int>); 46var setters = new Action<RowInfo, List<object>>[n]; 68private Action<RowInfo, List<object>> MakeSetter<T>(DataViewRow row, int col) 72Action<RowInfo, List<object>> result = (rowInfo, list) =>
DataLoadSave\Binary\BinaryLoader.cs (1)
2230Action<string, long> report =
DataLoadSave\Text\TextSaver.cs (8)
84public abstract void WriteData(Action<StringBuilder, int> appendItem, out int length); 86public abstract void WriteHeader(Action<StringBuilder, int> appendItem, out int length); 176public override void WriteData(Action<StringBuilder, int> appendItem, out int length) 200public override void WriteHeader(Action<StringBuilder, int> appendItem, out int length) 234public override void WriteData(Action<StringBuilder, int> appendItem, out int length) 242public override void WriteHeader(Action<StringBuilder, int> appendItem, out int length) 581Action<StringBuilder, int> append = (sb, index) => AppendItem(sb, index, _pipes[_col].Default); 582Action<StringBuilder, int> appendHeader = (sb, index) => AppendItem(sb, index, "");
DataLoadSave\Transpose\TransposeSaver.cs (1)
131Action<string, IDataView> viewAction =
Prediction\CalibratorCatalog.cs (1)
87Action<SchemaShape.Column, string> checkColumnValid = (SchemaShape.Column column, string columnRole) =>
Utilities\LocalEnvironment.cs (3)
21Action<IMessageSource, ChannelMessage> dispatch) 57public void AddListener(Action<IMessageSource, ChannelMessage> listener) 63public void RemoveListener(Action<IMessageSource, ChannelMessage> listener)
Microsoft.ML.FastTree (1)
TreeEnsemble\InternalRegressionTree.cs (1)
436private void CheckValid(Action<bool, string> checker)
Microsoft.ML.IntegrationTests (3)
Datasets\Iris.cs (1)
43Action<Iris, IrisWithGroup> generateGroupId = (input, output) =>
DataTransformation.cs (2)
50Action<Iris, IrisWithOneExtraColumn> generateGroupId = (input, output) => 95Action<Iris, IrisWithTwoExtraColumns> generateGroupId = (input, output) =>
Microsoft.ML.OnnxTransformerTest (2)
OnnxTransformTests.cs (2)
837/// Use <see cref="CustomMappingCatalog.CustomMapping{TSrc, TDst}(TransformsCatalog, Action{TSrc, TDst}, string, SchemaDefinition, SchemaDefinition)"/> 851Action<OnnxMapInput, OnnxMapOutput> action = (input, output) =>
Microsoft.ML.Predictor.Tests (2)
CmdLine\CmdLine.cs (2)
86Action<IndentedTextWriter, string> action = null; 341Action<IndentedTextWriter, string> action)
Microsoft.ML.Samples (7)
Dynamic\TensorFlow\TextClassification.cs (1)
90Action<IMDBSentiment, IntermediateFeatures> ResizeFeaturesAction =
Dynamic\TextTransform.cs (1)
76Action<string, IEnumerable<VBuffer<float>>> printHelper = (columnName,
Dynamic\Transforms\CustomMapping.cs (1)
31Action<InputData, CustomMappingOutput> mapping =
Dynamic\Transforms\CustomMappingSaveAndLoad.cs (1)
91public override Action<InputData, CustomMappingOutput> GetMapping()
Dynamic\Transforms\CustomMappingWithInMemoryCustomType.cs (1)
216public static Action<AlienHero, SuperAlienHero> GetMapping()
Dynamic\Transforms\Projection\VectorWhiten.cs (1)
36Action<string, IEnumerable<VBuffer<float>>> printHelper = (colName,
Dynamic\Transforms\Projection\VectorWhitenWithOptions.cs (1)
35Action<string, IEnumerable<VBuffer<float>>> printHelper = (colName,
Microsoft.ML.Samples.GPU (1)
parent\Microsoft.ML.Samples\Dynamic\TensorFlow\TextClassification.cs (1)
90Action<IMDBSentiment, IntermediateFeatures> ResizeFeaturesAction =
Microsoft.ML.StandardTrainers (2)
Standard\SdcaBinary.cs (2)
2070Action<int, IProgressChannel> checkConvergence = (e, pch) => 2108var trainingTasks = new Action<Random, IProgressChannel>[_options.NumberOfIterations];
Microsoft.ML.TestFramework (2)
GlobalBase.cs (2)
25var prev = Contracts.SetAssertHandler(AssertHandler); 64var prev = Contracts.SetAssertHandler(null);
Microsoft.ML.Tests (7)
Scenarios\Api\CookbookSamples\CookbookSamplesDynamicApi.cs (3)
731public override Action<InputRow, OutputRow> GetMapping() 768Action<InputRow, OutputRow> mapping = (input, output) => output.Label = input.Income > 50000; 777Action<InputRow, OutputRow> mapping = (input, output) => output.Label = input.Income > 50000;
Scenarios\Api\Estimators\Extensibility.cs (1)
33Action<IrisData, IrisData> action = (i, j) =>
TrainerEstimators\TreeEnsembleFeaturizerTest.cs (1)
794Action<RowWithKey, RowWithFloat> actionConvertKeyToFloat = (RowWithKey rowWithKey, RowWithFloat rowWithFloat) =>
Transformers\CustomMappingTests.cs (2)
43public override Action<MyInput, MyOutput> GetMapping() 100Action<MyInput, MyOutput> mapping = (input, output) => output.Together = input.Float1.ToString();
Microsoft.ML.Transforms (12)
CustomMappingCatalog.cs (1)
44public static CustomMappingEstimator<TSrc, TDst> CustomMapping<TSrc, TDst>(this TransformsCatalog catalog, Action<TSrc, TDst> mapAction, string contractName,
CustomMappingFactory.cs (2)
38public abstract Action<TSrc, TDst> GetMapping(); 42Action<TSrc, TDst> mapAction = GetMapping();
CustomMappingTransformer.cs (4)
23private readonly Action<TSrc, TDst> _mapAction; 44internal CustomMappingTransformer(IHostEnvironment env, Action<TSrc, TDst> mapAction, string contractName, 229/// <seealso cref="CustomMappingCatalog.CustomMapping{TSrc, TDst}(TransformsCatalog, Action{TSrc, TDst}, string, SchemaDefinition, SchemaDefinition)"/> 242internal CustomMappingEstimator(IHostEnvironment env, Action<TSrc, TDst> mapAction, string contractName,
Expression\LambdaParser.cs (2)
107Action<string, TokKind> p = _kwt.AddPunctuator; 142Action<string, TokKind> w = _kwt.AddKeyWord;
Expression\MethodGenerator.cs (3)
70private Action<LocalBuilder, bool> _dispose; 75internal Temporary(Action<LocalBuilder, bool> dispose, LocalBuilder localBuilder, bool isRef) 140private Action<LocalBuilder, bool> _tempDisposer;
Microsoft.ML.Vision (1)
ImageClassificationTrainer.cs (1)
1069IntPtr featureBufferPtr, IntPtr labelBufferPtr, Action<Tensor[], ImageClassificationMetrics> metricsAggregator)
Microsoft.NET.Build.Containers (1)
ImageBuilder.cs (1)
158Action<string, string?> logError)
Microsoft.NET.Build.Tasks (1)
ResolvePackageAssets.cs (1)
1875Action<LockFileTargetLibrary, T> writeMetadata = null)
Microsoft.Private.Windows.Core (1)
System\Private\Windows\BinaryFormat\BinaryFormatWriter.cs (1)
782public static bool TryWrite<T>(Action<Stream, T> action, Stream stream, T value)
Microsoft.TemplateEngine.Cli (1)
CliTemplateEngineHost.cs (1)
67public IDisposable? OnChange(Action<TOptions, string?> listener) => null;
Microsoft.TemplateEngine.Utils (4)
DefaultTemplateEngineHost.cs (4)
17private readonly Dictionary<string, Action<string, string[]>> _diagnosticLoggers; 47_diagnosticLoggers = new Dictionary<string, Action<string, string[]>>(); 123public void RegisterDiagnosticLogger(string category, Action<string, string[]> messageHandler) 130if (_diagnosticLoggers.TryGetValue(category, out Action<string, string[]> messageHandler))
Microsoft.TestPlatform.CrossPlatEngine (2)
Client\ProxyOperationManager.cs (1)
406public string? RemoveNodesFromRunsettingsIfRequired(string? runsettingsXml, Action<TestMessageLevel, string> logMessage)
DataCollection\DataCollectionLauncher.cs (1)
73protected Action<object?, string?> ErrorReceivedCallback => (process, data) =>
Microsoft.TestPlatform.Extensions.BlameDataCollector (4)
ProcDumpDumper.cs (2)
70protected Action<object?, string?> OutputReceivedCallback => (process, data) => 98internal static Action<object?, string?> ErrorReceivedCallback => (process, data) =>
ProcessDumpUtility.cs (1)
43protected Action<object?, string?> OutputReceivedCallback => (process, data) =>
WindowsHangDumper.cs (1)
29private static Action<object?, string?> OutputReceivedCallback => (process, data) =>
Microsoft.TestPlatform.PlatformAbstractions (8)
common\System\ProcessHelper.cs (4)
45public object LaunchProcess(string processPath, string? arguments, string? workingDirectory, IDictionary<string, string?>? envVariables, Action<object?, string?>? errorCallback, Action<object?>? exitCallBack, Action<object?, string?>? outputCallBack) 49public object LaunchProcess(string processPath, string? arguments, string? workingDirectory, IDictionary<string, string?>? envVariables, Action<object?, string?>? errorCallback, Action<object?>? exitCallBack, Action<object?, string?>? outputCallBack, bool createNoNewWindow)
Interfaces\System\IProcessHelper.cs (4)
25object LaunchProcess(string processPath, string? arguments, string? workingDirectory, IDictionary<string, string?>? envVariables, Action<object?, string?>? errorCallback, Action<object?>? exitCallBack, Action<object?, string?>? outputCallBack); 39object LaunchProcess(string processPath, string? arguments, string? workingDirectory, IDictionary<string, string?>? envVariables, Action<object?, string?>? errorCallback, Action<object?>? exitCallBack, Action<object?, string?>? outputCallBack, bool createNoNewWindow);
Microsoft.TestPlatform.TestHostRuntimeProvider (6)
Hosting\DefaultTestHostManager.cs (3)
132private Action<object?, string?> ErrorReceivedCallback => (process, data) => 142private Action<object?, string?> OutputReceivedCallback => (process, data) => 537var outputCallback = _captureOutput ? OutputReceivedCallback : null;
Hosting\DotnetTestHostManager.cs (3)
179private Action<object?, string?> ErrorReceivedCallback => (process, data) => 189private Action<object?, string?> OutputReceivedCallback => (process, data) => 956var outputCallback = _captureOutput ? OutputReceivedCallback : null;
Mono.Cecil (2)
Mono.Cecil\AssemblyReader.cs (1)
1744 void ReadPointers<TMember> (Table ptr, Table table, Range range, Collection<TMember> members, Action<uint, Collection<TMember>> reader)
Mono.Cecil\ModuleDefinition.cs (1)
1014 internal void Read<TItem> (TItem item, Action<TItem, MetadataReader> read)
mscorlib (1)
parent\ref\mscorlib.cs (1)
31[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Action<,>))]
netstandard (1)
netstandard.cs (1)
26[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Action<,>))]
NuGet.DependencyResolver.Core (2)
GraphModel\GraphOperations.cs (2)
624private static void ForEach<TItem, TContext>(this GraphNode<TItem> root, Action<GraphNode<TItem>, TContext> visitor, TContext context, Func<GraphNode<TItem>, bool>? skipNode) 644public static void ForEach<TItem, TContext>(this GraphNode<TItem> root, Action<GraphNode<TItem>, TContext> visitor, TContext context)
NuGet.PackageManagement (6)
FileModifiers\XmlTransformer.cs (2)
23private readonly IDictionary<XName, Action<XElement, XElement>> _nodeActions; 31public XmlTransformer(IDictionary<XName, Action<XElement, XElement>> nodeActions)
Projects\MSBuildNuGetProject.cs (2)
629private static IDictionary<XName, Action<XElement, XElement>> GetConfigMappings() 634return new Dictionary<XName, Action<XElement, XElement>>
Utility\XElementExtensions.cs (2)
113public static XElement MergeWith(this XElement source, XElement target, IDictionary<XName, Action<XElement, XElement>> nodeActions) 161Action<XElement, XElement> nodeAction;
NuGet.ProjectModel (1)
JsonUtility.cs (1)
132internal static void WriteObject<TItem>(JsonWriter writer, IEnumerable<TItem> items, Action<JsonWriter, TItem> writeItem)
NuGet.Protocol (3)
HttpSource\HttpHandlerResourceV3.cs (1)
46public static Action<Uri, ICredentials>? CredentialsSuccessfullyUsed { get; set; }
Plugins\MessageConverter.cs (2)
65private static readonly Dictionary<Type, Action<Utf8JsonWriter, object>> _write = new() 179if (!_write.TryGetValue(value.PayloadObject.GetType(), out var serialize))
PresentationCore (5)
System\Windows\Input\TouchDevice.cs (3)
448Action<DependencyObject, bool> originChangedAction = capture ? null : RaiseTouchEnterOrLeaveAction; 916private Action<DependencyObject, bool> RaiseTouchEnterOrLeaveAction 1299private Action<DependencyObject, bool> _raiseTouchEnterOrLeaveAction;
System\Windows\ReverseInheritProperty.cs (2)
43Action<DependencyObject, bool> originChangedAction) 160Action<DependencyObject, bool> originChangedAction)
PresentationFramework (12)
MS\Internal\WindowsRuntime\Generated\WinRT\Marshalers.cs (10)
375public static readonly Action<object, IntPtr> CopyAbi; 376private static Action<object, IntPtr> BindCopyAbi() 381return Expression.Lambda<Action<object, IntPtr>>( 404public static readonly Action<T, IntPtr> CopyManaged; 405private static Action<T, IntPtr> BindCopyManaged() 410return Expression.Lambda<Action<T, IntPtr>>( 714public static unsafe void CopyManagedArray(T[] array, IntPtr data, Action<T, IntPtr> copyManaged) 1105public static readonly Action<object, IntPtr> CopyAbi; 1108public static readonly Action<T, IntPtr> CopyManaged; 1115public static readonly Action<T[], IntPtr> CopyManagedArray;
System\Windows\Markup\Baml2006\WpfKnownMember.cs (2)
26private Action<object, object> _setDelegate; 112public Action<object, object> SetDelegate
Roslyn.Diagnostics.Analyzers (21)
src\a1065d420d446521\NamingStylePreferencesEditorConfigSerializer.cs (1)
51Action<string, string> entryWriter,
src\b310f676f7308b7f\SymbolUsageAnalysis.BasicBlockAnalysisData.cs (1)
74public void ForEachCurrentWrite<TArg>(ISymbol symbol, Action<IOperation, TArg> action, TArg arg)
src\roslyn\src\Dependencies\PooledObjects\PooledDelegates.cs (8)
98public static Releaser GetPooledAction<T1, TArg>(Action<T1, TArg> unboundAction, TArg argument, out Action<T1> boundAction) 99=> GetPooledDelegate<ActionWithBoundArgument<T1, TArg>, TArg, Action<T1, TArg>, Action<T1>>(unboundAction, argument, out boundAction); 102/// Gets an <see cref="Action{T1, T2}"/> delegate, which calls <paramref name="unboundAction"/> with the specified 132public static Releaser GetPooledAction<T1, T2, TArg>(Action<T1, T2, TArg> unboundAction, TArg argument, out Action<T1, T2> boundAction) 133=> GetPooledDelegate<ActionWithBoundArgument<T1, T2, TArg>, TArg, Action<T1, T2, TArg>, Action<T1, T2>>(unboundAction, argument, out boundAction); 391: AbstractDelegateWithBoundArgument<ActionWithBoundArgument<T1, TArg>, TArg, Action<T1, TArg>, Action<T1>> 398: AbstractDelegateWithBoundArgument<ActionWithBoundArgument<T1, T2, TArg>, TArg, Action<T1, T2, TArg>, Action<T1, T2>> 400protected override Action<T1, T2> Bind()
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\ObjectWriterExtensions.cs (1)
13public static void WriteArray<T>(this ObjectWriter writer, ImmutableArray<T> values, Action<ObjectWriter, T> write)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Engine\AbstractFormatEngine.cs (6)
167var addIndentBlockOperations = _formattingRules.AddIndentBlockOperations; 168var addSuppressOperation = _formattingRules.AddSuppressOperations; 169var addAlignTokensOperations = _formattingRules.AddAlignTokensOperations; 170var addAnchorIndentationOperations = _formattingRules.AddAnchorIndentationOperations; 189private static void AddOperations<T>(SegmentedList<T> operations, List<T> scratch, SyntaxNode node, Action<List<T>, SyntaxNode> addOperations) 203private static void AddOperations<T>(SegmentedList<T> operations, ArrayBuilder<T> scratch, SyntaxNode node, Action<ArrayBuilder<T>, SyntaxNode> addOperations)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\ObjectPools\PooledObject.cs (2)
19private readonly Action<ObjectPool<T>, T> _releaser; 22public PooledObject(ObjectPool<T> pool, Func<ObjectPool<T>, T> allocator, Action<ObjectPool<T>, T> releaser) : this()
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Extensions\StringBuilderExtensions.cs (2)
21this StringBuilder builder, string separator, SeparatedSyntaxList<TNode> values, Action<TNode, StringBuilder> append) 37public static StringBuilder AppendJoinedValues<T>(this StringBuilder builder, string separator, ImmutableArray<T> values, Action<T, StringBuilder> append)
Roslyn.Diagnostics.CSharp.Analyzers (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Extensions\SyntaxNodeExtensions.cs (1)
749public static void ForEachMember<TArg>(this SyntaxNode? node, Action<MemberDeclarationSyntax, TArg> callback, TArg arg)
System.ComponentModel.Composition.Registration (17)
System\ComponentModel\Composition\Registration\PartBuilder.cs (17)
25private Action<ParameterInfo, ImportBuilder> _configureConstructorImports; 28private readonly List<Tuple<Predicate<PropertyInfo>, Action<PropertyInfo, ExportBuilder>, Type>> _propertyExports; 29private readonly List<Tuple<Predicate<PropertyInfo>, Action<PropertyInfo, ImportBuilder>, Type>> _propertyImports; 30private readonly List<Tuple<Predicate<Type>, Action<Type, ExportBuilder>>> _interfaceExports; 40_propertyExports = new List<Tuple<Predicate<PropertyInfo>, Action<PropertyInfo, ExportBuilder>, Type>>(); 41_propertyImports = new List<Tuple<Predicate<PropertyInfo>, Action<PropertyInfo, ImportBuilder>, Type>>(); 42_interfaceExports = new List<Tuple<Predicate<Type>, Action<Type, ExportBuilder>>>(); 80Action<ParameterInfo, ImportBuilder> importConfiguration) 100Action<Type, ExportBuilder> exportConfiguration) 118Action<PropertyInfo, ExportBuilder> exportConfiguration) 136Action<PropertyInfo, ExportBuilder> exportConfiguration) 154Action<PropertyInfo, ImportBuilder> importConfiguration) 171Action<PropertyInfo, ImportBuilder> importConfiguration) 316foreach (Tuple<Predicate<Type>, Action<Type, ExportBuilder>> exportSpecification in _interfaceExports) 386private static void ConfigureConstructorAttributes(ConstructorInfo constructorInfo, ref List<Tuple<object, List<Attribute>>> configuredMembers, Action<ParameterInfo, ImportBuilder> configureConstructorImports) 430foreach (Tuple<Predicate<PropertyInfo>, Action<PropertyInfo, ImportBuilder>, Type> importSpecification in _propertyImports) 470foreach (Tuple<Predicate<PropertyInfo>, Action<PropertyInfo, ExportBuilder>, Type> exportSpecification in _propertyExports)
System.Composition.Convention (22)
System\Composition\Convention\PartConventionBuilder.cs (22)
30private Action<ParameterInfo, ImportConventionBuilder> _configureConstructorImports; 33private readonly List<Tuple<Predicate<PropertyInfo>, Action<PropertyInfo, ExportConventionBuilder>, Type>> _propertyExports; 34private readonly List<Tuple<Predicate<PropertyInfo>, Action<PropertyInfo, ImportConventionBuilder>>> _propertyImports; 35private readonly List<Tuple<Predicate<Type>, Action<Type, ExportConventionBuilder>>> _interfaceExports; 44_propertyExports = new List<Tuple<Predicate<PropertyInfo>, Action<PropertyInfo, ExportConventionBuilder>, Type>>(); 45_propertyImports = new List<Tuple<Predicate<PropertyInfo>, Action<PropertyInfo, ImportConventionBuilder>>>(); 46_interfaceExports = new List<Tuple<Predicate<Type>, Action<Type, ExportConventionBuilder>>>(); 122Action<ParameterInfo, ImportConventionBuilder> importConfiguration) 159Action<Type, ExportConventionBuilder> exportConfiguration) 168Action<Type, ExportConventionBuilder> exportConfiguration) 193Action<PropertyInfo, ExportConventionBuilder> exportConfiguration) 202Action<PropertyInfo, ExportConventionBuilder> exportConfiguration) 229Action<PropertyInfo, ExportConventionBuilder> exportConfiguration) 238Action<PropertyInfo, ExportConventionBuilder> exportConfiguration) 263Action<PropertyInfo, ImportConventionBuilder> importConfiguration) 272Action<PropertyInfo, ImportConventionBuilder> importConfiguration) 299Action<PropertyInfo, ImportConventionBuilder> importConfiguration) 308Action<PropertyInfo, ImportConventionBuilder> importConfiguration) 512foreach (Tuple<Predicate<Type>, Action<Type, ExportConventionBuilder>> exportSpecification in _interfaceExports) 577private static void ConfigureConstructorAttributes(ConstructorInfo constructorInfo, ref List<Tuple<object, List<Attribute>>> configuredMembers, Action<ParameterInfo, ImportConventionBuilder> configureConstructorImports) 676foreach (Tuple<Predicate<PropertyInfo>, Action<PropertyInfo, ImportConventionBuilder>> importSpecification in _propertyImports) 713foreach (Tuple<Predicate<PropertyInfo>, Action<PropertyInfo, ExportConventionBuilder>, Type> exportSpecification in _propertyExports)
System.Core (1)
System.Core.cs (1)
19[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Action<,>))]
System.Diagnostics.DiagnosticSource (20)
System\Diagnostics\ActivitySource.cs (1)
642public void EnumWithAction(Action<T, object> action, object arg)
System\Diagnostics\DiagnosticListener.cs (4)
284internal Action<Activity, object?>? OnActivityImport; 285internal Action<Activity, object?>? OnActivityExport; 435Action<Activity, object?>? onActivityImport, Action<Activity, object?>? onActivityExport)
System\Diagnostics\DiagnosticSourceActivity.cs (2)
144Action<Activity, object?>? onActivityImport = null, Action<Activity, object?>? onActivityExport = null)
System\Diagnostics\Metrics\AggregationManager.cs (10)
38private readonly Action<DateTime, DateTime> _beginCollection; 39private readonly Action<DateTime, DateTime> _endCollection; 40private readonly Action<Instrument, InstrumentState> _beginInstrumentMeasurements; 41private readonly Action<Instrument, InstrumentState> _endInstrumentMeasurements; 42private readonly Action<Instrument, InstrumentState?> _instrumentPublished; 57Action<DateTime, DateTime> beginCollection, 58Action<DateTime, DateTime> endCollection, 59Action<Instrument, InstrumentState> beginInstrumentMeasurements, 60Action<Instrument, InstrumentState> endInstrumentMeasurements, 61Action<Instrument, InstrumentState?> instrumentPublished,
System\Diagnostics\Metrics\MeterListener.cs (3)
50public Action<Instrument, MeterListener>? InstrumentPublished { get; set; } 56public Action<Instrument, object?>? MeasurementsCompleted { get; set; } 255Action<Instrument, object?>? measurementsCompleted = MeasurementsCompleted;
System.Formats.Asn1 (1)
System\Formats\Asn1\AsnWriter.cs (1)
311public void Encode<TState>(TState state, Action<TState, ReadOnlySpan<byte>> encodeCallback)
System.IO.Pipelines (9)
System\IO\Pipelines\Pipe.cs (2)
735internal void OnWriterCompleted(Action<Exception?, object?> callback, object? state) 774internal void OnReaderCompleted(Action<Exception?, object?> callback, object? state)
System\IO\Pipelines\Pipe.DefaultPipeReader.cs (1)
37public override void OnWriterCompleted(Action<Exception?, object?> callback, object? state) => _pipe.OnWriterCompleted(callback, state);
System\IO\Pipelines\Pipe.DefaultPipeWriter.cs (1)
29public override void OnReaderCompleted(Action<Exception?, object?> callback, object? state) => _pipe.OnReaderCompleted(callback, state);
System\IO\Pipelines\PipeCompletion.cs (1)
40public PipeCompletionCallbacks? AddCallback(Action<Exception?, object?> callback, object? state)
System\IO\Pipelines\PipeCompletionCallback.cs (2)
8public readonly Action<Exception?, object?> Callback; 11public PipeCompletionCallback(Action<Exception?, object?> callback, object? state)
System\IO\Pipelines\PipeReader.cs (1)
149public virtual void OnWriterCompleted(Action<Exception?, object?> callback, object? state)
System\IO\Pipelines\PipeWriter.cs (1)
51public virtual void OnReaderCompleted(Action<Exception?, object?> callback, object? state)
System.Linq.Expressions (9)
System\Dynamic\UpdateDelegates.Generated.cs (3)
1479var @this = (CallSite<Action<CallSite, T0>>)site; 1480Action<CallSite, T0>[] applicable; 1481Action<CallSite, T0> rule, originalRule = @this.Target;
System\Linq\Expressions\Compiler\DelegateHelpers.Generated.cs (1)
243return typeof(Action<,>).MakeGenericType(types);
System\Linq\Expressions\Interpreter\CallInstruction.Generated.cs (3)
281private readonly Action<T0, T1> _target; 288_target = (Action<T0, T1>)target.CreateDelegate(typeof(Action<T0, T1>));
System\Linq\Expressions\StackGuard.cs (2)
31public void RunOnEmptyStack<T1, T2>(Action<T1, T2> action, T1 arg1, T2 arg2) => 34var t = ((Action<T1, T2>, T1, T2))s;
System.Net.Http (1)
System\Net\Http\SocketsHttpHandler\ConnectHelper.cs (1)
115public static async ValueTask<QuicConnection> ConnectQuicAsync(HttpRequestMessage request, DnsEndPoint endPoint, TimeSpan idleTimeout, SslClientAuthenticationOptions clientAuthenticationOptions, Action<QuicConnection, QuicStreamCapacityChangedArgs> streamCapacityCallback, CancellationToken cancellationToken)
System.Net.Quic (2)
System\Net\Quic\QuicConnection.cs (1)
191private Action<QuicConnection, QuicStreamCapacityChangedArgs>? _streamCapacityCallback;
System\Net\Quic\QuicConnectionOptions.cs (1)
148public Action<QuicConnection, QuicStreamCapacityChangedArgs>? StreamCapacityCallback { get; set; }
System.Net.ServerSentEvents (2)
System\Net\ServerSentEvents\SseFormatter.cs (2)
53public static Task WriteAsync<T>(IAsyncEnumerable<SseItem<T>> source, Stream destination, Action<SseItem<T>, IBufferWriter<byte>> itemFormatter, CancellationToken cancellationToken = default) 73private static async Task WriteAsyncCore<T>(IAsyncEnumerable<SseItem<T>> source, Stream destination, Action<SseItem<T>, IBufferWriter<byte>> itemFormatter, CancellationToken cancellationToken)
System.Net.Sockets (4)
System\Net\Sockets\SocketAsyncContext.Unix.cs (2)
700public Action<long, SocketError>? Callback { get; set; } 2190public SocketError SendFileAsync(SafeFileHandle fileHandle, long offset, long count, out long bytesSent, Action<long, SocketError> callback, CancellationToken cancellationToken = default)
System\Net\Sockets\SocketPal.Unix.cs (2)
2070private static SocketError SendFileAsync(SafeSocketHandle handle, SafeFileHandle fileHandle, long offset, long count, CancellationToken cancellationToken, Action<long, SocketError> callback) 2082Socket socket, TransmitFileOptions options, SendPacketsElement[] elements, SafeFileHandle[] fileHandles, CancellationToken cancellationToken, Action<long, SocketError> callback)
System.Private.CoreLib (25)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncMethodBuilderCore.cs (3)
111internal static Action CreateContinuationWrapper(Action continuation, Action<Action, Task> invokeAction, Task innerTask) => 154private readonly Action<Action, Task> _invokeAction; // This wrapper is an action that wraps another action, this is that Action. 158internal ContinuationWrapper(Action continuation, Action<Action, Task> invokeAction, Task innerTask)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Security\SecurityElement.cs (1)
406private void ToString(object obj, Action<object, string?> write)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\CancellationToken.cs (2)
200public CancellationTokenRegistration Register(Action<object?, CancellationToken> callback, object? state) => 262public CancellationTokenRegistration UnsafeRegister(Action<object?, CancellationToken> callback, object? state) =>
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\CancellationTokenSource.cs (3)
590Debug.Assert(callback is Action<object?> || callback is Action<object?, CancellationToken>); 982Debug.Assert(d is Action<object?> || d is Action<object?, CancellationToken>); 990((Action<object?, CancellationToken>)d)(state, new CancellationToken(source));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\Task_T.cs (6)
808public Task ContinueWith(Action<Task<TResult>, object?> continuationAction, object? state) 832public Task ContinueWith(Action<Task<TResult>, object?> continuationAction, object? state, CancellationToken cancellationToken) 861public Task ContinueWith(Action<Task<TResult>, object?> continuationAction, object? state, TaskScheduler scheduler) 895public Task ContinueWith(Action<Task<TResult>, object?> continuationAction, object? state, TaskContinuationOptions continuationOptions) 936public Task ContinueWith(Action<Task<TResult>, object?> continuationAction, object? state, CancellationToken cancellationToken, 943internal Task ContinueWith(Action<Task<TResult>, object?> continuationAction, object? state, TaskScheduler scheduler, CancellationToken cancellationToken,
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\Task.cs (6)
4003public Task ContinueWith(Action<Task, object?> continuationAction, object? state) 4026public Task ContinueWith(Action<Task, object?> continuationAction, object? state, CancellationToken cancellationToken) 4054public Task ContinueWith(Action<Task, object?> continuationAction, object? state, TaskScheduler scheduler) 4088public Task ContinueWith(Action<Task, object?> continuationAction, object? state, TaskContinuationOptions continuationOptions) 4129public Task ContinueWith(Action<Task, object?> continuationAction, object? state, CancellationToken cancellationToken, 4136private Task ContinueWith(Action<Task, object?> continuationAction, object? state, TaskScheduler scheduler,
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\TaskContinuation.cs (4)
18Debug.Assert(action is Action<Task> || action is Action<Task, object?>, 46if (m_action is Action<Task, object?> actionWithState) 110Debug.Assert(action is Action<Task<TAntecedentResult>> || action is Action<Task<TAntecedentResult>, object?>, 138if (m_action is Action<Task<TAntecedentResult>, object?> actionWithState)
System.Private.DataContractSerialization (2)
System\Runtime\Serialization\AccessorBuilder.cs (2)
203var setMethod = propInfo.SetMethod!.CreateDelegate<Action<DeclaringType, PropertyType>>();
System.Private.Windows.Core (1)
System\Private\Windows\BinaryFormat\BinaryFormatWriter.cs (1)
782public static bool TryWrite<T>(Action<Stream, T> action, Stream stream, T value)
System.Private.Xml (4)
System\Xml\Serialization\ReflectionXmlSerializationReader.cs (4)
2231public Action<string, string>? XmlnsSource; 2261Action<TObj, TParam>? setTypedDelegate = null; 2270setTypedDelegate = setMethod.CreateDelegate<Action<TObj, TParam>>(); 2278setTypedDelegate = Expression.Lambda<Action<TObj, TParam>>(assignExpr, objectParam, valueParam).Compile();
System.Reflection.Context (6)
System\Reflection\Context\CustomReflectionContext.cs (3)
137/// Override this method to specify which properties should be added to a given type. To create the properties, use the <see cref="CreateProperty(Type, string, Func{object, object?}?, Action{object, object?}?)"/> method. 160Action<object, object?>? setter) 191Action<object, object?>? setter,
System\Reflection\Context\Virtual\VirtualPropertyInfo.cs (1)
21Action<object, object?>? setter,
System\Reflection\Context\Virtual\VirtualPropertyInfo.PropertySetter.cs (2)
15private readonly Action<object, object?> _setter; 19public PropertySetter(VirtualPropertyBase property, Action<object, object?> setter, IEnumerable<Attribute>? setterAttributes)
System.Reflection.Metadata (1)
System\Reflection\PortableExecutable\DebugDirectory\DebugDirectoryBuilder.cs (1)
58public void AddEntry<TData>(DebugDirectoryEntryType type, uint version, uint stamp, TData data, Action<BlobBuilder, TData> dataSerializer)
System.Runtime (1)
src\runtime\artifacts\obj\System.Runtime\Release\net11.0\System.Runtime.Forwards.cs (1)
19[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Action<,>))]
System.Runtime.InteropServices.JavaScript (5)
System\Runtime\InteropServices\JavaScript\JSMarshalerType.cs (2)
326/// <param name="arg1">Metadata about the type of the first argument of the <see cref="System.Action{T1,T2}"/>.</param> 327/// <param name="arg2">Metadata about the type of the second argument of the <see cref="System.Action{T1,T2}"/>.</param>
System\Runtime\InteropServices\JavaScript\Marshaling\JSMarshalerArgument.Func.cs (3)
207public void ToManaged<T1, T2>(out Action<T1, T2>? value, ArgumentToJSCallback<T1> arg1Marshaler, ArgumentToJSCallback<T2> arg2Marshaler) 556public unsafe void ToJS<T1, T2>(Action<T1, T2> value, ArgumentToManagedCallback<T1> arg1Marshaler, ArgumentToManagedCallback<T2> arg2Marshaler) 558Action<T1, T2> cpy = value;
System.ServiceModel.Federation (2)
System\Runtime\OperationWithTimeoutAsyncResult.cs (2)
111protected Action<AsyncResult, Exception> OnCompleting { get; set; } 122protected Action<AsyncCallback, IAsyncResult> VirtualCallback
System.ServiceModel.Primitives (8)
Internals\System\Runtime\AsyncResult.cs (2)
73protected Action<AsyncResult, Exception> OnCompleting { get; set; } 84protected Action<AsyncCallback, IAsyncResult> VirtualCallback
Internals\System\Runtime\InputQueue.cs (2)
34public InputQueue(Func<Action<AsyncCallback, IAsyncResult>> asyncCallbackGenerator) 60private Func<Action<AsyncCallback, IAsyncResult>> AsyncCallbackGenerator
System\ServiceModel\Diagnostics\TraceAsyncResult.cs (1)
12private static Action<AsyncCallback, IAsyncResult> s_waitResultCallback = new Action<AsyncCallback, IAsyncResult>(DoCallback);
System\ServiceModel\Diagnostics\TraceUtility.cs (3)
32public static Func<Action<AsyncCallback, IAsyncResult>> asyncCallbackGenerator; 391asyncCallbackGenerator = new Func<Action<AsyncCallback, IAsyncResult>>(CallbackGenerator); 406internal static Action<AsyncCallback, IAsyncResult> CallbackGenerator()
System.Text.Json (35)
System\Text\Json\Serialization\Converters\Collection\StackOrQueueConverter.cs (2)
18var addMethodDelegate = ((Action<TCollection, object?>?)state.Current.JsonTypeInfo.AddMethodDelegate);
System\Text\Json\Serialization\Metadata\JsonCollectionInfoValuesOfTCollection.cs (1)
50public Action<Utf8JsonWriter, TCollection>? SerializeHandler { get; init; }
System\Text\Json\Serialization\Metadata\JsonMetadataServices.Collections.cs (3)
391Action<TCollection, object?> addFunc) 409Action<TCollection, object?> addFunc) 416Action<TCollection, object?> addFunc)
System\Text\Json\Serialization\Metadata\JsonObjectInfoValuesOfT.cs (1)
62public Action<Utf8JsonWriter, T>? SerializeHandler { get; init; }
System\Text\Json\Serialization\Metadata\JsonPropertyInfo.cs (2)
86public Action<object, object?>? Set 98private protected Action<object, object?>? _untypedSet;
System\Text\Json\Serialization\Metadata\JsonPropertyInfoOfT.cs (8)
17private Action<object, T>? _typedSet; 30internal new Action<object, T>? Set 61Debug.Assert(setter is null or Action<object, object?> or Action<object, T>); 69else if (setter is Action<object, T> typedSetter) 72_untypedSet = setter is Action<object, object?> untypedSet ? untypedSet : (obj, value) => typedSetter(obj, (T)value!); 76Action<object, object?> untypedSet = (Action<object, object?>)setter;
System\Text\Json\Serialization\Metadata\JsonPropertyInfoValuesOfT.cs (1)
54public Action<object, T?>? Setter { get; init; }
System\Text\Json\Serialization\Metadata\JsonTypeInfoOfT.cs (2)
15private Action<Utf8JsonWriter, T>? _serialize; 235public Action<Utf8JsonWriter, T>? SerializeHandler
System\Text\Json\Serialization\Metadata\MemberAccessor.cs (3)
58public abstract Action<TCollection, object?> CreateAddMethodDelegate<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicMethods)] TCollection>(); 68public abstract Action<object, TProperty> CreatePropertySetter<TProperty>(PropertyInfo propertyInfo); 72public abstract Action<object, TProperty> CreateFieldSetter<TProperty>(FieldInfo fieldInfo);
System\Text\Json\Serialization\Metadata\ReflectionEmitCachingMemberAccessor.cs (3)
26public override Action<TCollection, object?> CreateAddMethodDelegate<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicMethods)] TCollection>() => 41public override Action<object, TProperty> CreateFieldSetter<TProperty>(FieldInfo fieldInfo) => 81public override Action<object, TProperty> CreatePropertySetter<TProperty>(PropertyInfo propertyInfo) =>
System\Text\Json\Serialization\Metadata\ReflectionEmitMemberAccessor.cs (6)
335public override Action<TCollection, object?> CreateAddMethodDelegate<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicMethods)] TCollection>() => 336CreateDelegate<Action<TCollection, object?>>(CreateAddMethodDelegate(typeof(TCollection))); 509public override Action<object, TProperty> CreatePropertySetter<TProperty>(PropertyInfo propertyInfo) => 510CreateDelegate<Action<object, TProperty>>(CreatePropertySetter(propertyInfo, typeof(TProperty))); 581public override Action<object, TProperty> CreateFieldSetter<TProperty>(FieldInfo fieldInfo) => 582CreateDelegate<Action<object, TProperty>>(CreateFieldSetter(fieldInfo, typeof(TProperty)));
System\Text\Json\Serialization\Metadata\ReflectionMemberAccessor.cs (3)
151public override Action<TCollection, object?> CreateAddMethodDelegate<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicMethods)] TCollection>() 208public override Action<object, TProperty> CreatePropertySetter<TProperty>(PropertyInfo propertyInfo) 226public override Action<object, TProperty> CreateFieldSetter<TProperty>(FieldInfo fieldInfo) =>
System.Text.RegularExpressions (3)
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.Automata.cs (1)
462private void ForEachNfaState<T>(SymbolicRegexNode<TSet> node, uint prevCharKind, T arg, Action<int, T> action)
System\Text\RegularExpressions\Symbolic\SymbolicRegexNode.cs (1)
1553internal void ApplyEffects<TArg>(Action<DerivativeEffect, TArg> apply, uint context, TArg arg)
System\Threading\StackHelper.cs (1)
49public static void CallOnEmptyStack<TArg1, TArg2>(Action<TArg1, TArg2> action, TArg1 arg1, TArg2 arg2) =>
System.Text.RegularExpressions.Generator (1)
parent\src\System\Threading\StackHelper.cs (1)
49public static void CallOnEmptyStack<TArg1, TArg2>(Action<TArg1, TArg2> action, TArg1 arg1, TArg2 arg2) =>
System.Threading.Channels (12)
System\Threading\Channels\AsyncOperation.cs (7)
107Action<object?, CancellationToken>? cancellationCallback) 435protected AsyncOperation(bool runContinuationsAsynchronously, CancellationToken cancellationToken = default, bool pooled = false, Action<object?, CancellationToken>? cancellationCallback = null) : 512public AsyncOperation(bool runContinuationsAsynchronously, CancellationToken cancellationToken = default, bool pooled = false, Action<object?, CancellationToken>? cancellationCallback = null) : 597public BlockedReadAsyncOperation(bool runContinuationsAsynchronously, CancellationToken cancellationToken = default, bool pooled = false, Action<object?, CancellationToken>? cancellationCallback = null) : 608public BlockedWriteAsyncOperation(bool runContinuationsAsynchronously, CancellationToken cancellationToken = default, bool pooled = false, Action<object?, CancellationToken>? cancellationCallback = null) : 621public WaitingReadAsyncOperation(bool runContinuationsAsynchronously, CancellationToken cancellationToken = default, bool pooled = false, Action<object?, CancellationToken>? cancellationCallback = null) : 631public WaitingWriteAsyncOperation(bool runContinuationsAsynchronously, CancellationToken cancellationToken = default, bool pooled = false, Action<object?, CancellationToken>? cancellationCallback = null) :
System\Threading\Channels\BoundedChannel.cs (1)
655private Action<object?, CancellationToken> CancellationCallbackDelegate =>
System\Threading\Channels\RendezvousChannel.cs (1)
449private Action<object?, CancellationToken> CancellationCallbackDelegate =>
System\Threading\Channels\SingleConsumerUnboundedChannel.cs (1)
363private Action<object?, CancellationToken> CancellationCallbackDelegate =>
System\Threading\Channels\UnboundedChannel.cs (1)
312private Action<object?, CancellationToken> CancellationCallbackDelegate =>
System\Threading\Channels\UnboundedPriorityChannel.cs (1)
308private Action<object?, CancellationToken> CancellationCallbackDelegate =>
System.Threading.Tasks.Dataflow (15)
Blocks\BatchBlock.cs (1)
57Action<ISourceBlock<T[]>, int>? onItemsRemoved = null;
Blocks\BufferBlock.cs (1)
54Action<ISourceBlock<T>, int>? onItemsRemoved = null;
Blocks\JoinBlock.cs (2)
58Action<ISourceBlock<Tuple<T1, T2>>, int>? onItemsRemoved = null; 279Action<ISourceBlock<Tuple<T1, T2, T3>>, int>? onItemsRemoved = null;
Blocks\TransformBlock.cs (1)
104Action<ISourceBlock<TOutput>, int>? onItemsRemoved = null;
Blocks\TransformManyBlock.cs (1)
112Action<ISourceBlock<TOutput>, int>? onItemsRemoved = null;
Internal\ActionOnDispose.cs (4)
31internal static IDisposable Create<T1, T2>(Action<T1, T2> action, T1 arg1, T2 arg2) 68private Action<T1, T2>? _action; 74internal Disposable(Action<T1, T2> action, T1 arg1, T2 arg2) 88Action<T1, T2>? toRun = _action;
Internal\Common.cs (1)
176CancellationToken cancellationToken, Task completionTask, Action<object?, CancellationToken> completeAction, object completeState)
Internal\ReorderingBuffer.cs (2)
46private readonly Action<object, TOutput> _outputAction; 56internal ReorderingBuffer(object owningSource, Action<object, TOutput> outputAction)
Internal\SourceCore.cs (2)
72private readonly Action<ISourceBlock<TOutput>, int>? _itemsRemovedAction; 105Action<ISourceBlock<TOutput>, int>? itemsRemovedAction = null,
System.Threading.Tasks.Parallel (13)
System\Threading\Tasks\Parallel.cs (13)
532public static ParallelLoopResult For(int fromInclusive, int toExclusive, Action<int, ParallelLoopState> body) 559public static ParallelLoopResult For(long fromInclusive, long toExclusive, Action<long, ParallelLoopState> body) 597public static ParallelLoopResult For(int fromInclusive, int toExclusive, ParallelOptions parallelOptions, Action<int, ParallelLoopState> body) 637Action<long, ParallelLoopState> body) 913Action<TInt, ParallelLoopState>? bodyWithState, 1247public static ParallelLoopResult ForEach<TSource>(IEnumerable<TSource> source, Action<TSource, ParallelLoopState> body) 1288public static ParallelLoopResult ForEach<TSource>(IEnumerable<TSource> source, ParallelOptions parallelOptions, Action<TSource, ParallelLoopState> body) 1634Action<TSource, ParallelLoopState>? bodyWithState, 1692Action<TSource, ParallelLoopState>? bodyWithState, 1751Action<TSource, ParallelLoopState>? bodyWithState, 1885Action<TSource, ParallelLoopState> body) 2233Action<TSource, ParallelLoopState> body) 2505Action<TSource, ParallelLoopState>? bodyWithState,
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
114internal Action<int, int>? _rescaleConstsCallbackDelegate;
System.Windows.Input.Manipulations (2)
System\Windows\Input\Manipulations\InertiaParameters2D.cs (1)
17internal event Action<InertiaParameters2D, string> Changed;
System\Windows\Input\Manipulations\InertiaProcessor2D.cs (1)
409Action<InertiaParameters2D, string> handler,
UnitTests.Common (6)
MockClientMessageInspector.cs (3)
28public Action<ServiceEndpoint, BindingParameterCollection> AddBindingParametersOverride { get; set; } 29public Action<ServiceEndpoint, EndpointDispatcher> ApplyDispatchBehaviorOverride { get; set; } 30public Action<ServiceEndpoint, ClientRuntime> ApplyClientBehaviorOverride { get; set; }
MockEndpointBehavior.cs (3)
21public Action<ServiceEndpoint, BindingParameterCollection> AddBindingParametersOverride { get; set; } 22public Action<ServiceEndpoint, EndpointDispatcher> ApplyDispatchBehaviorOverride { get; set; } 23public Action<ServiceEndpoint, ClientRuntime> ApplyClientBehaviorOverride { get; set; }
vbc (2)
src\roslyn\src\Compilers\Shared\RuntimeHostInfo.cs (2)
49internal static string? GetToolDotNetRoot(IBuildEnvironment buildEnvironment, Action<string, object[]>? logger) 52internal static string? GetToolDotNetRoot(string dotNetHostPath, Action<string, object[]>? logger)
VBCSCompiler (2)
src\roslyn\src\Compilers\Shared\RuntimeHostInfo.cs (2)
49internal static string? GetToolDotNetRoot(IBuildEnvironment buildEnvironment, Action<string, object[]>? logger) 52internal static string? GetToolDotNetRoot(string dotNetHostPath, Action<string, object[]>? logger)