diff --git a/eng/scripts/mark-shipped.ps1 b/eng/scripts/mark-shipped.ps1 index df59843fba65..99ac8ca19eb0 100644 --- a/eng/scripts/mark-shipped.ps1 +++ b/eng/scripts/mark-shipped.ps1 @@ -6,10 +6,8 @@ $ErrorActionPreference = "Stop" function MarkShipped([string]$dir) { $shippedFilePath = Join-Path $dir "PublicAPI.Shipped.txt" - $shipped = Get-Content $shippedFilePath - if ($null -eq $shipped) { - $shipped = @() - } + $shipped = @() + $shipped += Get-Content $shippedFilePath $unshippedFilePath = Join-Path $dir "PublicAPI.Unshipped.txt" $unshipped = Get-Content $unshippedFilePath diff --git a/src/Caching/SqlServer/src/PublicAPI.Shipped.txt b/src/Caching/SqlServer/src/PublicAPI.Shipped.txt index ac8ebd7ff823..2e1207cc32ad 100644 --- a/src/Caching/SqlServer/src/PublicAPI.Shipped.txt +++ b/src/Caching/SqlServer/src/PublicAPI.Shipped.txt @@ -1,4 +1,5 @@ #nullable enable +Microsoft.Extensions.Caching.SqlServer.SqlServerCache Microsoft.Extensions.Caching.SqlServer.SqlServerCache.Get(string! key) -> byte[]? Microsoft.Extensions.Caching.SqlServer.SqlServerCache.GetAsync(string! key, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! Microsoft.Extensions.Caching.SqlServer.SqlServerCache.Refresh(string! key) -> void @@ -8,20 +9,19 @@ Microsoft.Extensions.Caching.SqlServer.SqlServerCache.RemoveAsync(string! key, S Microsoft.Extensions.Caching.SqlServer.SqlServerCache.Set(string! key, byte[]! value, Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions! options) -> void Microsoft.Extensions.Caching.SqlServer.SqlServerCache.SetAsync(string! key, byte[]! value, Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions! options, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! Microsoft.Extensions.Caching.SqlServer.SqlServerCache.SqlServerCache(Microsoft.Extensions.Options.IOptions! options) -> void +Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.ConnectionString.get -> string? Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.ConnectionString.set -> void +Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.DefaultSlidingExpiration.get -> System.TimeSpan +Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.DefaultSlidingExpiration.set -> void +Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.ExpiredItemsDeletionInterval.get -> System.TimeSpan? +Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.ExpiredItemsDeletionInterval.set -> void Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.SchemaName.get -> string? Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.SchemaName.set -> void +Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.SqlServerCacheOptions() -> void Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.SystemClock.get -> Microsoft.Extensions.Internal.ISystemClock! Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.SystemClock.set -> void Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.TableName.get -> string? Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.TableName.set -> void -static Microsoft.Extensions.DependencyInjection.SqlServerCachingServicesExtensions.AddDistributedSqlServerCache(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action! setupAction) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! -Microsoft.Extensions.Caching.SqlServer.SqlServerCache -Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions -Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.DefaultSlidingExpiration.get -> System.TimeSpan -Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.DefaultSlidingExpiration.set -> void -Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.ExpiredItemsDeletionInterval.get -> System.TimeSpan? -Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.ExpiredItemsDeletionInterval.set -> void -Microsoft.Extensions.Caching.SqlServer.SqlServerCacheOptions.SqlServerCacheOptions() -> void Microsoft.Extensions.DependencyInjection.SqlServerCachingServicesExtensions +static Microsoft.Extensions.DependencyInjection.SqlServerCachingServicesExtensions.AddDistributedSqlServerCache(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action! setupAction) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! diff --git a/src/Caching/StackExchangeRedis/src/PublicAPI.Shipped.txt b/src/Caching/StackExchangeRedis/src/PublicAPI.Shipped.txt index ede022b36341..bb997fdc8643 100644 --- a/src/Caching/StackExchangeRedis/src/PublicAPI.Shipped.txt +++ b/src/Caching/StackExchangeRedis/src/PublicAPI.Shipped.txt @@ -1,4 +1,6 @@ #nullable enable +Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache +Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.Dispose() -> void Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.Get(string! key) -> byte[]? Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.GetAsync(string! key, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.RedisCache(Microsoft.Extensions.Options.IOptions! optionsAccessor) -> void @@ -8,6 +10,7 @@ Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.Remove(string! key) - Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.RemoveAsync(string! key, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.Set(string! key, byte[]! value, Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions! options) -> void Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.SetAsync(string! key, byte[]! value, Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions! options, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions.Configuration.get -> string? Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions.Configuration.set -> void Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions.ConfigurationOptions.get -> StackExchange.Redis.ConfigurationOptions? @@ -18,9 +21,6 @@ Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions.InstanceName.g Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions.InstanceName.set -> void Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions.ProfilingSession.get -> System.Func? Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions.ProfilingSession.set -> void -static Microsoft.Extensions.DependencyInjection.StackExchangeRedisCacheServiceCollectionExtensions.AddStackExchangeRedisCache(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action! setupAction) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! -Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache -Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache.Dispose() -> void -Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions Microsoft.Extensions.Caching.StackExchangeRedis.RedisCacheOptions.RedisCacheOptions() -> void Microsoft.Extensions.DependencyInjection.StackExchangeRedisCacheServiceCollectionExtensions +static Microsoft.Extensions.DependencyInjection.StackExchangeRedisCacheServiceCollectionExtensions.AddStackExchangeRedisCache(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action! setupAction) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! diff --git a/src/Components/Components/src/PublicAPI.Shipped.txt b/src/Components/Components/src/PublicAPI.Shipped.txt index 874d6125b229..859bce795398 100644 --- a/src/Components/Components/src/PublicAPI.Shipped.txt +++ b/src/Components/Components/src/PublicAPI.Shipped.txt @@ -74,8 +74,8 @@ Microsoft.AspNetCore.Components.DynamicComponent.Type.set -> void Microsoft.AspNetCore.Components.EditorRequiredAttribute Microsoft.AspNetCore.Components.EditorRequiredAttribute.EditorRequiredAttribute() -> void Microsoft.AspNetCore.Components.ElementReference -Microsoft.AspNetCore.Components.ElementReference.ElementReference() -> void Microsoft.AspNetCore.Components.ElementReference.Context.get -> Microsoft.AspNetCore.Components.ElementReferenceContext? +Microsoft.AspNetCore.Components.ElementReference.ElementReference() -> void Microsoft.AspNetCore.Components.ElementReference.ElementReference(string! id) -> void Microsoft.AspNetCore.Components.ElementReference.ElementReference(string! id, Microsoft.AspNetCore.Components.ElementReferenceContext? context) -> void Microsoft.AspNetCore.Components.ElementReference.Id.get -> string! @@ -177,6 +177,8 @@ Microsoft.AspNetCore.Components.NavigationException.NavigationException(string! Microsoft.AspNetCore.Components.NavigationManager Microsoft.AspNetCore.Components.NavigationManager.BaseUri.get -> string! Microsoft.AspNetCore.Components.NavigationManager.BaseUri.set -> void +Microsoft.AspNetCore.Components.NavigationManager.HistoryEntryState.get -> string? +Microsoft.AspNetCore.Components.NavigationManager.HistoryEntryState.set -> void Microsoft.AspNetCore.Components.NavigationManager.Initialize(string! baseUri, string! uri) -> void Microsoft.AspNetCore.Components.NavigationManager.LocationChanged -> System.EventHandler! Microsoft.AspNetCore.Components.NavigationManager.NavigateTo(string! uri, bool forceLoad = false, bool replace = false) -> void @@ -184,6 +186,8 @@ Microsoft.AspNetCore.Components.NavigationManager.NavigateTo(string! uri, bool f Microsoft.AspNetCore.Components.NavigationManager.NavigateTo(string! uri, Microsoft.AspNetCore.Components.NavigationOptions options) -> void Microsoft.AspNetCore.Components.NavigationManager.NavigationManager() -> void Microsoft.AspNetCore.Components.NavigationManager.NotifyLocationChanged(bool isInterceptedLink) -> void +Microsoft.AspNetCore.Components.NavigationManager.NotifyLocationChangingAsync(string! uri, string? state, bool isNavigationIntercepted) -> System.Threading.Tasks.ValueTask +Microsoft.AspNetCore.Components.NavigationManager.RegisterLocationChangingHandler(System.Func! locationChangingHandler) -> System.IDisposable! Microsoft.AspNetCore.Components.NavigationManager.ToAbsoluteUri(string! relativeUri) -> System.Uri! Microsoft.AspNetCore.Components.NavigationManager.ToBaseRelativePath(string! uri) -> string! Microsoft.AspNetCore.Components.NavigationManager.Uri.get -> string! @@ -192,6 +196,8 @@ Microsoft.AspNetCore.Components.NavigationManagerExtensions Microsoft.AspNetCore.Components.NavigationOptions Microsoft.AspNetCore.Components.NavigationOptions.ForceLoad.get -> bool Microsoft.AspNetCore.Components.NavigationOptions.ForceLoad.init -> void +Microsoft.AspNetCore.Components.NavigationOptions.HistoryEntryState.get -> string? +Microsoft.AspNetCore.Components.NavigationOptions.HistoryEntryState.init -> void Microsoft.AspNetCore.Components.NavigationOptions.NavigationOptions() -> void Microsoft.AspNetCore.Components.NavigationOptions.ReplaceHistoryEntry.get -> bool Microsoft.AspNetCore.Components.NavigationOptions.ReplaceHistoryEntry.init -> void @@ -207,19 +213,19 @@ Microsoft.AspNetCore.Components.ParameterAttribute.CaptureUnmatchedValues.get -> Microsoft.AspNetCore.Components.ParameterAttribute.CaptureUnmatchedValues.set -> void Microsoft.AspNetCore.Components.ParameterAttribute.ParameterAttribute() -> void Microsoft.AspNetCore.Components.ParameterValue -Microsoft.AspNetCore.Components.ParameterValue.ParameterValue() -> void Microsoft.AspNetCore.Components.ParameterValue.Cascading.get -> bool Microsoft.AspNetCore.Components.ParameterValue.Name.get -> string! +Microsoft.AspNetCore.Components.ParameterValue.ParameterValue() -> void Microsoft.AspNetCore.Components.ParameterValue.Value.get -> object! Microsoft.AspNetCore.Components.ParameterView Microsoft.AspNetCore.Components.ParameterView.Enumerator -Microsoft.AspNetCore.Components.ParameterView.Enumerator.Enumerator() -> void -Microsoft.AspNetCore.Components.ParameterView.ParameterView() -> void Microsoft.AspNetCore.Components.ParameterView.Enumerator.Current.get -> Microsoft.AspNetCore.Components.ParameterValue +Microsoft.AspNetCore.Components.ParameterView.Enumerator.Enumerator() -> void Microsoft.AspNetCore.Components.ParameterView.Enumerator.MoveNext() -> bool Microsoft.AspNetCore.Components.ParameterView.GetEnumerator() -> Microsoft.AspNetCore.Components.ParameterView.Enumerator Microsoft.AspNetCore.Components.ParameterView.GetValueOrDefault(string! parameterName) -> TValue? Microsoft.AspNetCore.Components.ParameterView.GetValueOrDefault(string! parameterName, TValue defaultValue) -> TValue +Microsoft.AspNetCore.Components.ParameterView.ParameterView() -> void Microsoft.AspNetCore.Components.ParameterView.SetParameterProperties(object! target) -> void Microsoft.AspNetCore.Components.ParameterView.ToDictionary() -> System.Collections.Generic.IReadOnlyDictionary! Microsoft.AspNetCore.Components.ParameterView.TryGetValue(string! parameterName, out TValue result) -> bool @@ -228,16 +234,16 @@ Microsoft.AspNetCore.Components.PersistentComponentState.PersistAsJson(s Microsoft.AspNetCore.Components.PersistentComponentState.RegisterOnPersisting(System.Func! callback) -> Microsoft.AspNetCore.Components.PersistingComponentStateSubscription Microsoft.AspNetCore.Components.PersistentComponentState.TryTakeFromJson(string! key, out TValue? instance) -> bool Microsoft.AspNetCore.Components.PersistingComponentStateSubscription -Microsoft.AspNetCore.Components.PersistingComponentStateSubscription.PersistingComponentStateSubscription() -> void Microsoft.AspNetCore.Components.PersistingComponentStateSubscription.Dispose() -> void +Microsoft.AspNetCore.Components.PersistingComponentStateSubscription.PersistingComponentStateSubscription() -> void Microsoft.AspNetCore.Components.RenderFragment Microsoft.AspNetCore.Components.RenderFragment Microsoft.AspNetCore.Components.RenderHandle -Microsoft.AspNetCore.Components.RenderHandle.RenderHandle() -> void Microsoft.AspNetCore.Components.RenderHandle.Dispatcher.get -> Microsoft.AspNetCore.Components.Dispatcher! Microsoft.AspNetCore.Components.RenderHandle.IsInitialized.get -> bool Microsoft.AspNetCore.Components.RenderHandle.IsRenderingOnMetadataUpdate.get -> bool Microsoft.AspNetCore.Components.RenderHandle.Render(Microsoft.AspNetCore.Components.RenderFragment! renderFragment) -> void +Microsoft.AspNetCore.Components.RenderHandle.RenderHandle() -> void Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.AddAttribute(int sequence, Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame frame) -> void Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.AddAttribute(int sequence, string! name) -> void @@ -249,6 +255,7 @@ Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.AddAttribute(int seq Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.AddAttribute(int sequence, string! name, Microsoft.AspNetCore.Components.EventCallback value) -> void Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.AddComponentReferenceCapture(int sequence, System.Action! componentReferenceCaptureAction) -> void Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.AddContent(int sequence, Microsoft.AspNetCore.Components.MarkupString markupContent) -> void +Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.AddContent(int sequence, Microsoft.AspNetCore.Components.MarkupString? markupContent) -> void Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.AddContent(int sequence, Microsoft.AspNetCore.Components.RenderFragment? fragment) -> void Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.AddContent(int sequence, object? textContent) -> void Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.AddContent(int sequence, string? textContent) -> void @@ -270,8 +277,8 @@ Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.RenderTreeBuilder() Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.SetKey(object? value) -> void Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.SetUpdatesAttributeName(string! updatesAttributeName) -> void Microsoft.AspNetCore.Components.RenderTree.ArrayBuilderSegment -Microsoft.AspNetCore.Components.RenderTree.ArrayBuilderSegment.ArrayBuilderSegment() -> void Microsoft.AspNetCore.Components.RenderTree.ArrayBuilderSegment.Array.get -> T[]! +Microsoft.AspNetCore.Components.RenderTree.ArrayBuilderSegment.ArrayBuilderSegment() -> void Microsoft.AspNetCore.Components.RenderTree.ArrayBuilderSegment.Count.get -> int Microsoft.AspNetCore.Components.RenderTree.ArrayBuilderSegment.Offset.get -> int Microsoft.AspNetCore.Components.RenderTree.ArrayBuilderSegment.this[int index].get -> T @@ -286,10 +293,10 @@ Microsoft.AspNetCore.Components.RenderTree.EventFieldInfo.EventFieldInfo() -> vo Microsoft.AspNetCore.Components.RenderTree.EventFieldInfo.FieldValue.get -> object! Microsoft.AspNetCore.Components.RenderTree.EventFieldInfo.FieldValue.set -> void Microsoft.AspNetCore.Components.RenderTree.RenderBatch -Microsoft.AspNetCore.Components.RenderTree.RenderBatch.RenderBatch() -> void Microsoft.AspNetCore.Components.RenderTree.RenderBatch.DisposedComponentIDs.get -> Microsoft.AspNetCore.Components.RenderTree.ArrayRange Microsoft.AspNetCore.Components.RenderTree.RenderBatch.DisposedEventHandlerIDs.get -> Microsoft.AspNetCore.Components.RenderTree.ArrayRange Microsoft.AspNetCore.Components.RenderTree.RenderBatch.ReferenceFrames.get -> Microsoft.AspNetCore.Components.RenderTree.ArrayRange +Microsoft.AspNetCore.Components.RenderTree.RenderBatch.RenderBatch() -> void Microsoft.AspNetCore.Components.RenderTree.RenderBatch.UpdatedComponents.get -> Microsoft.AspNetCore.Components.RenderTree.ArrayRange Microsoft.AspNetCore.Components.RenderTree.Renderer Microsoft.AspNetCore.Components.RenderTree.Renderer.AssignRootComponentId(Microsoft.AspNetCore.Components.IComponent! component) -> int @@ -322,7 +329,6 @@ Microsoft.AspNetCore.Components.RenderTree.RenderTreeEditType.StepOut = 7 -> Mic Microsoft.AspNetCore.Components.RenderTree.RenderTreeEditType.UpdateMarkup = 8 -> Microsoft.AspNetCore.Components.RenderTree.RenderTreeEditType Microsoft.AspNetCore.Components.RenderTree.RenderTreeEditType.UpdateText = 5 -> Microsoft.AspNetCore.Components.RenderTree.RenderTreeEditType Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame -Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.RenderTreeFrame() -> void Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.AttributeEventHandlerId.get -> ulong Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.ComponentId.get -> int Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.ComponentReferenceCaptureParentFrameIndex.get -> int @@ -330,6 +336,7 @@ Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.ComponentSubtreeLengt Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.ElementSubtreeLength.get -> int Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.FrameType.get -> Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrameType Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.RegionSubtreeLength.get -> int +Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.RenderTreeFrame() -> void Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.Sequence.get -> int Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrameType Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrameType.Attribute = 3 -> Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrameType @@ -361,9 +368,21 @@ Microsoft.AspNetCore.Components.Routing.IHostEnvironmentNavigationManager.Initia Microsoft.AspNetCore.Components.Routing.INavigationInterception Microsoft.AspNetCore.Components.Routing.INavigationInterception.EnableNavigationInterceptionAsync() -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Components.Routing.LocationChangedEventArgs +Microsoft.AspNetCore.Components.Routing.LocationChangedEventArgs.HistoryEntryState.get -> string? Microsoft.AspNetCore.Components.Routing.LocationChangedEventArgs.IsNavigationIntercepted.get -> bool Microsoft.AspNetCore.Components.Routing.LocationChangedEventArgs.Location.get -> string! Microsoft.AspNetCore.Components.Routing.LocationChangedEventArgs.LocationChangedEventArgs(string! location, bool isNavigationIntercepted) -> void +Microsoft.AspNetCore.Components.Routing.LocationChangingContext +Microsoft.AspNetCore.Components.Routing.LocationChangingContext.CancellationToken.get -> System.Threading.CancellationToken +Microsoft.AspNetCore.Components.Routing.LocationChangingContext.CancellationToken.init -> void +Microsoft.AspNetCore.Components.Routing.LocationChangingContext.HistoryEntryState.get -> string? +Microsoft.AspNetCore.Components.Routing.LocationChangingContext.HistoryEntryState.init -> void +Microsoft.AspNetCore.Components.Routing.LocationChangingContext.IsNavigationIntercepted.get -> bool +Microsoft.AspNetCore.Components.Routing.LocationChangingContext.IsNavigationIntercepted.init -> void +Microsoft.AspNetCore.Components.Routing.LocationChangingContext.LocationChangingContext() -> void +Microsoft.AspNetCore.Components.Routing.LocationChangingContext.PreventNavigation() -> void +Microsoft.AspNetCore.Components.Routing.LocationChangingContext.TargetLocation.get -> string! +Microsoft.AspNetCore.Components.Routing.LocationChangingContext.TargetLocation.init -> void Microsoft.AspNetCore.Components.Routing.NavigationContext Microsoft.AspNetCore.Components.Routing.NavigationContext.CancellationToken.get -> System.Threading.CancellationToken Microsoft.AspNetCore.Components.Routing.NavigationContext.Path.get -> string! @@ -465,8 +484,14 @@ static Microsoft.AspNetCore.Components.BindConverter.TryConvertToShort(object? o static Microsoft.AspNetCore.Components.BindConverter.TryConvertToString(object? obj, System.Globalization.CultureInfo? culture, out string? value) -> bool static Microsoft.AspNetCore.Components.BindConverter.TryConvertToTimeOnly(object? obj, System.Globalization.CultureInfo? culture, out System.TimeOnly value) -> bool static Microsoft.AspNetCore.Components.BindConverter.TryConvertToTimeOnly(object? obj, System.Globalization.CultureInfo? culture, string! format, out System.TimeOnly value) -> bool +static Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredBindSetter(System.Action! callback, T value) -> System.Func! +static Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredBindSetter(System.Func! callback, T value) -> System.Func! +static Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredEventCallback(object! receiver, Microsoft.AspNetCore.Components.EventCallback callback, T value) -> Microsoft.AspNetCore.Components.EventCallback static Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredEventCallback(object! receiver, System.Action! callback, T value) -> Microsoft.AspNetCore.Components.EventCallback static Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredEventCallback(object! receiver, System.Func! callback, T value) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.InvokeAsynchronousDelegate(System.Action! callback) -> System.Threading.Tasks.Task! +static Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.InvokeAsynchronousDelegate(System.Func! callback) -> System.Threading.Tasks.Task! +static Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.InvokeSynchronousDelegate(System.Action! callback) -> void static Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck(T value) -> T static Microsoft.AspNetCore.Components.Dispatcher.CreateDefault() -> Microsoft.AspNetCore.Components.Dispatcher! static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Action! setter, bool? existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback @@ -500,7 +525,39 @@ static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.Crea static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Action! setter, System.TimeOnly? existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Action! setter, System.TimeOnly existingValue, string! format, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Action! setter, System.TimeOnly existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, bool existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, bool? existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, decimal existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, decimal? existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, double existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, double? existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, float existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, float? existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, int existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, int? existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, long existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, long? existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, short existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, short? existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, string! existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.DateOnly existingValue, string! format, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.DateOnly existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.DateOnly? existingValue, string! format, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.DateOnly? existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.DateTime existingValue, string! format, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.DateTime existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.DateTime? existingValue, string! format, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.DateTime? existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.DateTimeOffset existingValue, string! format, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.DateTimeOffset existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.DateTimeOffset? existingValue, string! format, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.DateTimeOffset? existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.TimeOnly existingValue, string! format, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.TimeOnly existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.TimeOnly? existingValue, string! format, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.TimeOnly? existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Action! setter, T existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback +static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, T existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback static Microsoft.AspNetCore.Components.EventCallbackFactoryEventArgsExtensions.Create(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Action! callback) -> Microsoft.AspNetCore.Components.EventCallback static Microsoft.AspNetCore.Components.EventCallbackFactoryEventArgsExtensions.Create(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Action! callback) -> Microsoft.AspNetCore.Components.EventCallback static Microsoft.AspNetCore.Components.EventCallbackFactoryEventArgsExtensions.Create(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! callback) -> Microsoft.AspNetCore.Components.EventCallback @@ -545,8 +602,10 @@ virtual Microsoft.AspNetCore.Components.ComponentBase.OnParametersSetAsync() -> virtual Microsoft.AspNetCore.Components.ComponentBase.SetParametersAsync(Microsoft.AspNetCore.Components.ParameterView parameters) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Components.ComponentBase.ShouldRender() -> bool virtual Microsoft.AspNetCore.Components.NavigationManager.EnsureInitialized() -> void +virtual Microsoft.AspNetCore.Components.NavigationManager.HandleLocationChangingHandlerException(System.Exception! ex, Microsoft.AspNetCore.Components.Routing.LocationChangingContext! context) -> void virtual Microsoft.AspNetCore.Components.NavigationManager.NavigateToCore(string! uri, bool forceLoad) -> void virtual Microsoft.AspNetCore.Components.NavigationManager.NavigateToCore(string! uri, Microsoft.AspNetCore.Components.NavigationOptions options) -> void +virtual Microsoft.AspNetCore.Components.NavigationManager.SetNavigationLockState(bool value) -> void virtual Microsoft.AspNetCore.Components.OwningComponentBase.Dispose(bool disposing) -> void virtual Microsoft.AspNetCore.Components.RenderTree.Renderer.DispatchEventAsync(ulong eventHandlerId, Microsoft.AspNetCore.Components.RenderTree.EventFieldInfo? fieldInfo, System.EventArgs! eventArgs) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Components.RenderTree.Renderer.Dispose(bool disposing) -> void diff --git a/src/Components/Components/src/PublicAPI.Unshipped.txt b/src/Components/Components/src/PublicAPI.Unshipped.txt index 60cb93bb6c54..7dc5c58110bf 100644 --- a/src/Components/Components/src/PublicAPI.Unshipped.txt +++ b/src/Components/Components/src/PublicAPI.Unshipped.txt @@ -1,60 +1 @@ #nullable enable -Microsoft.AspNetCore.Components.NavigationManager.HistoryEntryState.get -> string? -Microsoft.AspNetCore.Components.NavigationManager.HistoryEntryState.set -> void -Microsoft.AspNetCore.Components.NavigationManager.NotifyLocationChangingAsync(string! uri, string? state, bool isNavigationIntercepted) -> System.Threading.Tasks.ValueTask -Microsoft.AspNetCore.Components.NavigationManager.RegisterLocationChangingHandler(System.Func! locationChangingHandler) -> System.IDisposable! -Microsoft.AspNetCore.Components.NavigationOptions.HistoryEntryState.get -> string? -Microsoft.AspNetCore.Components.NavigationOptions.HistoryEntryState.init -> void -Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.AddContent(int sequence, Microsoft.AspNetCore.Components.MarkupString? markupContent) -> void -Microsoft.AspNetCore.Components.Routing.LocationChangedEventArgs.HistoryEntryState.get -> string? -Microsoft.AspNetCore.Components.Routing.LocationChangingContext -Microsoft.AspNetCore.Components.Routing.LocationChangingContext.CancellationToken.get -> System.Threading.CancellationToken -Microsoft.AspNetCore.Components.Routing.LocationChangingContext.CancellationToken.init -> void -Microsoft.AspNetCore.Components.Routing.LocationChangingContext.HistoryEntryState.get -> string? -Microsoft.AspNetCore.Components.Routing.LocationChangingContext.HistoryEntryState.init -> void -Microsoft.AspNetCore.Components.Routing.LocationChangingContext.IsNavigationIntercepted.get -> bool -Microsoft.AspNetCore.Components.Routing.LocationChangingContext.IsNavigationIntercepted.init -> void -Microsoft.AspNetCore.Components.Routing.LocationChangingContext.LocationChangingContext() -> void -Microsoft.AspNetCore.Components.Routing.LocationChangingContext.PreventNavigation() -> void -Microsoft.AspNetCore.Components.Routing.LocationChangingContext.TargetLocation.get -> string! -Microsoft.AspNetCore.Components.Routing.LocationChangingContext.TargetLocation.init -> void -static Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredBindSetter(System.Action! callback, T value) -> System.Func! -static Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredBindSetter(System.Func! callback, T value) -> System.Func! -static Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.CreateInferredEventCallback(object! receiver, Microsoft.AspNetCore.Components.EventCallback callback, T value) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.InvokeAsynchronousDelegate(System.Action! callback) -> System.Threading.Tasks.Task! -static Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.InvokeAsynchronousDelegate(System.Func! callback) -> System.Threading.Tasks.Task! -static Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.InvokeSynchronousDelegate(System.Action! callback) -> void -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, bool existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, bool? existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, decimal existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, decimal? existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, double existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, double? existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, float existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, float? existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, int existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, int? existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, long existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, long? existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, short existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, short? existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, string! existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.DateOnly existingValue, string! format, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.DateOnly existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.DateOnly? existingValue, string! format, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.DateOnly? existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.DateTime existingValue, string! format, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.DateTime existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.DateTime? existingValue, string! format, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.DateTime? existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.DateTimeOffset existingValue, string! format, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.DateTimeOffset existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.DateTimeOffset? existingValue, string! format, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.DateTimeOffset? existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.TimeOnly existingValue, string! format, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.TimeOnly existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.TimeOnly? existingValue, string! format, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, System.TimeOnly? existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -static Microsoft.AspNetCore.Components.EventCallbackFactoryBinderExtensions.CreateBinder(this Microsoft.AspNetCore.Components.EventCallbackFactory! factory, object! receiver, System.Func! setter, T existingValue, System.Globalization.CultureInfo? culture = null) -> Microsoft.AspNetCore.Components.EventCallback -virtual Microsoft.AspNetCore.Components.NavigationManager.HandleLocationChangingHandlerException(System.Exception! ex, Microsoft.AspNetCore.Components.Routing.LocationChangingContext! context) -> void -virtual Microsoft.AspNetCore.Components.NavigationManager.SetNavigationLockState(bool value) -> void diff --git a/src/Components/CustomElements/src/PublicAPI.Shipped.txt b/src/Components/CustomElements/src/PublicAPI.Shipped.txt index ab058de62d44..544ec5bf3f87 100644 --- a/src/Components/CustomElements/src/PublicAPI.Shipped.txt +++ b/src/Components/CustomElements/src/PublicAPI.Shipped.txt @@ -1 +1,3 @@ -#nullable enable +#nullable enable +Microsoft.AspNetCore.Components.Web.CustomElementsJSComponentConfigurationExtensions +static Microsoft.AspNetCore.Components.Web.CustomElementsJSComponentConfigurationExtensions.RegisterCustomElement(this Microsoft.AspNetCore.Components.Web.IJSComponentConfiguration! configuration, string! identifier) -> void diff --git a/src/Components/CustomElements/src/PublicAPI.Unshipped.txt b/src/Components/CustomElements/src/PublicAPI.Unshipped.txt index d4fcfd03d802..7dc5c58110bf 100644 --- a/src/Components/CustomElements/src/PublicAPI.Unshipped.txt +++ b/src/Components/CustomElements/src/PublicAPI.Unshipped.txt @@ -1,3 +1 @@ -#nullable enable -Microsoft.AspNetCore.Components.Web.CustomElementsJSComponentConfigurationExtensions -static Microsoft.AspNetCore.Components.Web.CustomElementsJSComponentConfigurationExtensions.RegisterCustomElement(this Microsoft.AspNetCore.Components.Web.IJSComponentConfiguration! configuration, string! identifier) -> void +#nullable enable diff --git a/src/Components/Forms/src/PublicAPI.Shipped.txt b/src/Components/Forms/src/PublicAPI.Shipped.txt index 2c73c120cee7..2d4dae7afe00 100644 --- a/src/Components/Forms/src/PublicAPI.Shipped.txt +++ b/src/Components/Forms/src/PublicAPI.Shipped.txt @@ -31,8 +31,8 @@ Microsoft.AspNetCore.Components.Forms.FieldChangedEventArgs Microsoft.AspNetCore.Components.Forms.FieldChangedEventArgs.FieldChangedEventArgs(in Microsoft.AspNetCore.Components.Forms.FieldIdentifier fieldIdentifier) -> void Microsoft.AspNetCore.Components.Forms.FieldChangedEventArgs.FieldIdentifier.get -> Microsoft.AspNetCore.Components.Forms.FieldIdentifier Microsoft.AspNetCore.Components.Forms.FieldIdentifier -Microsoft.AspNetCore.Components.Forms.FieldIdentifier.FieldIdentifier() -> void Microsoft.AspNetCore.Components.Forms.FieldIdentifier.Equals(Microsoft.AspNetCore.Components.Forms.FieldIdentifier otherIdentifier) -> bool +Microsoft.AspNetCore.Components.Forms.FieldIdentifier.FieldIdentifier() -> void Microsoft.AspNetCore.Components.Forms.FieldIdentifier.FieldIdentifier(object! model, string! fieldName) -> void Microsoft.AspNetCore.Components.Forms.FieldIdentifier.FieldName.get -> string! Microsoft.AspNetCore.Components.Forms.FieldIdentifier.Model.get -> object! @@ -57,6 +57,7 @@ override Microsoft.AspNetCore.Components.Forms.FieldIdentifier.Equals(object? ob override Microsoft.AspNetCore.Components.Forms.FieldIdentifier.GetHashCode() -> int static Microsoft.AspNetCore.Components.Forms.EditContextDataAnnotationsExtensions.AddDataAnnotationsValidation(this Microsoft.AspNetCore.Components.Forms.EditContext! editContext) -> Microsoft.AspNetCore.Components.Forms.EditContext! static Microsoft.AspNetCore.Components.Forms.EditContextDataAnnotationsExtensions.EnableDataAnnotationsValidation(this Microsoft.AspNetCore.Components.Forms.EditContext! editContext) -> System.IDisposable! +static Microsoft.AspNetCore.Components.Forms.EditContextDataAnnotationsExtensions.EnableDataAnnotationsValidation(this Microsoft.AspNetCore.Components.Forms.EditContext! editContext, System.IServiceProvider! serviceProvider) -> System.IDisposable! static Microsoft.AspNetCore.Components.Forms.FieldIdentifier.Create(System.Linq.Expressions.Expression!>! accessor) -> Microsoft.AspNetCore.Components.Forms.FieldIdentifier static readonly Microsoft.AspNetCore.Components.Forms.ValidationRequestedEventArgs.Empty -> Microsoft.AspNetCore.Components.Forms.ValidationRequestedEventArgs! static readonly Microsoft.AspNetCore.Components.Forms.ValidationStateChangedEventArgs.Empty -> Microsoft.AspNetCore.Components.Forms.ValidationStateChangedEventArgs! diff --git a/src/Components/Forms/src/PublicAPI.Unshipped.txt b/src/Components/Forms/src/PublicAPI.Unshipped.txt index 4f93873599a9..7dc5c58110bf 100644 --- a/src/Components/Forms/src/PublicAPI.Unshipped.txt +++ b/src/Components/Forms/src/PublicAPI.Unshipped.txt @@ -1,2 +1 @@ #nullable enable -static Microsoft.AspNetCore.Components.Forms.EditContextDataAnnotationsExtensions.EnableDataAnnotationsValidation(this Microsoft.AspNetCore.Components.Forms.EditContext! editContext, System.IServiceProvider! serviceProvider) -> System.IDisposable! diff --git a/src/Components/Server/src/PublicAPI.Shipped.txt b/src/Components/Server/src/PublicAPI.Shipped.txt index b1cf77ca2476..68108dbcdd58 100644 --- a/src/Components/Server/src/PublicAPI.Shipped.txt +++ b/src/Components/Server/src/PublicAPI.Shipped.txt @@ -3,6 +3,7 @@ abstract Microsoft.AspNetCore.Components.Server.RevalidatingServerAuthentication abstract Microsoft.AspNetCore.Components.Server.RevalidatingServerAuthenticationStateProvider.ValidateAuthenticationStateAsync(Microsoft.AspNetCore.Components.Authorization.AuthenticationState! authenticationState, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Builder.ComponentEndpointConventionBuilder Microsoft.AspNetCore.Builder.ComponentEndpointConventionBuilder.Add(System.Action! convention) -> void +Microsoft.AspNetCore.Builder.ComponentEndpointConventionBuilder.Finally(System.Action! finalConvention) -> void Microsoft.AspNetCore.Builder.ComponentEndpointRouteBuilderExtensions Microsoft.AspNetCore.Components.Server.CircuitOptions Microsoft.AspNetCore.Components.Server.CircuitOptions.CircuitOptions() -> void diff --git a/src/Components/Server/src/PublicAPI.Unshipped.txt b/src/Components/Server/src/PublicAPI.Unshipped.txt index d1b663a4de39..7dc5c58110bf 100644 --- a/src/Components/Server/src/PublicAPI.Unshipped.txt +++ b/src/Components/Server/src/PublicAPI.Unshipped.txt @@ -1,2 +1 @@ #nullable enable -Microsoft.AspNetCore.Builder.ComponentEndpointConventionBuilder.Finally(System.Action! finalConvention) -> void diff --git a/src/Components/Web/src/PublicAPI.Shipped.txt b/src/Components/Web/src/PublicAPI.Shipped.txt index d26a75484290..ffd55a8f571b 100644 --- a/src/Components/Web/src/PublicAPI.Shipped.txt +++ b/src/Components/Web/src/PublicAPI.Shipped.txt @@ -96,6 +96,8 @@ Microsoft.AspNetCore.Components.Forms.InputNumber.ParsingErrorMessage.se Microsoft.AspNetCore.Components.Forms.InputRadio Microsoft.AspNetCore.Components.Forms.InputRadio.AdditionalAttributes.get -> System.Collections.Generic.IReadOnlyDictionary? Microsoft.AspNetCore.Components.Forms.InputRadio.AdditionalAttributes.set -> void +Microsoft.AspNetCore.Components.Forms.InputRadio.Element.get -> Microsoft.AspNetCore.Components.ElementReference? +Microsoft.AspNetCore.Components.Forms.InputRadio.Element.set -> void Microsoft.AspNetCore.Components.Forms.InputRadio.InputRadio() -> void Microsoft.AspNetCore.Components.Forms.InputRadio.Name.get -> string? Microsoft.AspNetCore.Components.Forms.InputRadio.Name.set -> void @@ -160,6 +162,12 @@ Microsoft.AspNetCore.Components.Routing.FocusOnNavigate.RouteData.get -> Microso Microsoft.AspNetCore.Components.Routing.FocusOnNavigate.RouteData.set -> void Microsoft.AspNetCore.Components.Routing.FocusOnNavigate.Selector.get -> string? Microsoft.AspNetCore.Components.Routing.FocusOnNavigate.Selector.set -> void +Microsoft.AspNetCore.Components.Routing.NavigationLock +Microsoft.AspNetCore.Components.Routing.NavigationLock.ConfirmExternalNavigation.get -> bool +Microsoft.AspNetCore.Components.Routing.NavigationLock.ConfirmExternalNavigation.set -> void +Microsoft.AspNetCore.Components.Routing.NavigationLock.NavigationLock() -> void +Microsoft.AspNetCore.Components.Routing.NavigationLock.OnBeforeInternalNavigation.get -> Microsoft.AspNetCore.Components.EventCallback +Microsoft.AspNetCore.Components.Routing.NavigationLock.OnBeforeInternalNavigation.set -> void Microsoft.AspNetCore.Components.Routing.NavLink Microsoft.AspNetCore.Components.Routing.NavLink.ActiveClass.get -> string? Microsoft.AspNetCore.Components.Routing.NavLink.ActiveClass.set -> void @@ -276,6 +284,10 @@ Microsoft.AspNetCore.Components.Web.MouseEventArgs.Detail.set -> void Microsoft.AspNetCore.Components.Web.MouseEventArgs.MetaKey.get -> bool Microsoft.AspNetCore.Components.Web.MouseEventArgs.MetaKey.set -> void Microsoft.AspNetCore.Components.Web.MouseEventArgs.MouseEventArgs() -> void +Microsoft.AspNetCore.Components.Web.MouseEventArgs.MovementX.get -> double +Microsoft.AspNetCore.Components.Web.MouseEventArgs.MovementX.set -> void +Microsoft.AspNetCore.Components.Web.MouseEventArgs.MovementY.get -> double +Microsoft.AspNetCore.Components.Web.MouseEventArgs.MovementY.set -> void Microsoft.AspNetCore.Components.Web.MouseEventArgs.OffsetX.get -> double Microsoft.AspNetCore.Components.Web.MouseEventArgs.OffsetX.set -> void Microsoft.AspNetCore.Components.Web.MouseEventArgs.OffsetY.get -> double @@ -362,19 +374,19 @@ Microsoft.AspNetCore.Components.Web.TouchPoint.ScreenY.set -> void Microsoft.AspNetCore.Components.Web.TouchPoint.TouchPoint() -> void Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderDelegate Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderRequest -Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderRequest.ItemsProviderRequest() -> void Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderRequest.CancellationToken.get -> System.Threading.CancellationToken Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderRequest.Count.get -> int +Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderRequest.ItemsProviderRequest() -> void Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderRequest.ItemsProviderRequest(int startIndex, int count, System.Threading.CancellationToken cancellationToken) -> void Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderRequest.StartIndex.get -> int Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderResult -Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderResult.ItemsProviderResult() -> void Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderResult.Items.get -> System.Collections.Generic.IEnumerable! +Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderResult.ItemsProviderResult() -> void Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderResult.ItemsProviderResult(System.Collections.Generic.IEnumerable! items, int totalItemCount) -> void Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderResult.TotalItemCount.get -> int Microsoft.AspNetCore.Components.Web.Virtualization.PlaceholderContext -Microsoft.AspNetCore.Components.Web.Virtualization.PlaceholderContext.PlaceholderContext() -> void Microsoft.AspNetCore.Components.Web.Virtualization.PlaceholderContext.Index.get -> int +Microsoft.AspNetCore.Components.Web.Virtualization.PlaceholderContext.PlaceholderContext() -> void Microsoft.AspNetCore.Components.Web.Virtualization.PlaceholderContext.PlaceholderContext(int index, float size = 0) -> void Microsoft.AspNetCore.Components.Web.Virtualization.PlaceholderContext.Size.get -> float Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize @@ -394,6 +406,8 @@ Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.OverscanCou Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder.get -> Microsoft.AspNetCore.Components.RenderFragment? Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder.set -> void Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.RefreshDataAsync() -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.SpacerElement.get -> string! +Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.SpacerElement.set -> void Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Virtualize() -> void Microsoft.AspNetCore.Components.Web.WebEventCallbackFactoryEventArgsExtensions Microsoft.AspNetCore.Components.Web.WebRenderTreeBuilderExtensions diff --git a/src/Components/Web/src/PublicAPI.Unshipped.txt b/src/Components/Web/src/PublicAPI.Unshipped.txt index 3afbb4d7c9cc..7dc5c58110bf 100644 --- a/src/Components/Web/src/PublicAPI.Unshipped.txt +++ b/src/Components/Web/src/PublicAPI.Unshipped.txt @@ -1,15 +1 @@ #nullable enable -Microsoft.AspNetCore.Components.Forms.InputRadio.Element.get -> Microsoft.AspNetCore.Components.ElementReference? -Microsoft.AspNetCore.Components.Forms.InputRadio.Element.set -> void -Microsoft.AspNetCore.Components.Routing.NavigationLock -Microsoft.AspNetCore.Components.Routing.NavigationLock.ConfirmExternalNavigation.get -> bool -Microsoft.AspNetCore.Components.Routing.NavigationLock.ConfirmExternalNavigation.set -> void -Microsoft.AspNetCore.Components.Routing.NavigationLock.NavigationLock() -> void -Microsoft.AspNetCore.Components.Routing.NavigationLock.OnBeforeInternalNavigation.get -> Microsoft.AspNetCore.Components.EventCallback -Microsoft.AspNetCore.Components.Routing.NavigationLock.OnBeforeInternalNavigation.set -> void -Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.SpacerElement.get -> string! -Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.SpacerElement.set -> void -Microsoft.AspNetCore.Components.Web.MouseEventArgs.MovementX.get -> double -Microsoft.AspNetCore.Components.Web.MouseEventArgs.MovementX.set -> void -Microsoft.AspNetCore.Components.Web.MouseEventArgs.MovementY.get -> double -Microsoft.AspNetCore.Components.Web.MouseEventArgs.MovementY.set -> void diff --git a/src/Components/WebAssembly/Authentication.Msal/src/PublicAPI.Shipped.txt b/src/Components/WebAssembly/Authentication.Msal/src/PublicAPI.Shipped.txt index d11583c28df4..1d04536a662a 100644 --- a/src/Components/WebAssembly/Authentication.Msal/src/PublicAPI.Shipped.txt +++ b/src/Components/WebAssembly/Authentication.Msal/src/PublicAPI.Shipped.txt @@ -1,6 +1,11 @@ #nullable enable +Microsoft.Authentication.WebAssembly.Msal.Models.MsalCacheOptions Microsoft.Authentication.WebAssembly.Msal.Models.MsalCacheOptions.CacheLocation.get -> string? Microsoft.Authentication.WebAssembly.Msal.Models.MsalCacheOptions.CacheLocation.set -> void +Microsoft.Authentication.WebAssembly.Msal.Models.MsalCacheOptions.MsalCacheOptions() -> void +Microsoft.Authentication.WebAssembly.Msal.Models.MsalCacheOptions.StoreAuthStateInCookie.get -> bool +Microsoft.Authentication.WebAssembly.Msal.Models.MsalCacheOptions.StoreAuthStateInCookie.set -> void +Microsoft.Authentication.WebAssembly.Msal.Models.MsalProviderOptions Microsoft.Authentication.WebAssembly.Msal.Models.MsalProviderOptions.AdditionalScopesToConsent.get -> System.Collections.Generic.IList! Microsoft.Authentication.WebAssembly.Msal.Models.MsalProviderOptions.AdditionalScopesToConsent.set -> void Microsoft.Authentication.WebAssembly.Msal.Models.MsalProviderOptions.Authentication.get -> Microsoft.Authentication.WebAssembly.Msal.MsalAuthenticationOptions! @@ -11,29 +16,24 @@ Microsoft.Authentication.WebAssembly.Msal.Models.MsalProviderOptions.DefaultAcce Microsoft.Authentication.WebAssembly.Msal.Models.MsalProviderOptions.DefaultAccessTokenScopes.set -> void Microsoft.Authentication.WebAssembly.Msal.Models.MsalProviderOptions.LoginMode.get -> string! Microsoft.Authentication.WebAssembly.Msal.Models.MsalProviderOptions.LoginMode.set -> void +Microsoft.Authentication.WebAssembly.Msal.Models.MsalProviderOptions.MsalProviderOptions() -> void +Microsoft.Authentication.WebAssembly.Msal.MsalAuthenticationOptions Microsoft.Authentication.WebAssembly.Msal.MsalAuthenticationOptions.Authority.get -> string? Microsoft.Authentication.WebAssembly.Msal.MsalAuthenticationOptions.Authority.set -> void Microsoft.Authentication.WebAssembly.Msal.MsalAuthenticationOptions.ClientId.get -> string? Microsoft.Authentication.WebAssembly.Msal.MsalAuthenticationOptions.ClientId.set -> void Microsoft.Authentication.WebAssembly.Msal.MsalAuthenticationOptions.KnownAuthorities.get -> System.Collections.Generic.IList! Microsoft.Authentication.WebAssembly.Msal.MsalAuthenticationOptions.KnownAuthorities.set -> void +Microsoft.Authentication.WebAssembly.Msal.MsalAuthenticationOptions.MsalAuthenticationOptions() -> void +Microsoft.Authentication.WebAssembly.Msal.MsalAuthenticationOptions.NavigateToLoginRequestUrl.get -> bool +Microsoft.Authentication.WebAssembly.Msal.MsalAuthenticationOptions.NavigateToLoginRequestUrl.set -> void Microsoft.Authentication.WebAssembly.Msal.MsalAuthenticationOptions.PostLogoutRedirectUri.get -> string? Microsoft.Authentication.WebAssembly.Msal.MsalAuthenticationOptions.PostLogoutRedirectUri.set -> void Microsoft.Authentication.WebAssembly.Msal.MsalAuthenticationOptions.RedirectUri.get -> string? Microsoft.Authentication.WebAssembly.Msal.MsalAuthenticationOptions.RedirectUri.set -> void -static Microsoft.Extensions.DependencyInjection.MsalWebAssemblyServiceCollectionExtensions.AddMsalAuthentication(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action!>! configure) -> Microsoft.Extensions.DependencyInjection.IRemoteAuthenticationBuilder! -static Microsoft.Extensions.DependencyInjection.MsalWebAssemblyServiceCollectionExtensions.AddMsalAuthentication(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action!>! configure) -> Microsoft.Extensions.DependencyInjection.IRemoteAuthenticationBuilder! -static Microsoft.Extensions.DependencyInjection.MsalWebAssemblyServiceCollectionExtensions.AddMsalAuthentication(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action!>! configure) -> Microsoft.Extensions.DependencyInjection.IRemoteAuthenticationBuilder! -Microsoft.Authentication.WebAssembly.Msal.Models.MsalCacheOptions -Microsoft.Authentication.WebAssembly.Msal.Models.MsalCacheOptions.MsalCacheOptions() -> void -Microsoft.Authentication.WebAssembly.Msal.Models.MsalCacheOptions.StoreAuthStateInCookie.get -> bool -Microsoft.Authentication.WebAssembly.Msal.Models.MsalCacheOptions.StoreAuthStateInCookie.set -> void -Microsoft.Authentication.WebAssembly.Msal.Models.MsalProviderOptions -Microsoft.Authentication.WebAssembly.Msal.Models.MsalProviderOptions.MsalProviderOptions() -> void -Microsoft.Authentication.WebAssembly.Msal.MsalAuthenticationOptions -Microsoft.Authentication.WebAssembly.Msal.MsalAuthenticationOptions.MsalAuthenticationOptions() -> void -Microsoft.Authentication.WebAssembly.Msal.MsalAuthenticationOptions.NavigateToLoginRequestUrl.get -> bool -Microsoft.Authentication.WebAssembly.Msal.MsalAuthenticationOptions.NavigateToLoginRequestUrl.set -> void Microsoft.Authentication.WebAssembly.Msal.MsalAuthenticationOptions.ValidateAuthority.get -> bool Microsoft.Authentication.WebAssembly.Msal.MsalAuthenticationOptions.ValidateAuthority.set -> void Microsoft.Extensions.DependencyInjection.MsalWebAssemblyServiceCollectionExtensions +static Microsoft.Extensions.DependencyInjection.MsalWebAssemblyServiceCollectionExtensions.AddMsalAuthentication(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action!>! configure) -> Microsoft.Extensions.DependencyInjection.IRemoteAuthenticationBuilder! +static Microsoft.Extensions.DependencyInjection.MsalWebAssemblyServiceCollectionExtensions.AddMsalAuthentication(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action!>! configure) -> Microsoft.Extensions.DependencyInjection.IRemoteAuthenticationBuilder! +static Microsoft.Extensions.DependencyInjection.MsalWebAssemblyServiceCollectionExtensions.AddMsalAuthentication(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action!>! configure) -> Microsoft.Extensions.DependencyInjection.IRemoteAuthenticationBuilder! diff --git a/src/Components/WebAssembly/WebAssembly.Authentication/src/PublicAPI.Shipped.txt b/src/Components/WebAssembly/WebAssembly.Authentication/src/PublicAPI.Shipped.txt index 946564a20112..ffea7e0490b2 100644 --- a/src/Components/WebAssembly/WebAssembly.Authentication/src/PublicAPI.Shipped.txt +++ b/src/Components/WebAssembly/WebAssembly.Authentication/src/PublicAPI.Shipped.txt @@ -13,11 +13,15 @@ ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessToken.Value.get -> string ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessToken.Value.set -> void ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessTokenNotAvailableException.AccessTokenNotAvailableException(Microsoft.AspNetCore.Components.NavigationManager navigation, Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessTokenResult tokenResult, System.Collections.Generic.IEnumerable scopes) -> void +~Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessTokenNotAvailableException.Redirect(System.Action configureInteractionOptions) -> void ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessTokenRequestOptions.ReturnUrl.get -> string ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessTokenRequestOptions.ReturnUrl.set -> void ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessTokenRequestOptions.Scopes.get -> System.Collections.Generic.IEnumerable ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessTokenRequestOptions.Scopes.set -> void +~Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessTokenResult.AccessTokenResult(Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessTokenResultStatus status, Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessToken token, string interactiveRequestUrl, Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions interactiveRequest) -> void ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessTokenResult.AccessTokenResult(Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessTokenResultStatus status, Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessToken token, string redirectUrl) -> void +~Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessTokenResult.InteractionOptions.get -> Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions +~Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessTokenResult.InteractiveRequestUrl.get -> string ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessTokenResult.RedirectUrl.get -> string ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessTokenResult.TryGetToken(out Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessToken accessToken) -> bool ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccountClaimsPrincipalFactory @@ -30,6 +34,13 @@ ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.BaseAddressAuthorizationMessageHandler.BaseAddressAuthorizationMessageHandler(Microsoft.AspNetCore.Components.WebAssembly.Authentication.IAccessTokenProvider provider, Microsoft.AspNetCore.Components.NavigationManager navigationManager) -> void ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.IAccessTokenProvider.RequestAccessToken() -> System.Threading.Tasks.ValueTask ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.IAccessTokenProvider.RequestAccessToken(Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessTokenRequestOptions options) -> System.Threading.Tasks.ValueTask +~Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions.ReturnUrl.get -> string +~Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions.ReturnUrl.init -> void +~Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions.Scopes.get -> System.Collections.Generic.IEnumerable +~Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions.Scopes.init -> void +~Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions.TryAddAdditionalParameter(string name, TValue value) -> bool +~Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions.TryGetAdditionalParameter(string name, out TValue value) -> bool +~Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions.TryRemoveAdditionalParameter(string name) -> bool ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.Internal.IAccessTokenProviderAccessor.TokenProvider.get -> Microsoft.AspNetCore.Components.WebAssembly.Authentication.IAccessTokenProvider ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.IRemoteAuthenticationService ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.IRemoteAuthenticationService.CompleteSignInAsync(Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationContext context) -> System.Threading.Tasks.Task> @@ -75,6 +86,8 @@ ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationApplicationPathsOptions.RemoteRegisterPath.get -> string ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationApplicationPathsOptions.RemoteRegisterPath.set -> void ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationContext +~Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationContext.InteractiveRequest.get -> Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions +~Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationContext.InteractiveRequest.set -> void ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationContext.State.get -> TRemoteAuthenticationState ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationContext.State.set -> void ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationContext.Url.get -> string @@ -92,6 +105,7 @@ ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationService.Navigation.get -> Microsoft.AspNetCore.Components.NavigationManager ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationService.Options.get -> Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationOptions ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationService.RemoteAuthenticationService(Microsoft.JSInterop.IJSRuntime jsRuntime, Microsoft.Extensions.Options.IOptionsSnapshot> options, Microsoft.AspNetCore.Components.NavigationManager navigation, Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccountClaimsPrincipalFactory accountClaimsPrincipalFactory) -> void +~Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationService.RemoteAuthenticationService(Microsoft.JSInterop.IJSRuntime jsRuntime, Microsoft.Extensions.Options.IOptionsSnapshot> options, Microsoft.AspNetCore.Components.NavigationManager navigation, Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccountClaimsPrincipalFactory accountClaimsPrincipalFactory, Microsoft.Extensions.Logging.ILogger> logger) -> void ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationState.ReturnUrl.get -> string ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationState.ReturnUrl.set -> void ~Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationUserOptions.AuthenticationType.get -> string @@ -140,6 +154,10 @@ ~override Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationService.GetAuthenticationStateAsync() -> System.Threading.Tasks.Task ~override Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.BuildRenderTree(Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder builder) -> void ~override Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.OnParametersSetAsync() -> System.Threading.Tasks.Task +~static Microsoft.AspNetCore.Components.WebAssembly.Authentication.NavigationManagerExtensions.NavigateToLogin(this Microsoft.AspNetCore.Components.NavigationManager manager, string loginPath) -> void +~static Microsoft.AspNetCore.Components.WebAssembly.Authentication.NavigationManagerExtensions.NavigateToLogin(this Microsoft.AspNetCore.Components.NavigationManager manager, string loginPath, Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions request) -> void +~static Microsoft.AspNetCore.Components.WebAssembly.Authentication.NavigationManagerExtensions.NavigateToLogout(this Microsoft.AspNetCore.Components.NavigationManager manager, string logoutPath) -> void +~static Microsoft.AspNetCore.Components.WebAssembly.Authentication.NavigationManagerExtensions.NavigateToLogout(this Microsoft.AspNetCore.Components.NavigationManager manager, string logoutPath, string returnUrl) -> void ~static Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationActions.IsAction(string action, string candidate) -> bool ~static Microsoft.Extensions.DependencyInjection.RemoteAuthenticationBuilderExtensions.AddAccountClaimsPrincipalFactory(this Microsoft.Extensions.DependencyInjection.IRemoteAuthenticationBuilder builder) -> Microsoft.Extensions.DependencyInjection.IRemoteAuthenticationBuilder ~static Microsoft.Extensions.DependencyInjection.RemoteAuthenticationBuilderExtensions.AddAccountClaimsPrincipalFactory(this Microsoft.Extensions.DependencyInjection.IRemoteAuthenticationBuilder builder) -> Microsoft.Extensions.DependencyInjection.IRemoteAuthenticationBuilder @@ -191,7 +209,16 @@ Microsoft.AspNetCore.Components.WebAssembly.Authentication.ApiAuthorizationProvi Microsoft.AspNetCore.Components.WebAssembly.Authentication.AuthorizationMessageHandler Microsoft.AspNetCore.Components.WebAssembly.Authentication.BaseAddressAuthorizationMessageHandler Microsoft.AspNetCore.Components.WebAssembly.Authentication.IAccessTokenProvider +Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType +Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType.GetToken = 1 -> Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType +Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType.SignIn = 0 -> Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType +Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType.SignOut = 2 -> Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType +Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions +Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions.Interaction.get -> Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType +Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions.Interaction.init -> void +Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions.InteractiveRequestOptions() -> void Microsoft.AspNetCore.Components.WebAssembly.Authentication.Internal.IAccessTokenProviderAccessor +Microsoft.AspNetCore.Components.WebAssembly.Authentication.NavigationManagerExtensions Microsoft.AspNetCore.Components.WebAssembly.Authentication.OidcProviderOptions Microsoft.AspNetCore.Components.WebAssembly.Authentication.OidcProviderOptions.OidcProviderOptions() -> void Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationActions diff --git a/src/Components/WebAssembly/WebAssembly.Authentication/src/PublicAPI.Unshipped.txt b/src/Components/WebAssembly/WebAssembly.Authentication/src/PublicAPI.Unshipped.txt index 3ac471b5b236..7dc5c58110bf 100644 --- a/src/Components/WebAssembly/WebAssembly.Authentication/src/PublicAPI.Unshipped.txt +++ b/src/Components/WebAssembly/WebAssembly.Authentication/src/PublicAPI.Unshipped.txt @@ -1,28 +1 @@ #nullable enable -Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType -Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType.GetToken = 1 -> Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType -Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType.SignIn = 0 -> Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType -Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType.SignOut = 2 -> Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType -Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions -Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions.Interaction.get -> Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractionType -Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions.Interaction.init -> void -Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions.InteractiveRequestOptions() -> void -Microsoft.AspNetCore.Components.WebAssembly.Authentication.NavigationManagerExtensions -~Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessTokenNotAvailableException.Redirect(System.Action configureInteractionOptions) -> void -~Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessTokenResult.AccessTokenResult(Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessTokenResultStatus status, Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessToken token, string interactiveRequestUrl, Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions interactiveRequest) -> void -~Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessTokenResult.InteractionOptions.get -> Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions -~Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccessTokenResult.InteractiveRequestUrl.get -> string -~Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions.ReturnUrl.get -> string -~Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions.ReturnUrl.init -> void -~Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions.Scopes.get -> System.Collections.Generic.IEnumerable -~Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions.Scopes.init -> void -~Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions.TryAddAdditionalParameter(string name, TValue value) -> bool -~Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions.TryGetAdditionalParameter(string name, out TValue value) -> bool -~Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions.TryRemoveAdditionalParameter(string name) -> bool -~Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationContext.InteractiveRequest.get -> Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions -~Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationContext.InteractiveRequest.set -> void -~Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationService.RemoteAuthenticationService(Microsoft.JSInterop.IJSRuntime jsRuntime, Microsoft.Extensions.Options.IOptionsSnapshot> options, Microsoft.AspNetCore.Components.NavigationManager navigation, Microsoft.AspNetCore.Components.WebAssembly.Authentication.AccountClaimsPrincipalFactory accountClaimsPrincipalFactory, Microsoft.Extensions.Logging.ILogger> logger) -> void -~static Microsoft.AspNetCore.Components.WebAssembly.Authentication.NavigationManagerExtensions.NavigateToLogin(this Microsoft.AspNetCore.Components.NavigationManager manager, string loginPath) -> void -~static Microsoft.AspNetCore.Components.WebAssembly.Authentication.NavigationManagerExtensions.NavigateToLogin(this Microsoft.AspNetCore.Components.NavigationManager manager, string loginPath, Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions request) -> void -~static Microsoft.AspNetCore.Components.WebAssembly.Authentication.NavigationManagerExtensions.NavigateToLogout(this Microsoft.AspNetCore.Components.NavigationManager manager, string logoutPath) -> void -~static Microsoft.AspNetCore.Components.WebAssembly.Authentication.NavigationManagerExtensions.NavigateToLogout(this Microsoft.AspNetCore.Components.NavigationManager manager, string logoutPath, string returnUrl) -> void diff --git a/src/Components/WebAssembly/WebAssembly/src/PublicAPI.Shipped.txt b/src/Components/WebAssembly/WebAssembly/src/PublicAPI.Shipped.txt index cf4364e31113..089a8b288779 100644 --- a/src/Components/WebAssembly/WebAssembly/src/PublicAPI.Shipped.txt +++ b/src/Components/WebAssembly/WebAssembly/src/PublicAPI.Shipped.txt @@ -43,9 +43,9 @@ Microsoft.AspNetCore.Components.WebAssembly.Hosting.IWebAssemblyHostEnvironment Microsoft.AspNetCore.Components.WebAssembly.Hosting.IWebAssemblyHostEnvironment.BaseAddress.get -> string! Microsoft.AspNetCore.Components.WebAssembly.Hosting.IWebAssemblyHostEnvironment.Environment.get -> string! Microsoft.AspNetCore.Components.WebAssembly.Hosting.RootComponentMapping -Microsoft.AspNetCore.Components.WebAssembly.Hosting.RootComponentMapping.RootComponentMapping() -> void Microsoft.AspNetCore.Components.WebAssembly.Hosting.RootComponentMapping.ComponentType.get -> System.Type! Microsoft.AspNetCore.Components.WebAssembly.Hosting.RootComponentMapping.Parameters.get -> Microsoft.AspNetCore.Components.ParameterView +Microsoft.AspNetCore.Components.WebAssembly.Hosting.RootComponentMapping.RootComponentMapping() -> void Microsoft.AspNetCore.Components.WebAssembly.Hosting.RootComponentMapping.RootComponentMapping(System.Type! componentType, string! selector) -> void Microsoft.AspNetCore.Components.WebAssembly.Hosting.RootComponentMapping.RootComponentMapping(System.Type! componentType, string! selector, Microsoft.AspNetCore.Components.ParameterView parameters) -> void Microsoft.AspNetCore.Components.WebAssembly.Hosting.RootComponentMapping.Selector.get -> string! @@ -107,7 +107,7 @@ static Microsoft.AspNetCore.Components.WebAssembly.Hosting.WebAssemblyHostEnviro static Microsoft.AspNetCore.Components.WebAssembly.Hosting.WebAssemblyHostEnvironmentExtensions.IsEnvironment(this Microsoft.AspNetCore.Components.WebAssembly.Hosting.IWebAssemblyHostEnvironment! hostingEnvironment, string! environmentName) -> bool static Microsoft.AspNetCore.Components.WebAssembly.Hosting.WebAssemblyHostEnvironmentExtensions.IsProduction(this Microsoft.AspNetCore.Components.WebAssembly.Hosting.IWebAssemblyHostEnvironment! hostingEnvironment) -> bool static Microsoft.AspNetCore.Components.WebAssembly.Hosting.WebAssemblyHostEnvironmentExtensions.IsStaging(this Microsoft.AspNetCore.Components.WebAssembly.Hosting.IWebAssemblyHostEnvironment! hostingEnvironment) -> bool -static Microsoft.AspNetCore.Components.WebAssembly.HotReload.WebAssemblyHotReload.ApplyHotReloadDelta(string! moduleIdString, byte[]! metadataDelta, byte[]! ilDeta) -> void +static Microsoft.AspNetCore.Components.WebAssembly.HotReload.WebAssemblyHotReload.ApplyHotReloadDelta(string! moduleIdString, byte[]! metadataDelta, byte[]! ilDelta, byte[]! pdbBytes) -> void static Microsoft.AspNetCore.Components.WebAssembly.HotReload.WebAssemblyHotReload.GetApplyUpdateCapabilities() -> string! static Microsoft.AspNetCore.Components.WebAssembly.Http.WebAssemblyHttpRequestMessageExtensions.SetBrowserRequestCache(this System.Net.Http.HttpRequestMessage! requestMessage, Microsoft.AspNetCore.Components.WebAssembly.Http.BrowserRequestCache requestCache) -> System.Net.Http.HttpRequestMessage! static Microsoft.AspNetCore.Components.WebAssembly.Http.WebAssemblyHttpRequestMessageExtensions.SetBrowserRequestCredentials(this System.Net.Http.HttpRequestMessage! requestMessage, Microsoft.AspNetCore.Components.WebAssembly.Http.BrowserRequestCredentials requestCredentials) -> System.Net.Http.HttpRequestMessage! @@ -116,3 +116,5 @@ static Microsoft.AspNetCore.Components.WebAssembly.Http.WebAssemblyHttpRequestMe static Microsoft.AspNetCore.Components.WebAssembly.Http.WebAssemblyHttpRequestMessageExtensions.SetBrowserRequestOption(this System.Net.Http.HttpRequestMessage! requestMessage, string! name, object! value) -> System.Net.Http.HttpRequestMessage! static Microsoft.AspNetCore.Components.WebAssembly.Http.WebAssemblyHttpRequestMessageExtensions.SetBrowserResponseStreamingEnabled(this System.Net.Http.HttpRequestMessage! requestMessage, bool streamingEnabled) -> System.Net.Http.HttpRequestMessage! static Microsoft.AspNetCore.Components.WebAssembly.Infrastructure.JSInteropMethods.NotifyLocationChanged(string! uri, bool isInterceptedLink) -> void +static Microsoft.AspNetCore.Components.WebAssembly.Infrastructure.JSInteropMethods.NotifyLocationChanged(string! uri, string? state, bool isInterceptedLink) -> void +static Microsoft.AspNetCore.Components.WebAssembly.Infrastructure.JSInteropMethods.NotifyLocationChangingAsync(string! uri, string? state, bool isInterceptedLink) -> System.Threading.Tasks.ValueTask diff --git a/src/Components/WebAssembly/WebAssembly/src/PublicAPI.Unshipped.txt b/src/Components/WebAssembly/WebAssembly/src/PublicAPI.Unshipped.txt index 764fbde31dce..7dc5c58110bf 100644 --- a/src/Components/WebAssembly/WebAssembly/src/PublicAPI.Unshipped.txt +++ b/src/Components/WebAssembly/WebAssembly/src/PublicAPI.Unshipped.txt @@ -1,5 +1 @@ #nullable enable -*REMOVED*static Microsoft.AspNetCore.Components.WebAssembly.HotReload.WebAssemblyHotReload.ApplyHotReloadDelta(string! moduleIdString, byte[]! metadataDelta, byte[]! ilDeta) -> void -static Microsoft.AspNetCore.Components.WebAssembly.HotReload.WebAssemblyHotReload.ApplyHotReloadDelta(string! moduleIdString, byte[]! metadataDelta, byte[]! ilDelta, byte[]! pdbBytes) -> void -static Microsoft.AspNetCore.Components.WebAssembly.Infrastructure.JSInteropMethods.NotifyLocationChanged(string! uri, string? state, bool isInterceptedLink) -> void -static Microsoft.AspNetCore.Components.WebAssembly.Infrastructure.JSInteropMethods.NotifyLocationChangingAsync(string! uri, string? state, bool isInterceptedLink) -> System.Threading.Tasks.ValueTask diff --git a/src/DataProtection/DataProtection/src/PublicAPI.Shipped.txt b/src/DataProtection/DataProtection/src/PublicAPI.Shipped.txt index cec494af3acd..ce4946328fd2 100644 --- a/src/DataProtection/DataProtection/src/PublicAPI.Shipped.txt +++ b/src/DataProtection/DataProtection/src/PublicAPI.Shipped.txt @@ -1,6 +1,4 @@ #nullable enable -Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager.XmlKeyManager(Microsoft.Extensions.Options.IOptions! keyManagementOptions, Microsoft.AspNetCore.DataProtection.Internal.IActivator! activator) -> void -Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager.XmlKeyManager(Microsoft.Extensions.Options.IOptions! keyManagementOptions, Microsoft.AspNetCore.DataProtection.Internal.IActivator! activator, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void abstract Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel.AlgorithmConfiguration.CreateNewDescriptor() -> Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel.IAuthenticatedEncryptorDescriptor! Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.AuthenticatedEncryptorFactory Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.AuthenticatedEncryptorFactory.AuthenticatedEncryptorFactory(Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void @@ -173,6 +171,8 @@ Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager.GetAllKeys() -> Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager.GetCacheExpirationToken() -> System.Threading.CancellationToken Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager.RevokeAllKeys(System.DateTimeOffset revocationDate, string? reason = null) -> void Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager.RevokeKey(System.Guid keyId, string? reason = null) -> void +Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager.XmlKeyManager(Microsoft.Extensions.Options.IOptions! keyManagementOptions, Microsoft.AspNetCore.DataProtection.Internal.IActivator! activator) -> void +Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager.XmlKeyManager(Microsoft.Extensions.Options.IOptions! keyManagementOptions, Microsoft.AspNetCore.DataProtection.Internal.IActivator! activator, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void Microsoft.AspNetCore.DataProtection.Repositories.FileSystemXmlRepository Microsoft.AspNetCore.DataProtection.Repositories.FileSystemXmlRepository.Directory.get -> System.IO.DirectoryInfo! Microsoft.AspNetCore.DataProtection.Repositories.FileSystemXmlRepository.FileSystemXmlRepository(System.IO.DirectoryInfo! directory, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void diff --git a/src/DataProtection/EntityFrameworkCore/src/PublicAPI.Shipped.txt b/src/DataProtection/EntityFrameworkCore/src/PublicAPI.Shipped.txt index dd36f68796f8..d33731080ce3 100644 --- a/src/DataProtection/EntityFrameworkCore/src/PublicAPI.Shipped.txt +++ b/src/DataProtection/EntityFrameworkCore/src/PublicAPI.Shipped.txt @@ -1,5 +1,4 @@ #nullable enable -Microsoft.AspNetCore.DataProtection.EntityFrameworkCore.EntityFrameworkCoreXmlRepository Microsoft.AspNetCore.DataProtection.EntityFrameworkCore.DataProtectionKey Microsoft.AspNetCore.DataProtection.EntityFrameworkCore.DataProtectionKey.DataProtectionKey() -> void Microsoft.AspNetCore.DataProtection.EntityFrameworkCore.DataProtectionKey.FriendlyName.get -> string? @@ -8,6 +7,7 @@ Microsoft.AspNetCore.DataProtection.EntityFrameworkCore.DataProtectionKey.Id.get Microsoft.AspNetCore.DataProtection.EntityFrameworkCore.DataProtectionKey.Id.set -> void Microsoft.AspNetCore.DataProtection.EntityFrameworkCore.DataProtectionKey.Xml.get -> string? Microsoft.AspNetCore.DataProtection.EntityFrameworkCore.DataProtectionKey.Xml.set -> void +Microsoft.AspNetCore.DataProtection.EntityFrameworkCore.EntityFrameworkCoreXmlRepository Microsoft.AspNetCore.DataProtection.EntityFrameworkCore.EntityFrameworkCoreXmlRepository.EntityFrameworkCoreXmlRepository(System.IServiceProvider! services, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void Microsoft.AspNetCore.DataProtection.EntityFrameworkCore.EntityFrameworkCoreXmlRepository.StoreElement(System.Xml.Linq.XElement! element, string! friendlyName) -> void Microsoft.AspNetCore.DataProtection.EntityFrameworkCore.IDataProtectionKeyContext diff --git a/src/DefaultBuilder/src/PublicAPI.Shipped.txt b/src/DefaultBuilder/src/PublicAPI.Shipped.txt index 2ef1424999c5..9475a9dc6081 100644 --- a/src/DefaultBuilder/src/PublicAPI.Shipped.txt +++ b/src/DefaultBuilder/src/PublicAPI.Shipped.txt @@ -25,6 +25,7 @@ Microsoft.AspNetCore.Builder.WebApplication.Services.get -> System.IServiceProvi Microsoft.AspNetCore.Builder.WebApplication.StartAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Builder.WebApplication.StopAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Builder.WebApplication.Urls.get -> System.Collections.Generic.ICollection! +Microsoft.AspNetCore.Builder.WebApplication.Use(System.Func! middleware) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! Microsoft.AspNetCore.Builder.WebApplicationBuilder Microsoft.AspNetCore.Builder.WebApplicationBuilder.Build() -> Microsoft.AspNetCore.Builder.WebApplication! Microsoft.AspNetCore.Builder.WebApplicationBuilder.Configuration.get -> Microsoft.Extensions.Configuration.ConfigurationManager! @@ -61,3 +62,4 @@ static Microsoft.AspNetCore.WebHost.Start(System.Action! app) -> Microsoft.AspNetCore.Hosting.IWebHost! static Microsoft.AspNetCore.WebHost.StartWith(System.Action! app) -> Microsoft.AspNetCore.Hosting.IWebHost! static Microsoft.Extensions.Hosting.GenericHostBuilderExtensions.ConfigureWebHostDefaults(this Microsoft.Extensions.Hosting.IHostBuilder! builder, System.Action! configure) -> Microsoft.Extensions.Hosting.IHostBuilder! +static Microsoft.Extensions.Hosting.GenericHostBuilderExtensions.ConfigureWebHostDefaults(this Microsoft.Extensions.Hosting.IHostBuilder! builder, System.Action! configure, System.Action! configureOptions) -> Microsoft.Extensions.Hosting.IHostBuilder! diff --git a/src/DefaultBuilder/src/PublicAPI.Unshipped.txt b/src/DefaultBuilder/src/PublicAPI.Unshipped.txt index 88ff0b5ecc80..7dc5c58110bf 100644 --- a/src/DefaultBuilder/src/PublicAPI.Unshipped.txt +++ b/src/DefaultBuilder/src/PublicAPI.Unshipped.txt @@ -1,3 +1 @@ #nullable enable -Microsoft.AspNetCore.Builder.WebApplication.Use(System.Func! middleware) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! -static Microsoft.Extensions.Hosting.GenericHostBuilderExtensions.ConfigureWebHostDefaults(this Microsoft.Extensions.Hosting.IHostBuilder! builder, System.Action! configure, System.Action! configureOptions) -> Microsoft.Extensions.Hosting.IHostBuilder! diff --git a/src/Extensions/Features/src/PublicAPI.Shipped.txt b/src/Extensions/Features/src/PublicAPI.Shipped.txt index ff9e2975dd25..4c88bd135870 100644 --- a/src/Extensions/Features/src/PublicAPI.Shipped.txt +++ b/src/Extensions/Features/src/PublicAPI.Shipped.txt @@ -10,14 +10,15 @@ Microsoft.AspNetCore.Http.Features.FeatureCollection.IsReadOnly.get -> bool Microsoft.AspNetCore.Http.Features.FeatureCollection.Set(TFeature? instance) -> void Microsoft.AspNetCore.Http.Features.FeatureCollection.this[System.Type! key].get -> object? Microsoft.AspNetCore.Http.Features.FeatureCollection.this[System.Type! key].set -> void +Microsoft.AspNetCore.Http.Features.FeatureCollectionExtensions Microsoft.AspNetCore.Http.Features.FeatureReference Microsoft.AspNetCore.Http.Features.FeatureReference.FeatureReference() -> void Microsoft.AspNetCore.Http.Features.FeatureReference.Fetch(Microsoft.AspNetCore.Http.Features.IFeatureCollection! features) -> T? Microsoft.AspNetCore.Http.Features.FeatureReference.Update(Microsoft.AspNetCore.Http.Features.IFeatureCollection! features, T feature) -> T Microsoft.AspNetCore.Http.Features.FeatureReferences -Microsoft.AspNetCore.Http.Features.FeatureReferences.FeatureReferences() -> void Microsoft.AspNetCore.Http.Features.FeatureReferences.Cache -> TCache? Microsoft.AspNetCore.Http.Features.FeatureReferences.Collection.get -> Microsoft.AspNetCore.Http.Features.IFeatureCollection! +Microsoft.AspNetCore.Http.Features.FeatureReferences.FeatureReferences() -> void Microsoft.AspNetCore.Http.Features.FeatureReferences.FeatureReferences(Microsoft.AspNetCore.Http.Features.IFeatureCollection! collection) -> void Microsoft.AspNetCore.Http.Features.FeatureReferences.Fetch(ref TFeature? cached, TState state, System.Func! factory) -> TFeature? Microsoft.AspNetCore.Http.Features.FeatureReferences.Fetch(ref TFeature? cached, System.Func! factory) -> TFeature? @@ -31,5 +32,7 @@ Microsoft.AspNetCore.Http.Features.IFeatureCollection.Revision.get -> int Microsoft.AspNetCore.Http.Features.IFeatureCollection.Set(TFeature? instance) -> void Microsoft.AspNetCore.Http.Features.IFeatureCollection.this[System.Type! key].get -> object? Microsoft.AspNetCore.Http.Features.IFeatureCollection.this[System.Type! key].set -> void +static Microsoft.AspNetCore.Http.Features.FeatureCollectionExtensions.GetRequiredFeature(this Microsoft.AspNetCore.Http.Features.IFeatureCollection! featureCollection, System.Type! key) -> object! +static Microsoft.AspNetCore.Http.Features.FeatureCollectionExtensions.GetRequiredFeature(this Microsoft.AspNetCore.Http.Features.IFeatureCollection! featureCollection) -> TFeature static readonly Microsoft.AspNetCore.Http.Features.FeatureReference.Default -> Microsoft.AspNetCore.Http.Features.FeatureReference virtual Microsoft.AspNetCore.Http.Features.FeatureCollection.Revision.get -> int diff --git a/src/Extensions/Features/src/PublicAPI.Unshipped.txt b/src/Extensions/Features/src/PublicAPI.Unshipped.txt index 65565bfc108e..7dc5c58110bf 100644 --- a/src/Extensions/Features/src/PublicAPI.Unshipped.txt +++ b/src/Extensions/Features/src/PublicAPI.Unshipped.txt @@ -1,4 +1 @@ #nullable enable -Microsoft.AspNetCore.Http.Features.FeatureCollectionExtensions -static Microsoft.AspNetCore.Http.Features.FeatureCollectionExtensions.GetRequiredFeature(this Microsoft.AspNetCore.Http.Features.IFeatureCollection! featureCollection, System.Type! key) -> object! -static Microsoft.AspNetCore.Http.Features.FeatureCollectionExtensions.GetRequiredFeature(this Microsoft.AspNetCore.Http.Features.IFeatureCollection! featureCollection) -> TFeature diff --git a/src/Features/JsonPatch/src/PublicAPI.Shipped.txt b/src/Features/JsonPatch/src/PublicAPI.Shipped.txt index d55a7e974198..1601735c1231 100644 --- a/src/Features/JsonPatch/src/PublicAPI.Shipped.txt +++ b/src/Features/JsonPatch/src/PublicAPI.Shipped.txt @@ -122,6 +122,7 @@ ~virtual Microsoft.AspNetCore.JsonPatch.Adapters.AdapterFactory.Create(object target, Newtonsoft.Json.Serialization.IContractResolver contractResolver) -> Microsoft.AspNetCore.JsonPatch.Internal.IAdapter ~virtual Microsoft.AspNetCore.JsonPatch.Internal.DictionaryAdapter.TryAdd(object target, string segment, Newtonsoft.Json.Serialization.IContractResolver contractResolver, object value, out string errorMessage) -> bool ~virtual Microsoft.AspNetCore.JsonPatch.Internal.DictionaryAdapter.TryConvertKey(string key, out TKey convertedKey, out string errorMessage) -> bool +~virtual Microsoft.AspNetCore.JsonPatch.Internal.DictionaryAdapter.TryConvertValue(object value, Newtonsoft.Json.Serialization.IContractResolver contractResolver, out TValue convertedValue, out string errorMessage) -> bool ~virtual Microsoft.AspNetCore.JsonPatch.Internal.DictionaryAdapter.TryConvertValue(object value, out TValue convertedValue, out string errorMessage) -> bool ~virtual Microsoft.AspNetCore.JsonPatch.Internal.DictionaryAdapter.TryGet(object target, string segment, Newtonsoft.Json.Serialization.IContractResolver contractResolver, out object value, out string errorMessage) -> bool ~virtual Microsoft.AspNetCore.JsonPatch.Internal.DictionaryAdapter.TryRemove(object target, string segment, Newtonsoft.Json.Serialization.IContractResolver contractResolver, out string errorMessage) -> bool @@ -129,6 +130,7 @@ ~virtual Microsoft.AspNetCore.JsonPatch.Internal.DictionaryAdapter.TryTest(object target, string segment, Newtonsoft.Json.Serialization.IContractResolver contractResolver, object value, out string errorMessage) -> bool ~virtual Microsoft.AspNetCore.JsonPatch.Internal.DictionaryAdapter.TryTraverse(object target, string segment, Newtonsoft.Json.Serialization.IContractResolver contractResolver, out object nextTarget, out string errorMessage) -> bool ~virtual Microsoft.AspNetCore.JsonPatch.Internal.DynamicObjectAdapter.TryAdd(object target, string segment, Newtonsoft.Json.Serialization.IContractResolver contractResolver, object value, out string errorMessage) -> bool +~virtual Microsoft.AspNetCore.JsonPatch.Internal.DynamicObjectAdapter.TryConvertValue(object value, System.Type propertyType, Newtonsoft.Json.Serialization.IContractResolver contractResolver, out object convertedValue) -> bool ~virtual Microsoft.AspNetCore.JsonPatch.Internal.DynamicObjectAdapter.TryConvertValue(object value, System.Type propertyType, out object convertedValue) -> bool ~virtual Microsoft.AspNetCore.JsonPatch.Internal.DynamicObjectAdapter.TryGet(object target, string segment, Newtonsoft.Json.Serialization.IContractResolver contractResolver, out object value, out string errorMessage) -> bool ~virtual Microsoft.AspNetCore.JsonPatch.Internal.DynamicObjectAdapter.TryGetDynamicObjectProperty(object target, Newtonsoft.Json.Serialization.IContractResolver contractResolver, string segment, out object value, out string errorMessage) -> bool @@ -154,6 +156,7 @@ ~virtual Microsoft.AspNetCore.JsonPatch.Internal.ListAdapter.TryTest(object target, string segment, Newtonsoft.Json.Serialization.IContractResolver contractResolver, object value, out string errorMessage) -> bool ~virtual Microsoft.AspNetCore.JsonPatch.Internal.ListAdapter.TryTraverse(object target, string segment, Newtonsoft.Json.Serialization.IContractResolver contractResolver, out object value, out string errorMessage) -> bool ~virtual Microsoft.AspNetCore.JsonPatch.Internal.PocoAdapter.TryAdd(object target, string segment, Newtonsoft.Json.Serialization.IContractResolver contractResolver, object value, out string errorMessage) -> bool +~virtual Microsoft.AspNetCore.JsonPatch.Internal.PocoAdapter.TryConvertValue(object value, System.Type propertyType, Newtonsoft.Json.Serialization.IContractResolver contractResolver, out object convertedValue) -> bool ~virtual Microsoft.AspNetCore.JsonPatch.Internal.PocoAdapter.TryConvertValue(object value, System.Type propertyType, out object convertedValue) -> bool ~virtual Microsoft.AspNetCore.JsonPatch.Internal.PocoAdapter.TryGet(object target, string segment, Newtonsoft.Json.Serialization.IContractResolver contractResolver, out object value, out string errorMessage) -> bool ~virtual Microsoft.AspNetCore.JsonPatch.Internal.PocoAdapter.TryGetJsonProperty(object target, Newtonsoft.Json.Serialization.IContractResolver contractResolver, string segment, out Newtonsoft.Json.Serialization.JsonProperty jsonProperty) -> bool @@ -194,8 +197,8 @@ Microsoft.AspNetCore.JsonPatch.Internal.ListAdapter.OperationType.Get = 2 -> Mic Microsoft.AspNetCore.JsonPatch.Internal.ListAdapter.OperationType.Remove = 1 -> Microsoft.AspNetCore.JsonPatch.Internal.ListAdapter.OperationType Microsoft.AspNetCore.JsonPatch.Internal.ListAdapter.OperationType.Replace = 3 -> Microsoft.AspNetCore.JsonPatch.Internal.ListAdapter.OperationType Microsoft.AspNetCore.JsonPatch.Internal.ListAdapter.PositionInfo -Microsoft.AspNetCore.JsonPatch.Internal.ListAdapter.PositionInfo.PositionInfo() -> void Microsoft.AspNetCore.JsonPatch.Internal.ListAdapter.PositionInfo.Index.get -> int +Microsoft.AspNetCore.JsonPatch.Internal.ListAdapter.PositionInfo.PositionInfo() -> void Microsoft.AspNetCore.JsonPatch.Internal.ListAdapter.PositionInfo.PositionInfo(Microsoft.AspNetCore.JsonPatch.Internal.ListAdapter.PositionType type, int index) -> void Microsoft.AspNetCore.JsonPatch.Internal.ListAdapter.PositionInfo.Type.get -> Microsoft.AspNetCore.JsonPatch.Internal.ListAdapter.PositionType Microsoft.AspNetCore.JsonPatch.Internal.ListAdapter.PositionType diff --git a/src/Features/JsonPatch/src/PublicAPI.Unshipped.txt b/src/Features/JsonPatch/src/PublicAPI.Unshipped.txt index 26ee55ba6f88..7dc5c58110bf 100644 --- a/src/Features/JsonPatch/src/PublicAPI.Unshipped.txt +++ b/src/Features/JsonPatch/src/PublicAPI.Unshipped.txt @@ -1,4 +1 @@ #nullable enable -~virtual Microsoft.AspNetCore.JsonPatch.Internal.DictionaryAdapter.TryConvertValue(object value, Newtonsoft.Json.Serialization.IContractResolver contractResolver, out TValue convertedValue, out string errorMessage) -> bool -~virtual Microsoft.AspNetCore.JsonPatch.Internal.DynamicObjectAdapter.TryConvertValue(object value, System.Type propertyType, Newtonsoft.Json.Serialization.IContractResolver contractResolver, out object convertedValue) -> bool -~virtual Microsoft.AspNetCore.JsonPatch.Internal.PocoAdapter.TryConvertValue(object value, System.Type propertyType, Newtonsoft.Json.Serialization.IContractResolver contractResolver, out object convertedValue) -> bool diff --git a/src/Grpc/JsonTranscoding/src/Microsoft.AspNetCore.Grpc.JsonTranscoding/PublicAPI.Shipped.txt b/src/Grpc/JsonTranscoding/src/Microsoft.AspNetCore.Grpc.JsonTranscoding/PublicAPI.Shipped.txt index 7dc5c58110bf..d448a37e8e64 100644 --- a/src/Grpc/JsonTranscoding/src/Microsoft.AspNetCore.Grpc.JsonTranscoding/PublicAPI.Shipped.txt +++ b/src/Grpc/JsonTranscoding/src/Microsoft.AspNetCore.Grpc.JsonTranscoding/PublicAPI.Shipped.txt @@ -1 +1,24 @@ #nullable enable +Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonSettings +Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonSettings.GrpcJsonSettings() -> void +Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonSettings.IgnoreDefaultValues.get -> bool +Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonSettings.IgnoreDefaultValues.set -> void +Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonSettings.WriteEnumsAsIntegers.get -> bool +Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonSettings.WriteEnumsAsIntegers.set -> void +Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonSettings.WriteIndented.get -> bool +Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonSettings.WriteIndented.set -> void +Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonSettings.WriteInt64sAsStrings.get -> bool +Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonSettings.WriteInt64sAsStrings.set -> void +Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonTranscodingMetadata +Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonTranscodingMetadata.GrpcJsonTranscodingMetadata(Google.Protobuf.Reflection.MethodDescriptor! methodDescriptor, Google.Api.HttpRule! httpRule) -> void +Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonTranscodingMetadata.HttpRule.get -> Google.Api.HttpRule! +Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonTranscodingMetadata.MethodDescriptor.get -> Google.Protobuf.Reflection.MethodDescriptor! +Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonTranscodingOptions +Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonTranscodingOptions.GrpcJsonTranscodingOptions() -> void +Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonTranscodingOptions.JsonSettings.get -> Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonSettings! +Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonTranscodingOptions.JsonSettings.set -> void +Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonTranscodingOptions.TypeRegistry.get -> Google.Protobuf.Reflection.TypeRegistry! +Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonTranscodingOptions.TypeRegistry.set -> void +Microsoft.Extensions.DependencyInjection.GrpcJsonTranscodingServiceExtensions +static Microsoft.Extensions.DependencyInjection.GrpcJsonTranscodingServiceExtensions.AddJsonTranscoding(this Grpc.AspNetCore.Server.IGrpcServerBuilder! builder) -> Grpc.AspNetCore.Server.IGrpcServerBuilder! +static Microsoft.Extensions.DependencyInjection.GrpcJsonTranscodingServiceExtensions.AddJsonTranscoding(this Grpc.AspNetCore.Server.IGrpcServerBuilder! builder, System.Action! configureOptions) -> Grpc.AspNetCore.Server.IGrpcServerBuilder! diff --git a/src/Grpc/JsonTranscoding/src/Microsoft.AspNetCore.Grpc.JsonTranscoding/PublicAPI.Unshipped.txt b/src/Grpc/JsonTranscoding/src/Microsoft.AspNetCore.Grpc.JsonTranscoding/PublicAPI.Unshipped.txt index d448a37e8e64..7dc5c58110bf 100644 --- a/src/Grpc/JsonTranscoding/src/Microsoft.AspNetCore.Grpc.JsonTranscoding/PublicAPI.Unshipped.txt +++ b/src/Grpc/JsonTranscoding/src/Microsoft.AspNetCore.Grpc.JsonTranscoding/PublicAPI.Unshipped.txt @@ -1,24 +1 @@ #nullable enable -Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonSettings -Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonSettings.GrpcJsonSettings() -> void -Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonSettings.IgnoreDefaultValues.get -> bool -Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonSettings.IgnoreDefaultValues.set -> void -Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonSettings.WriteEnumsAsIntegers.get -> bool -Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonSettings.WriteEnumsAsIntegers.set -> void -Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonSettings.WriteIndented.get -> bool -Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonSettings.WriteIndented.set -> void -Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonSettings.WriteInt64sAsStrings.get -> bool -Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonSettings.WriteInt64sAsStrings.set -> void -Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonTranscodingMetadata -Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonTranscodingMetadata.GrpcJsonTranscodingMetadata(Google.Protobuf.Reflection.MethodDescriptor! methodDescriptor, Google.Api.HttpRule! httpRule) -> void -Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonTranscodingMetadata.HttpRule.get -> Google.Api.HttpRule! -Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonTranscodingMetadata.MethodDescriptor.get -> Google.Protobuf.Reflection.MethodDescriptor! -Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonTranscodingOptions -Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonTranscodingOptions.GrpcJsonTranscodingOptions() -> void -Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonTranscodingOptions.JsonSettings.get -> Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonSettings! -Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonTranscodingOptions.JsonSettings.set -> void -Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonTranscodingOptions.TypeRegistry.get -> Google.Protobuf.Reflection.TypeRegistry! -Microsoft.AspNetCore.Grpc.JsonTranscoding.GrpcJsonTranscodingOptions.TypeRegistry.set -> void -Microsoft.Extensions.DependencyInjection.GrpcJsonTranscodingServiceExtensions -static Microsoft.Extensions.DependencyInjection.GrpcJsonTranscodingServiceExtensions.AddJsonTranscoding(this Grpc.AspNetCore.Server.IGrpcServerBuilder! builder) -> Grpc.AspNetCore.Server.IGrpcServerBuilder! -static Microsoft.Extensions.DependencyInjection.GrpcJsonTranscodingServiceExtensions.AddJsonTranscoding(this Grpc.AspNetCore.Server.IGrpcServerBuilder! builder, System.Action! configureOptions) -> Grpc.AspNetCore.Server.IGrpcServerBuilder! diff --git a/src/Grpc/JsonTranscoding/src/Microsoft.AspNetCore.Grpc.Swagger/PublicAPI.Shipped.txt b/src/Grpc/JsonTranscoding/src/Microsoft.AspNetCore.Grpc.Swagger/PublicAPI.Shipped.txt index 7dc5c58110bf..29264107cc11 100644 --- a/src/Grpc/JsonTranscoding/src/Microsoft.AspNetCore.Grpc.Swagger/PublicAPI.Shipped.txt +++ b/src/Grpc/JsonTranscoding/src/Microsoft.AspNetCore.Grpc.Swagger/PublicAPI.Shipped.txt @@ -1 +1,8 @@ #nullable enable +Microsoft.Extensions.DependencyInjection.GrpcSwaggerGenOptionsExtensions +Microsoft.Extensions.DependencyInjection.GrpcSwaggerServiceExtensions +static Microsoft.Extensions.DependencyInjection.GrpcSwaggerGenOptionsExtensions.IncludeGrpcXmlComments(this Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions! swaggerGenOptions, string! filePath) -> void +static Microsoft.Extensions.DependencyInjection.GrpcSwaggerGenOptionsExtensions.IncludeGrpcXmlComments(this Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions! swaggerGenOptions, string! filePath, bool includeControllerXmlComments) -> void +static Microsoft.Extensions.DependencyInjection.GrpcSwaggerGenOptionsExtensions.IncludeGrpcXmlComments(this Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions! swaggerGenOptions, System.Func! xmlDocFactory) -> void +static Microsoft.Extensions.DependencyInjection.GrpcSwaggerGenOptionsExtensions.IncludeGrpcXmlComments(this Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions! swaggerGenOptions, System.Func! xmlDocFactory, bool includeControllerXmlComments) -> void +static Microsoft.Extensions.DependencyInjection.GrpcSwaggerServiceExtensions.AddGrpcSwagger(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! diff --git a/src/Grpc/JsonTranscoding/src/Microsoft.AspNetCore.Grpc.Swagger/PublicAPI.Unshipped.txt b/src/Grpc/JsonTranscoding/src/Microsoft.AspNetCore.Grpc.Swagger/PublicAPI.Unshipped.txt index 9b52bc42710a..7dc5c58110bf 100644 --- a/src/Grpc/JsonTranscoding/src/Microsoft.AspNetCore.Grpc.Swagger/PublicAPI.Unshipped.txt +++ b/src/Grpc/JsonTranscoding/src/Microsoft.AspNetCore.Grpc.Swagger/PublicAPI.Unshipped.txt @@ -1,8 +1 @@ #nullable enable -Microsoft.Extensions.DependencyInjection.GrpcSwaggerGenOptionsExtensions -Microsoft.Extensions.DependencyInjection.GrpcSwaggerServiceExtensions -static Microsoft.Extensions.DependencyInjection.GrpcSwaggerGenOptionsExtensions.IncludeGrpcXmlComments(this Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions! swaggerGenOptions, System.Func! xmlDocFactory) -> void -static Microsoft.Extensions.DependencyInjection.GrpcSwaggerGenOptionsExtensions.IncludeGrpcXmlComments(this Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions! swaggerGenOptions, System.Func! xmlDocFactory, bool includeControllerXmlComments) -> void -static Microsoft.Extensions.DependencyInjection.GrpcSwaggerGenOptionsExtensions.IncludeGrpcXmlComments(this Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions! swaggerGenOptions, string! filePath) -> void -static Microsoft.Extensions.DependencyInjection.GrpcSwaggerGenOptionsExtensions.IncludeGrpcXmlComments(this Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions! swaggerGenOptions, string! filePath, bool includeControllerXmlComments) -> void -static Microsoft.Extensions.DependencyInjection.GrpcSwaggerServiceExtensions.AddGrpcSwagger(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! diff --git a/src/HealthChecks/Abstractions/src/PublicAPI.Shipped.txt b/src/HealthChecks/Abstractions/src/PublicAPI.Shipped.txt index 6d8294f838d6..7655e9543207 100644 --- a/src/HealthChecks/Abstractions/src/PublicAPI.Shipped.txt +++ b/src/HealthChecks/Abstractions/src/PublicAPI.Shipped.txt @@ -18,10 +18,10 @@ Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.Tags.get - Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.Timeout.get -> System.TimeSpan Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration.Timeout.set -> void Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult -Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult.HealthCheckResult() -> void Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult.Data.get -> System.Collections.Generic.IReadOnlyDictionary! Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult.Description.get -> string? Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult.Exception.get -> System.Exception? +Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult.HealthCheckResult() -> void Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult.HealthCheckResult(Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus status, string? description = null, System.Exception? exception = null, System.Collections.Generic.IReadOnlyDictionary? data = null) -> void Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckResult.Status.get -> Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport @@ -31,11 +31,11 @@ Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport.HealthReport(System.C Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport.Status.get -> Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport.TotalDuration.get -> System.TimeSpan Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry -Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.HealthReportEntry() -> void Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.Data.get -> System.Collections.Generic.IReadOnlyDictionary! Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.Description.get -> string? Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.Duration.get -> System.TimeSpan Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.Exception.get -> System.Exception? +Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.HealthReportEntry() -> void Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.HealthReportEntry(Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus status, string? description, System.TimeSpan duration, System.Exception? exception, System.Collections.Generic.IReadOnlyDictionary? data) -> void Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.HealthReportEntry(Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus status, string? description, System.TimeSpan duration, System.Exception? exception, System.Collections.Generic.IReadOnlyDictionary? data, System.Collections.Generic.IEnumerable? tags = null) -> void Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry.Status.get -> Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus diff --git a/src/Hosting/Hosting/src/PublicAPI.Shipped.txt b/src/Hosting/Hosting/src/PublicAPI.Shipped.txt index c90b744b45f5..13641a7e05fe 100644 --- a/src/Hosting/Hosting/src/PublicAPI.Shipped.txt +++ b/src/Hosting/Hosting/src/PublicAPI.Shipped.txt @@ -30,7 +30,7 @@ Microsoft.AspNetCore.Hosting.WebHostBuilder.Build() -> Microsoft.AspNetCore.Host Microsoft.AspNetCore.Hosting.WebHostBuilder.ConfigureAppConfiguration(System.Action! configureDelegate) -> Microsoft.AspNetCore.Hosting.IWebHostBuilder! Microsoft.AspNetCore.Hosting.WebHostBuilder.ConfigureServices(System.Action! configureServices) -> Microsoft.AspNetCore.Hosting.IWebHostBuilder! Microsoft.AspNetCore.Hosting.WebHostBuilder.ConfigureServices(System.Action! configureServices) -> Microsoft.AspNetCore.Hosting.IWebHostBuilder! -Microsoft.AspNetCore.Hosting.WebHostBuilder.GetSetting(string! key) -> string! +Microsoft.AspNetCore.Hosting.WebHostBuilder.GetSetting(string! key) -> string? Microsoft.AspNetCore.Hosting.WebHostBuilder.UseSetting(string! key, string? value) -> Microsoft.AspNetCore.Hosting.IWebHostBuilder! Microsoft.AspNetCore.Hosting.WebHostBuilder.WebHostBuilder() -> void Microsoft.AspNetCore.Hosting.WebHostBuilderExtensions diff --git a/src/Hosting/Hosting/src/PublicAPI.Unshipped.txt b/src/Hosting/Hosting/src/PublicAPI.Unshipped.txt index d5b4c04d754f..7dc5c58110bf 100644 --- a/src/Hosting/Hosting/src/PublicAPI.Unshipped.txt +++ b/src/Hosting/Hosting/src/PublicAPI.Unshipped.txt @@ -1,3 +1 @@ #nullable enable -*REMOVED*Microsoft.AspNetCore.Hosting.WebHostBuilder.GetSetting(string! key) -> string! -Microsoft.AspNetCore.Hosting.WebHostBuilder.GetSetting(string! key) -> string? diff --git a/src/Hosting/TestHost/src/PublicAPI.Shipped.txt b/src/Hosting/TestHost/src/PublicAPI.Shipped.txt index 40ca32be2f28..4333342f4f5d 100644 --- a/src/Hosting/TestHost/src/PublicAPI.Shipped.txt +++ b/src/Hosting/TestHost/src/PublicAPI.Shipped.txt @@ -1,6 +1,4 @@ #nullable enable -Microsoft.AspNetCore.TestHost.TestServer.TestServer(System.IServiceProvider! services, Microsoft.AspNetCore.Http.Features.IFeatureCollection! featureCollection, Microsoft.Extensions.Options.IOptions! optionsAccessor) -> void -Microsoft.AspNetCore.TestHost.TestServer.TestServer(System.IServiceProvider! services, Microsoft.Extensions.Options.IOptions! optionsAccessor) -> void Microsoft.AspNetCore.TestHost.ClientHandler Microsoft.AspNetCore.TestHost.HostBuilderTestServerExtensions Microsoft.AspNetCore.TestHost.HttpResetTestException @@ -21,6 +19,7 @@ Microsoft.AspNetCore.TestHost.TestServer.BaseAddress.get -> System.Uri! Microsoft.AspNetCore.TestHost.TestServer.BaseAddress.set -> void Microsoft.AspNetCore.TestHost.TestServer.CreateClient() -> System.Net.Http.HttpClient! Microsoft.AspNetCore.TestHost.TestServer.CreateHandler() -> System.Net.Http.HttpMessageHandler! +Microsoft.AspNetCore.TestHost.TestServer.CreateHandler(System.Action! additionalContextConfiguration) -> System.Net.Http.HttpMessageHandler! Microsoft.AspNetCore.TestHost.TestServer.CreateRequest(string! path) -> Microsoft.AspNetCore.TestHost.RequestBuilder! Microsoft.AspNetCore.TestHost.TestServer.CreateWebSocketClient() -> Microsoft.AspNetCore.TestHost.WebSocketClient! Microsoft.AspNetCore.TestHost.TestServer.Dispose() -> void @@ -34,6 +33,8 @@ Microsoft.AspNetCore.TestHost.TestServer.TestServer(Microsoft.AspNetCore.Hosting Microsoft.AspNetCore.TestHost.TestServer.TestServer(Microsoft.AspNetCore.Hosting.IWebHostBuilder! builder, Microsoft.AspNetCore.Http.Features.IFeatureCollection! featureCollection) -> void Microsoft.AspNetCore.TestHost.TestServer.TestServer(System.IServiceProvider! services) -> void Microsoft.AspNetCore.TestHost.TestServer.TestServer(System.IServiceProvider! services, Microsoft.AspNetCore.Http.Features.IFeatureCollection! featureCollection) -> void +Microsoft.AspNetCore.TestHost.TestServer.TestServer(System.IServiceProvider! services, Microsoft.AspNetCore.Http.Features.IFeatureCollection! featureCollection, Microsoft.Extensions.Options.IOptions! optionsAccessor) -> void +Microsoft.AspNetCore.TestHost.TestServer.TestServer(System.IServiceProvider! services, Microsoft.Extensions.Options.IOptions! optionsAccessor) -> void Microsoft.AspNetCore.TestHost.TestServerOptions Microsoft.AspNetCore.TestHost.TestServerOptions.AllowSynchronousIO.get -> bool Microsoft.AspNetCore.TestHost.TestServerOptions.AllowSynchronousIO.set -> void diff --git a/src/Hosting/TestHost/src/PublicAPI.Unshipped.txt b/src/Hosting/TestHost/src/PublicAPI.Unshipped.txt index 245ee831ed67..7dc5c58110bf 100644 --- a/src/Hosting/TestHost/src/PublicAPI.Unshipped.txt +++ b/src/Hosting/TestHost/src/PublicAPI.Unshipped.txt @@ -1,2 +1 @@ #nullable enable -Microsoft.AspNetCore.TestHost.TestServer.CreateHandler(System.Action! additionalContextConfiguration) -> System.Net.Http.HttpMessageHandler! diff --git a/src/Http/Authentication.Abstractions/src/PublicAPI.Shipped.txt b/src/Http/Authentication.Abstractions/src/PublicAPI.Shipped.txt index 16a6960e5e4f..27a186658a85 100644 --- a/src/Http/Authentication.Abstractions/src/PublicAPI.Shipped.txt +++ b/src/Http/Authentication.Abstractions/src/PublicAPI.Shipped.txt @@ -88,6 +88,8 @@ Microsoft.AspNetCore.Authentication.AuthenticationTokenExtensions Microsoft.AspNetCore.Authentication.IAuthenticateResultFeature Microsoft.AspNetCore.Authentication.IAuthenticateResultFeature.AuthenticateResult.get -> Microsoft.AspNetCore.Authentication.AuthenticateResult? Microsoft.AspNetCore.Authentication.IAuthenticateResultFeature.AuthenticateResult.set -> void +Microsoft.AspNetCore.Authentication.IAuthenticationConfigurationProvider +Microsoft.AspNetCore.Authentication.IAuthenticationConfigurationProvider.AuthenticationConfiguration.get -> Microsoft.Extensions.Configuration.IConfiguration! Microsoft.AspNetCore.Authentication.IAuthenticationFeature Microsoft.AspNetCore.Authentication.IAuthenticationFeature.OriginalPath.get -> Microsoft.AspNetCore.Http.PathString Microsoft.AspNetCore.Authentication.IAuthenticationFeature.OriginalPath.set -> void diff --git a/src/Http/Authentication.Abstractions/src/PublicAPI.Unshipped.txt b/src/Http/Authentication.Abstractions/src/PublicAPI.Unshipped.txt index f79cddf64673..7dc5c58110bf 100644 --- a/src/Http/Authentication.Abstractions/src/PublicAPI.Unshipped.txt +++ b/src/Http/Authentication.Abstractions/src/PublicAPI.Unshipped.txt @@ -1,4 +1 @@ #nullable enable -Microsoft.AspNetCore.Authentication.IAuthenticationConfigurationProvider -Microsoft.AspNetCore.Authentication.IAuthenticationConfigurationProvider.AuthenticationConfiguration.get -> Microsoft.Extensions.Configuration.IConfiguration! - diff --git a/src/Http/Authentication.Core/src/PublicAPI.Shipped.txt b/src/Http/Authentication.Core/src/PublicAPI.Shipped.txt index a2f8c8991bd4..47bc0be304bc 100644 --- a/src/Http/Authentication.Core/src/PublicAPI.Shipped.txt +++ b/src/Http/Authentication.Core/src/PublicAPI.Shipped.txt @@ -1,7 +1,4 @@ #nullable enable -Microsoft.AspNetCore.Authentication.AuthenticationSchemeProvider.AuthenticationSchemeProvider(Microsoft.Extensions.Options.IOptions! options) -> void -Microsoft.AspNetCore.Authentication.AuthenticationSchemeProvider.AuthenticationSchemeProvider(Microsoft.Extensions.Options.IOptions! options, System.Collections.Generic.IDictionary! schemes) -> void -Microsoft.AspNetCore.Authentication.AuthenticationService.AuthenticationService(Microsoft.AspNetCore.Authentication.IAuthenticationSchemeProvider! schemes, Microsoft.AspNetCore.Authentication.IAuthenticationHandlerProvider! handlers, Microsoft.AspNetCore.Authentication.IClaimsTransformation! transform, Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.Authentication.AuthenticationFeature Microsoft.AspNetCore.Authentication.AuthenticationFeature.AuthenticationFeature() -> void Microsoft.AspNetCore.Authentication.AuthenticationFeature.OriginalPath.get -> Microsoft.AspNetCore.Http.PathString @@ -13,7 +10,10 @@ Microsoft.AspNetCore.Authentication.AuthenticationHandlerProvider.Authentication Microsoft.AspNetCore.Authentication.AuthenticationHandlerProvider.GetHandlerAsync(Microsoft.AspNetCore.Http.HttpContext! context, string! authenticationScheme) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authentication.AuthenticationHandlerProvider.Schemes.get -> Microsoft.AspNetCore.Authentication.IAuthenticationSchemeProvider! Microsoft.AspNetCore.Authentication.AuthenticationSchemeProvider +Microsoft.AspNetCore.Authentication.AuthenticationSchemeProvider.AuthenticationSchemeProvider(Microsoft.Extensions.Options.IOptions! options) -> void +Microsoft.AspNetCore.Authentication.AuthenticationSchemeProvider.AuthenticationSchemeProvider(Microsoft.Extensions.Options.IOptions! options, System.Collections.Generic.IDictionary! schemes) -> void Microsoft.AspNetCore.Authentication.AuthenticationService +Microsoft.AspNetCore.Authentication.AuthenticationService.AuthenticationService(Microsoft.AspNetCore.Authentication.IAuthenticationSchemeProvider! schemes, Microsoft.AspNetCore.Authentication.IAuthenticationHandlerProvider! handlers, Microsoft.AspNetCore.Authentication.IClaimsTransformation! transform, Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.Authentication.AuthenticationService.Handlers.get -> Microsoft.AspNetCore.Authentication.IAuthenticationHandlerProvider! Microsoft.AspNetCore.Authentication.AuthenticationService.Options.get -> Microsoft.AspNetCore.Authentication.AuthenticationOptions! Microsoft.AspNetCore.Authentication.AuthenticationService.Schemes.get -> Microsoft.AspNetCore.Authentication.IAuthenticationSchemeProvider! diff --git a/src/Http/Http.Abstractions/src/PublicAPI.Shipped.txt b/src/Http/Http.Abstractions/src/PublicAPI.Shipped.txt index de48ab35345d..9c069efee8f6 100644 --- a/src/Http/Http.Abstractions/src/PublicAPI.Shipped.txt +++ b/src/Http/Http.Abstractions/src/PublicAPI.Shipped.txt @@ -13,6 +13,9 @@ abstract Microsoft.AspNetCore.Http.ConnectionInfo.RemoteIpAddress.get -> System. abstract Microsoft.AspNetCore.Http.ConnectionInfo.RemoteIpAddress.set -> void abstract Microsoft.AspNetCore.Http.ConnectionInfo.RemotePort.get -> int abstract Microsoft.AspNetCore.Http.ConnectionInfo.RemotePort.set -> void +abstract Microsoft.AspNetCore.Http.EndpointFilterInvocationContext.Arguments.get -> System.Collections.Generic.IList! +abstract Microsoft.AspNetCore.Http.EndpointFilterInvocationContext.GetArgument(int index) -> T +abstract Microsoft.AspNetCore.Http.EndpointFilterInvocationContext.HttpContext.get -> Microsoft.AspNetCore.Http.HttpContext! abstract Microsoft.AspNetCore.Http.HttpContext.Abort() -> void abstract Microsoft.AspNetCore.Http.HttpContext.Connection.get -> Microsoft.AspNetCore.Http.ConnectionInfo! abstract Microsoft.AspNetCore.Http.HttpContext.Features.get -> Microsoft.AspNetCore.Http.Features.IFeatureCollection! @@ -67,7 +70,7 @@ abstract Microsoft.AspNetCore.Http.HttpResponse.Body.get -> System.IO.Stream! abstract Microsoft.AspNetCore.Http.HttpResponse.Body.set -> void abstract Microsoft.AspNetCore.Http.HttpResponse.ContentLength.get -> long? abstract Microsoft.AspNetCore.Http.HttpResponse.ContentLength.set -> void -abstract Microsoft.AspNetCore.Http.HttpResponse.ContentType.get -> string! +abstract Microsoft.AspNetCore.Http.HttpResponse.ContentType.get -> string? abstract Microsoft.AspNetCore.Http.HttpResponse.ContentType.set -> void abstract Microsoft.AspNetCore.Http.HttpResponse.Cookies.get -> Microsoft.AspNetCore.Http.IResponseCookies! abstract Microsoft.AspNetCore.Http.HttpResponse.HasStarted.get -> bool @@ -147,9 +150,12 @@ const Microsoft.AspNetCore.Http.StatusCodes.Status508LoopDetected = 508 -> int const Microsoft.AspNetCore.Http.StatusCodes.Status510NotExtended = 510 -> int const Microsoft.AspNetCore.Http.StatusCodes.Status511NetworkAuthenticationRequired = 511 -> int Microsoft.AspNetCore.Builder.EndpointBuilder +Microsoft.AspNetCore.Builder.EndpointBuilder.ApplicationServices.get -> System.IServiceProvider! +Microsoft.AspNetCore.Builder.EndpointBuilder.ApplicationServices.init -> void Microsoft.AspNetCore.Builder.EndpointBuilder.DisplayName.get -> string? Microsoft.AspNetCore.Builder.EndpointBuilder.DisplayName.set -> void Microsoft.AspNetCore.Builder.EndpointBuilder.EndpointBuilder() -> void +Microsoft.AspNetCore.Builder.EndpointBuilder.FilterFactories.get -> System.Collections.Generic.IList!>! Microsoft.AspNetCore.Builder.EndpointBuilder.Metadata.get -> System.Collections.Generic.IList! Microsoft.AspNetCore.Builder.EndpointBuilder.RequestDelegate.get -> Microsoft.AspNetCore.Http.RequestDelegate? Microsoft.AspNetCore.Builder.EndpointBuilder.RequestDelegate.set -> void @@ -186,6 +192,7 @@ Microsoft.AspNetCore.Builder.IApplicationBuilder.ServerFeatures.get -> Microsoft Microsoft.AspNetCore.Builder.IApplicationBuilder.Use(System.Func! middleware) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! Microsoft.AspNetCore.Builder.IEndpointConventionBuilder Microsoft.AspNetCore.Builder.IEndpointConventionBuilder.Add(System.Action! convention) -> void +Microsoft.AspNetCore.Builder.IEndpointConventionBuilder.Finally(System.Action! finallyConvention) -> void Microsoft.AspNetCore.Builder.MapExtensions Microsoft.AspNetCore.Builder.MapWhenExtensions Microsoft.AspNetCore.Builder.RunExtensions @@ -194,6 +201,8 @@ Microsoft.AspNetCore.Builder.UseMiddlewareExtensions Microsoft.AspNetCore.Builder.UsePathBaseExtensions Microsoft.AspNetCore.Builder.UseWhenExtensions Microsoft.AspNetCore.Cors.Infrastructure.ICorsMetadata +Microsoft.AspNetCore.Http.AsParametersAttribute +Microsoft.AspNetCore.Http.AsParametersAttribute.AsParametersAttribute() -> void Microsoft.AspNetCore.Http.BadHttpRequestException Microsoft.AspNetCore.Http.BadHttpRequestException.BadHttpRequestException(string! message) -> void Microsoft.AspNetCore.Http.BadHttpRequestException.BadHttpRequestException(string! message, int statusCode) -> void @@ -205,29 +214,42 @@ Microsoft.AspNetCore.Http.ConnectionInfo.ConnectionInfo() -> void Microsoft.AspNetCore.Http.CookieBuilder Microsoft.AspNetCore.Http.CookieBuilder.Build(Microsoft.AspNetCore.Http.HttpContext! context) -> Microsoft.AspNetCore.Http.CookieOptions! Microsoft.AspNetCore.Http.CookieBuilder.CookieBuilder() -> void +Microsoft.AspNetCore.Http.CookieBuilder.Extensions.get -> System.Collections.Generic.IList! Microsoft.AspNetCore.Http.CookieSecurePolicy Microsoft.AspNetCore.Http.CookieSecurePolicy.Always = 1 -> Microsoft.AspNetCore.Http.CookieSecurePolicy Microsoft.AspNetCore.Http.CookieSecurePolicy.None = 2 -> Microsoft.AspNetCore.Http.CookieSecurePolicy Microsoft.AspNetCore.Http.CookieSecurePolicy.SameAsRequest = 0 -> Microsoft.AspNetCore.Http.CookieSecurePolicy +Microsoft.AspNetCore.Http.DefaultEndpointFilterInvocationContext +Microsoft.AspNetCore.Http.DefaultEndpointFilterInvocationContext.DefaultEndpointFilterInvocationContext(Microsoft.AspNetCore.Http.HttpContext! httpContext, params object![]! arguments) -> void Microsoft.AspNetCore.Http.Endpoint Microsoft.AspNetCore.Http.Endpoint.DisplayName.get -> string? Microsoft.AspNetCore.Http.Endpoint.Endpoint(Microsoft.AspNetCore.Http.RequestDelegate? requestDelegate, Microsoft.AspNetCore.Http.EndpointMetadataCollection? metadata, string? displayName) -> void Microsoft.AspNetCore.Http.Endpoint.Metadata.get -> Microsoft.AspNetCore.Http.EndpointMetadataCollection! Microsoft.AspNetCore.Http.Endpoint.RequestDelegate.get -> Microsoft.AspNetCore.Http.RequestDelegate? +Microsoft.AspNetCore.Http.EndpointFilterDelegate +Microsoft.AspNetCore.Http.EndpointFilterFactoryContext +Microsoft.AspNetCore.Http.EndpointFilterFactoryContext.ApplicationServices.get -> System.IServiceProvider! +Microsoft.AspNetCore.Http.EndpointFilterFactoryContext.ApplicationServices.init -> void +Microsoft.AspNetCore.Http.EndpointFilterFactoryContext.EndpointFilterFactoryContext() -> void +Microsoft.AspNetCore.Http.EndpointFilterFactoryContext.MethodInfo.get -> System.Reflection.MethodInfo! +Microsoft.AspNetCore.Http.EndpointFilterFactoryContext.MethodInfo.init -> void +Microsoft.AspNetCore.Http.EndpointFilterInvocationContext +Microsoft.AspNetCore.Http.EndpointFilterInvocationContext.EndpointFilterInvocationContext() -> void Microsoft.AspNetCore.Http.EndpointHttpContextExtensions Microsoft.AspNetCore.Http.EndpointMetadataCollection Microsoft.AspNetCore.Http.EndpointMetadataCollection.Count.get -> int Microsoft.AspNetCore.Http.EndpointMetadataCollection.EndpointMetadataCollection(params object![]! items) -> void Microsoft.AspNetCore.Http.EndpointMetadataCollection.EndpointMetadataCollection(System.Collections.Generic.IEnumerable! items) -> void Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator -Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.Enumerator() -> void -Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.Current.get -> object? +Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.Current.get -> object! Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.Dispose() -> void +Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.Enumerator() -> void Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.MoveNext() -> bool Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.Reset() -> void Microsoft.AspNetCore.Http.EndpointMetadataCollection.GetEnumerator() -> Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator Microsoft.AspNetCore.Http.EndpointMetadataCollection.GetMetadata() -> T? Microsoft.AspNetCore.Http.EndpointMetadataCollection.GetOrderedMetadata() -> System.Collections.Generic.IReadOnlyList! +Microsoft.AspNetCore.Http.EndpointMetadataCollection.GetRequiredMetadata() -> T! Microsoft.AspNetCore.Http.EndpointMetadataCollection.this[int index].get -> object! Microsoft.AspNetCore.Http.Features.IEndpointFeature Microsoft.AspNetCore.Http.Features.IEndpointFeature.Endpoint.get -> Microsoft.AspNetCore.Http.Endpoint? @@ -236,18 +258,18 @@ Microsoft.AspNetCore.Http.Features.IRouteValuesFeature Microsoft.AspNetCore.Http.Features.IRouteValuesFeature.RouteValues.get -> Microsoft.AspNetCore.Routing.RouteValueDictionary! Microsoft.AspNetCore.Http.Features.IRouteValuesFeature.RouteValues.set -> void Microsoft.AspNetCore.Http.FragmentString -Microsoft.AspNetCore.Http.FragmentString.FragmentString() -> void Microsoft.AspNetCore.Http.FragmentString.Equals(Microsoft.AspNetCore.Http.FragmentString other) -> bool +Microsoft.AspNetCore.Http.FragmentString.FragmentString() -> void Microsoft.AspNetCore.Http.FragmentString.FragmentString(string! value) -> void Microsoft.AspNetCore.Http.FragmentString.HasValue.get -> bool Microsoft.AspNetCore.Http.FragmentString.ToUriComponent() -> string! Microsoft.AspNetCore.Http.FragmentString.Value.get -> string! Microsoft.AspNetCore.Http.HeaderDictionaryExtensions Microsoft.AspNetCore.Http.HostString -Microsoft.AspNetCore.Http.HostString.HostString() -> void Microsoft.AspNetCore.Http.HostString.Equals(Microsoft.AspNetCore.Http.HostString other) -> bool Microsoft.AspNetCore.Http.HostString.HasValue.get -> bool Microsoft.AspNetCore.Http.HostString.Host.get -> string! +Microsoft.AspNetCore.Http.HostString.HostString() -> void Microsoft.AspNetCore.Http.HostString.HostString(string! host, int port) -> void Microsoft.AspNetCore.Http.HostString.HostString(string! value) -> void Microsoft.AspNetCore.Http.HostString.Port.get -> int? @@ -262,6 +284,19 @@ Microsoft.AspNetCore.Http.HttpRequest.HttpRequest() -> void Microsoft.AspNetCore.Http.HttpResponse Microsoft.AspNetCore.Http.HttpResponse.HttpResponse() -> void Microsoft.AspNetCore.Http.HttpResponseWritingExtensions +Microsoft.AspNetCore.Http.HttpValidationProblemDetails +Microsoft.AspNetCore.Http.HttpValidationProblemDetails.Errors.get -> System.Collections.Generic.IDictionary! +Microsoft.AspNetCore.Http.HttpValidationProblemDetails.HttpValidationProblemDetails() -> void +Microsoft.AspNetCore.Http.HttpValidationProblemDetails.HttpValidationProblemDetails(System.Collections.Generic.IDictionary! errors) -> void +Microsoft.AspNetCore.Http.IBindableFromHttpContext +Microsoft.AspNetCore.Http.IBindableFromHttpContext.BindAsync(Microsoft.AspNetCore.Http.HttpContext! context, System.Reflection.ParameterInfo! parameter) -> System.Threading.Tasks.ValueTask +Microsoft.AspNetCore.Http.IContentTypeHttpResult +Microsoft.AspNetCore.Http.IContentTypeHttpResult.ContentType.get -> string? +Microsoft.AspNetCore.Http.IEndpointFilter +Microsoft.AspNetCore.Http.IEndpointFilter.InvokeAsync(Microsoft.AspNetCore.Http.EndpointFilterInvocationContext! context, Microsoft.AspNetCore.Http.EndpointFilterDelegate! next) -> System.Threading.Tasks.ValueTask +Microsoft.AspNetCore.Http.IFileHttpResult +Microsoft.AspNetCore.Http.IFileHttpResult.ContentType.get -> string? +Microsoft.AspNetCore.Http.IFileHttpResult.FileDownloadName.get -> string? Microsoft.AspNetCore.Http.IHttpContextAccessor Microsoft.AspNetCore.Http.IHttpContextAccessor.HttpContext.get -> Microsoft.AspNetCore.Http.HttpContext? Microsoft.AspNetCore.Http.IHttpContextAccessor.HttpContext.set -> void @@ -273,14 +308,37 @@ Microsoft.AspNetCore.Http.IMiddleware.InvokeAsync(Microsoft.AspNetCore.Http.Http Microsoft.AspNetCore.Http.IMiddlewareFactory Microsoft.AspNetCore.Http.IMiddlewareFactory.Create(System.Type! middlewareType) -> Microsoft.AspNetCore.Http.IMiddleware? Microsoft.AspNetCore.Http.IMiddlewareFactory.Release(Microsoft.AspNetCore.Http.IMiddleware! middleware) -> void +Microsoft.AspNetCore.Http.INestedHttpResult +Microsoft.AspNetCore.Http.INestedHttpResult.Result.get -> Microsoft.AspNetCore.Http.IResult! +Microsoft.AspNetCore.Http.IProblemDetailsService +Microsoft.AspNetCore.Http.IProblemDetailsService.WriteAsync(Microsoft.AspNetCore.Http.ProblemDetailsContext! context) -> System.Threading.Tasks.ValueTask +Microsoft.AspNetCore.Http.IProblemDetailsWriter +Microsoft.AspNetCore.Http.IProblemDetailsWriter.CanWrite(Microsoft.AspNetCore.Http.ProblemDetailsContext! context) -> bool +Microsoft.AspNetCore.Http.IProblemDetailsWriter.WriteAsync(Microsoft.AspNetCore.Http.ProblemDetailsContext! context) -> System.Threading.Tasks.ValueTask Microsoft.AspNetCore.Http.IResult Microsoft.AspNetCore.Http.IResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.IStatusCodeHttpResult +Microsoft.AspNetCore.Http.IStatusCodeHttpResult.StatusCode.get -> int? +Microsoft.AspNetCore.Http.IValueHttpResult +Microsoft.AspNetCore.Http.IValueHttpResult.Value.get -> object? +Microsoft.AspNetCore.Http.IValueHttpResult +Microsoft.AspNetCore.Http.IValueHttpResult.Value.get -> TValue? Microsoft.AspNetCore.Http.Metadata.IAcceptsMetadata Microsoft.AspNetCore.Http.Metadata.IAcceptsMetadata.ContentTypes.get -> System.Collections.Generic.IReadOnlyList! Microsoft.AspNetCore.Http.Metadata.IAcceptsMetadata.IsOptional.get -> bool Microsoft.AspNetCore.Http.Metadata.IAcceptsMetadata.RequestType.get -> System.Type? +Microsoft.AspNetCore.Http.Metadata.IEndpointDescriptionMetadata +Microsoft.AspNetCore.Http.Metadata.IEndpointDescriptionMetadata.Description.get -> string! +Microsoft.AspNetCore.Http.Metadata.IEndpointMetadataProvider +Microsoft.AspNetCore.Http.Metadata.IEndpointMetadataProvider.PopulateMetadata(System.Reflection.MethodInfo! method, Microsoft.AspNetCore.Builder.EndpointBuilder! builder) -> void +Microsoft.AspNetCore.Http.Metadata.IEndpointParameterMetadataProvider +Microsoft.AspNetCore.Http.Metadata.IEndpointParameterMetadataProvider.PopulateMetadata(System.Reflection.ParameterInfo! parameter, Microsoft.AspNetCore.Builder.EndpointBuilder! builder) -> void +Microsoft.AspNetCore.Http.Metadata.IEndpointSummaryMetadata +Microsoft.AspNetCore.Http.Metadata.IEndpointSummaryMetadata.Summary.get -> string! Microsoft.AspNetCore.Http.Metadata.IFromBodyMetadata Microsoft.AspNetCore.Http.Metadata.IFromBodyMetadata.AllowEmpty.get -> bool +Microsoft.AspNetCore.Http.Metadata.IFromFormMetadata +Microsoft.AspNetCore.Http.Metadata.IFromFormMetadata.Name.get -> string? Microsoft.AspNetCore.Http.Metadata.IFromHeaderMetadata Microsoft.AspNetCore.Http.Metadata.IFromHeaderMetadata.Name.get -> string? Microsoft.AspNetCore.Http.Metadata.IFromQueryMetadata @@ -292,15 +350,18 @@ Microsoft.AspNetCore.Http.Metadata.IProducesResponseTypeMetadata Microsoft.AspNetCore.Http.Metadata.IProducesResponseTypeMetadata.ContentTypes.get -> System.Collections.Generic.IEnumerable! Microsoft.AspNetCore.Http.Metadata.IProducesResponseTypeMetadata.StatusCode.get -> int Microsoft.AspNetCore.Http.Metadata.IProducesResponseTypeMetadata.Type.get -> System.Type? +Microsoft.AspNetCore.Http.Metadata.IRequestSizeLimitMetadata +Microsoft.AspNetCore.Http.Metadata.IRequestSizeLimitMetadata.MaxRequestBodySize.get -> long? +Microsoft.AspNetCore.Http.Metadata.ISkipStatusCodePagesMetadata Microsoft.AspNetCore.Http.Metadata.ITagsMetadata Microsoft.AspNetCore.Http.Metadata.ITagsMetadata.Tags.get -> System.Collections.Generic.IReadOnlyList! Microsoft.AspNetCore.Http.PathString -Microsoft.AspNetCore.Http.PathString.PathString() -> void Microsoft.AspNetCore.Http.PathString.Add(Microsoft.AspNetCore.Http.PathString other) -> Microsoft.AspNetCore.Http.PathString Microsoft.AspNetCore.Http.PathString.Add(Microsoft.AspNetCore.Http.QueryString other) -> string! Microsoft.AspNetCore.Http.PathString.Equals(Microsoft.AspNetCore.Http.PathString other) -> bool Microsoft.AspNetCore.Http.PathString.Equals(Microsoft.AspNetCore.Http.PathString other, System.StringComparison comparisonType) -> bool Microsoft.AspNetCore.Http.PathString.HasValue.get -> bool +Microsoft.AspNetCore.Http.PathString.PathString() -> void Microsoft.AspNetCore.Http.PathString.PathString(string? value) -> void Microsoft.AspNetCore.Http.PathString.StartsWithSegments(Microsoft.AspNetCore.Http.PathString other) -> bool Microsoft.AspNetCore.Http.PathString.StartsWithSegments(Microsoft.AspNetCore.Http.PathString other, out Microsoft.AspNetCore.Http.PathString matched, out Microsoft.AspNetCore.Http.PathString remaining) -> bool @@ -310,12 +371,20 @@ Microsoft.AspNetCore.Http.PathString.StartsWithSegments(Microsoft.AspNetCore.Htt Microsoft.AspNetCore.Http.PathString.StartsWithSegments(Microsoft.AspNetCore.Http.PathString other, System.StringComparison comparisonType, out Microsoft.AspNetCore.Http.PathString remaining) -> bool Microsoft.AspNetCore.Http.PathString.ToUriComponent() -> string! Microsoft.AspNetCore.Http.PathString.Value.get -> string? +Microsoft.AspNetCore.Http.ProblemDetailsContext +Microsoft.AspNetCore.Http.ProblemDetailsContext.AdditionalMetadata.get -> Microsoft.AspNetCore.Http.EndpointMetadataCollection? +Microsoft.AspNetCore.Http.ProblemDetailsContext.AdditionalMetadata.init -> void +Microsoft.AspNetCore.Http.ProblemDetailsContext.HttpContext.get -> Microsoft.AspNetCore.Http.HttpContext! +Microsoft.AspNetCore.Http.ProblemDetailsContext.HttpContext.init -> void +Microsoft.AspNetCore.Http.ProblemDetailsContext.ProblemDetails.get -> Microsoft.AspNetCore.Mvc.ProblemDetails! +Microsoft.AspNetCore.Http.ProblemDetailsContext.ProblemDetails.init -> void +Microsoft.AspNetCore.Http.ProblemDetailsContext.ProblemDetailsContext() -> void Microsoft.AspNetCore.Http.QueryString -Microsoft.AspNetCore.Http.QueryString.QueryString() -> void Microsoft.AspNetCore.Http.QueryString.Add(Microsoft.AspNetCore.Http.QueryString other) -> Microsoft.AspNetCore.Http.QueryString Microsoft.AspNetCore.Http.QueryString.Add(string! name, string! value) -> Microsoft.AspNetCore.Http.QueryString Microsoft.AspNetCore.Http.QueryString.Equals(Microsoft.AspNetCore.Http.QueryString other) -> bool Microsoft.AspNetCore.Http.QueryString.HasValue.get -> bool +Microsoft.AspNetCore.Http.QueryString.QueryString() -> void Microsoft.AspNetCore.Http.QueryString.QueryString(string? value) -> void Microsoft.AspNetCore.Http.QueryString.ToUriComponent() -> string! Microsoft.AspNetCore.Http.QueryString.Value.get -> string? @@ -329,6 +398,19 @@ Microsoft.AspNetCore.Http.ResponseTrailerExtensions Microsoft.AspNetCore.Http.StatusCodes Microsoft.AspNetCore.Http.WebSocketManager Microsoft.AspNetCore.Http.WebSocketManager.WebSocketManager() -> void +Microsoft.AspNetCore.Mvc.ProblemDetails +Microsoft.AspNetCore.Mvc.ProblemDetails.Detail.get -> string? +Microsoft.AspNetCore.Mvc.ProblemDetails.Detail.set -> void +Microsoft.AspNetCore.Mvc.ProblemDetails.Extensions.get -> System.Collections.Generic.IDictionary! +Microsoft.AspNetCore.Mvc.ProblemDetails.Instance.get -> string? +Microsoft.AspNetCore.Mvc.ProblemDetails.Instance.set -> void +Microsoft.AspNetCore.Mvc.ProblemDetails.ProblemDetails() -> void +Microsoft.AspNetCore.Mvc.ProblemDetails.Status.get -> int? +Microsoft.AspNetCore.Mvc.ProblemDetails.Status.set -> void +Microsoft.AspNetCore.Mvc.ProblemDetails.Title.get -> string? +Microsoft.AspNetCore.Mvc.ProblemDetails.Title.set -> void +Microsoft.AspNetCore.Mvc.ProblemDetails.Type.get -> string? +Microsoft.AspNetCore.Mvc.ProblemDetails.Type.set -> void Microsoft.AspNetCore.Routing.RouteValueDictionary Microsoft.AspNetCore.Routing.RouteValueDictionary.Add(string! key, object? value) -> void Microsoft.AspNetCore.Routing.RouteValueDictionary.Clear() -> void @@ -336,9 +418,9 @@ Microsoft.AspNetCore.Routing.RouteValueDictionary.Comparer.get -> System.Collect Microsoft.AspNetCore.Routing.RouteValueDictionary.ContainsKey(string! key) -> bool Microsoft.AspNetCore.Routing.RouteValueDictionary.Count.get -> int Microsoft.AspNetCore.Routing.RouteValueDictionary.Enumerator -Microsoft.AspNetCore.Routing.RouteValueDictionary.Enumerator.Enumerator() -> void Microsoft.AspNetCore.Routing.RouteValueDictionary.Enumerator.Current.get -> System.Collections.Generic.KeyValuePair Microsoft.AspNetCore.Routing.RouteValueDictionary.Enumerator.Dispose() -> void +Microsoft.AspNetCore.Routing.RouteValueDictionary.Enumerator.Enumerator() -> void Microsoft.AspNetCore.Routing.RouteValueDictionary.Enumerator.Enumerator(Microsoft.AspNetCore.Routing.RouteValueDictionary! dictionary) -> void Microsoft.AspNetCore.Routing.RouteValueDictionary.Enumerator.MoveNext() -> bool Microsoft.AspNetCore.Routing.RouteValueDictionary.Enumerator.Reset() -> void @@ -347,12 +429,18 @@ Microsoft.AspNetCore.Routing.RouteValueDictionary.Keys.get -> System.Collections Microsoft.AspNetCore.Routing.RouteValueDictionary.Remove(string! key) -> bool Microsoft.AspNetCore.Routing.RouteValueDictionary.Remove(string! key, out object? value) -> bool Microsoft.AspNetCore.Routing.RouteValueDictionary.RouteValueDictionary() -> void +Microsoft.AspNetCore.Routing.RouteValueDictionary.RouteValueDictionary(Microsoft.AspNetCore.Routing.RouteValueDictionary? dictionary) -> void Microsoft.AspNetCore.Routing.RouteValueDictionary.RouteValueDictionary(object? values) -> void +Microsoft.AspNetCore.Routing.RouteValueDictionary.RouteValueDictionary(System.Collections.Generic.IEnumerable>? values) -> void +Microsoft.AspNetCore.Routing.RouteValueDictionary.RouteValueDictionary(System.Collections.Generic.IEnumerable>? values) -> void Microsoft.AspNetCore.Routing.RouteValueDictionary.this[string! key].get -> object? Microsoft.AspNetCore.Routing.RouteValueDictionary.this[string! key].set -> void Microsoft.AspNetCore.Routing.RouteValueDictionary.TryAdd(string! key, object? value) -> bool Microsoft.AspNetCore.Routing.RouteValueDictionary.TryGetValue(string! key, out object? value) -> bool Microsoft.AspNetCore.Routing.RouteValueDictionary.Values.get -> System.Collections.Generic.ICollection! +override Microsoft.AspNetCore.Http.DefaultEndpointFilterInvocationContext.Arguments.get -> System.Collections.Generic.IList! +override Microsoft.AspNetCore.Http.DefaultEndpointFilterInvocationContext.GetArgument(int index) -> T +override Microsoft.AspNetCore.Http.DefaultEndpointFilterInvocationContext.HttpContext.get -> Microsoft.AspNetCore.Http.HttpContext! override Microsoft.AspNetCore.Http.Endpoint.ToString() -> string? override Microsoft.AspNetCore.Http.FragmentString.Equals(object? obj) -> bool override Microsoft.AspNetCore.Http.FragmentString.GetHashCode() -> int diff --git a/src/Http/Http.Abstractions/src/PublicAPI.Unshipped.txt b/src/Http/Http.Abstractions/src/PublicAPI.Unshipped.txt index 121083081390..7dc5c58110bf 100644 --- a/src/Http/Http.Abstractions/src/PublicAPI.Unshipped.txt +++ b/src/Http/Http.Abstractions/src/PublicAPI.Unshipped.txt @@ -1,93 +1 @@ #nullable enable -*REMOVED*abstract Microsoft.AspNetCore.Http.HttpResponse.ContentType.get -> string! -*REMOVED*Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.Current.get -> object? -abstract Microsoft.AspNetCore.Http.EndpointFilterInvocationContext.Arguments.get -> System.Collections.Generic.IList! -abstract Microsoft.AspNetCore.Http.EndpointFilterInvocationContext.GetArgument(int index) -> T -abstract Microsoft.AspNetCore.Http.EndpointFilterInvocationContext.HttpContext.get -> Microsoft.AspNetCore.Http.HttpContext! -Microsoft.AspNetCore.Builder.EndpointBuilder.ApplicationServices.get -> System.IServiceProvider! -Microsoft.AspNetCore.Builder.EndpointBuilder.ApplicationServices.init -> void -Microsoft.AspNetCore.Builder.EndpointBuilder.FilterFactories.get -> System.Collections.Generic.IList!>! -Microsoft.AspNetCore.Builder.IEndpointConventionBuilder.Finally(System.Action! finallyConvention) -> void -Microsoft.AspNetCore.Http.AsParametersAttribute -Microsoft.AspNetCore.Http.AsParametersAttribute.AsParametersAttribute() -> void -Microsoft.AspNetCore.Http.CookieBuilder.Extensions.get -> System.Collections.Generic.IList! -Microsoft.AspNetCore.Http.DefaultEndpointFilterInvocationContext -Microsoft.AspNetCore.Http.DefaultEndpointFilterInvocationContext.DefaultEndpointFilterInvocationContext(Microsoft.AspNetCore.Http.HttpContext! httpContext, params object![]! arguments) -> void -Microsoft.AspNetCore.Http.EndpointFilterDelegate -Microsoft.AspNetCore.Http.EndpointFilterFactoryContext -Microsoft.AspNetCore.Http.EndpointFilterFactoryContext.ApplicationServices.get -> System.IServiceProvider! -Microsoft.AspNetCore.Http.EndpointFilterFactoryContext.ApplicationServices.init -> void -Microsoft.AspNetCore.Http.EndpointFilterFactoryContext.EndpointFilterFactoryContext() -> void -Microsoft.AspNetCore.Http.EndpointFilterFactoryContext.MethodInfo.get -> System.Reflection.MethodInfo! -Microsoft.AspNetCore.Http.EndpointFilterFactoryContext.MethodInfo.init -> void -Microsoft.AspNetCore.Http.EndpointFilterInvocationContext -Microsoft.AspNetCore.Http.EndpointFilterInvocationContext.EndpointFilterInvocationContext() -> void -Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.Current.get -> object! -Microsoft.AspNetCore.Http.EndpointMetadataCollection.GetRequiredMetadata() -> T! -Microsoft.AspNetCore.Http.HttpValidationProblemDetails -Microsoft.AspNetCore.Http.HttpValidationProblemDetails.Errors.get -> System.Collections.Generic.IDictionary! -Microsoft.AspNetCore.Http.HttpValidationProblemDetails.HttpValidationProblemDetails() -> void -Microsoft.AspNetCore.Http.HttpValidationProblemDetails.HttpValidationProblemDetails(System.Collections.Generic.IDictionary! errors) -> void -Microsoft.AspNetCore.Http.IBindableFromHttpContext -Microsoft.AspNetCore.Http.IBindableFromHttpContext.BindAsync(Microsoft.AspNetCore.Http.HttpContext! context, System.Reflection.ParameterInfo! parameter) -> System.Threading.Tasks.ValueTask -Microsoft.AspNetCore.Http.IContentTypeHttpResult -Microsoft.AspNetCore.Http.IContentTypeHttpResult.ContentType.get -> string? -Microsoft.AspNetCore.Http.IEndpointFilter -Microsoft.AspNetCore.Http.IEndpointFilter.InvokeAsync(Microsoft.AspNetCore.Http.EndpointFilterInvocationContext! context, Microsoft.AspNetCore.Http.EndpointFilterDelegate! next) -> System.Threading.Tasks.ValueTask -Microsoft.AspNetCore.Http.IFileHttpResult -Microsoft.AspNetCore.Http.IFileHttpResult.ContentType.get -> string? -Microsoft.AspNetCore.Http.IFileHttpResult.FileDownloadName.get -> string? -Microsoft.AspNetCore.Http.IProblemDetailsService -Microsoft.AspNetCore.Http.IProblemDetailsService.WriteAsync(Microsoft.AspNetCore.Http.ProblemDetailsContext! context) -> System.Threading.Tasks.ValueTask -Microsoft.AspNetCore.Http.IProblemDetailsWriter -Microsoft.AspNetCore.Http.INestedHttpResult -Microsoft.AspNetCore.Http.INestedHttpResult.Result.get -> Microsoft.AspNetCore.Http.IResult! -Microsoft.AspNetCore.Http.IProblemDetailsWriter.CanWrite(Microsoft.AspNetCore.Http.ProblemDetailsContext! context) -> bool -Microsoft.AspNetCore.Http.IProblemDetailsWriter.WriteAsync(Microsoft.AspNetCore.Http.ProblemDetailsContext! context) -> System.Threading.Tasks.ValueTask -Microsoft.AspNetCore.Http.IStatusCodeHttpResult -Microsoft.AspNetCore.Http.IStatusCodeHttpResult.StatusCode.get -> int? -Microsoft.AspNetCore.Http.IValueHttpResult -Microsoft.AspNetCore.Http.IValueHttpResult.Value.get -> object? -Microsoft.AspNetCore.Http.IValueHttpResult -Microsoft.AspNetCore.Http.IValueHttpResult.Value.get -> TValue? -Microsoft.AspNetCore.Http.Metadata.IFromFormMetadata -Microsoft.AspNetCore.Http.Metadata.IFromFormMetadata.Name.get -> string? -Microsoft.AspNetCore.Http.Metadata.IRequestSizeLimitMetadata -Microsoft.AspNetCore.Http.Metadata.IRequestSizeLimitMetadata.MaxRequestBodySize.get -> long? -Microsoft.AspNetCore.Http.ProblemDetailsContext -Microsoft.AspNetCore.Http.ProblemDetailsContext.AdditionalMetadata.get -> Microsoft.AspNetCore.Http.EndpointMetadataCollection? -Microsoft.AspNetCore.Http.ProblemDetailsContext.AdditionalMetadata.init -> void -Microsoft.AspNetCore.Http.ProblemDetailsContext.HttpContext.get -> Microsoft.AspNetCore.Http.HttpContext! -Microsoft.AspNetCore.Http.ProblemDetailsContext.HttpContext.init -> void -Microsoft.AspNetCore.Http.ProblemDetailsContext.ProblemDetails.get -> Microsoft.AspNetCore.Mvc.ProblemDetails! -Microsoft.AspNetCore.Http.ProblemDetailsContext.ProblemDetails.init -> void -Microsoft.AspNetCore.Http.ProblemDetailsContext.ProblemDetailsContext() -> void -Microsoft.AspNetCore.Routing.RouteValueDictionary.RouteValueDictionary(Microsoft.AspNetCore.Routing.RouteValueDictionary? dictionary) -> void -Microsoft.AspNetCore.Routing.RouteValueDictionary.RouteValueDictionary(System.Collections.Generic.IEnumerable>? values) -> void -Microsoft.AspNetCore.Routing.RouteValueDictionary.RouteValueDictionary(System.Collections.Generic.IEnumerable>? values) -> void -abstract Microsoft.AspNetCore.Http.HttpResponse.ContentType.get -> string? -Microsoft.AspNetCore.Http.Metadata.ISkipStatusCodePagesMetadata -Microsoft.AspNetCore.Http.Metadata.IEndpointDescriptionMetadata -Microsoft.AspNetCore.Http.Metadata.IEndpointDescriptionMetadata.Description.get -> string! -Microsoft.AspNetCore.Http.Metadata.IEndpointMetadataProvider -Microsoft.AspNetCore.Http.Metadata.IEndpointMetadataProvider.PopulateMetadata(System.Reflection.MethodInfo! method, Microsoft.AspNetCore.Builder.EndpointBuilder! builder) -> void -Microsoft.AspNetCore.Http.Metadata.IEndpointParameterMetadataProvider -Microsoft.AspNetCore.Http.Metadata.IEndpointParameterMetadataProvider.PopulateMetadata(System.Reflection.ParameterInfo! parameter, Microsoft.AspNetCore.Builder.EndpointBuilder! builder) -> void -Microsoft.AspNetCore.Http.Metadata.IEndpointSummaryMetadata -Microsoft.AspNetCore.Http.Metadata.IEndpointSummaryMetadata.Summary.get -> string! -Microsoft.AspNetCore.Mvc.ProblemDetails -Microsoft.AspNetCore.Mvc.ProblemDetails.Detail.get -> string? -Microsoft.AspNetCore.Mvc.ProblemDetails.Detail.set -> void -Microsoft.AspNetCore.Mvc.ProblemDetails.Extensions.get -> System.Collections.Generic.IDictionary! -Microsoft.AspNetCore.Mvc.ProblemDetails.Instance.get -> string? -Microsoft.AspNetCore.Mvc.ProblemDetails.Instance.set -> void -Microsoft.AspNetCore.Mvc.ProblemDetails.ProblemDetails() -> void -Microsoft.AspNetCore.Mvc.ProblemDetails.Status.get -> int? -Microsoft.AspNetCore.Mvc.ProblemDetails.Status.set -> void -Microsoft.AspNetCore.Mvc.ProblemDetails.Title.get -> string? -Microsoft.AspNetCore.Mvc.ProblemDetails.Title.set -> void -Microsoft.AspNetCore.Mvc.ProblemDetails.Type.get -> string? -Microsoft.AspNetCore.Mvc.ProblemDetails.Type.set -> void -override Microsoft.AspNetCore.Http.DefaultEndpointFilterInvocationContext.Arguments.get -> System.Collections.Generic.IList! -override Microsoft.AspNetCore.Http.DefaultEndpointFilterInvocationContext.GetArgument(int index) -> T -override Microsoft.AspNetCore.Http.DefaultEndpointFilterInvocationContext.HttpContext.get -> Microsoft.AspNetCore.Http.HttpContext! diff --git a/src/Http/Http.Extensions/src/PublicAPI.Shipped.txt b/src/Http/Http.Extensions/src/PublicAPI.Shipped.txt index 3a5c48021f8e..8953eabfd42b 100644 --- a/src/Http/Http.Extensions/src/PublicAPI.Shipped.txt +++ b/src/Http/Http.Extensions/src/PublicAPI.Shipped.txt @@ -1,4 +1,10 @@ #nullable enable +Microsoft.AspNetCore.Http.EndpointDescriptionAttribute +Microsoft.AspNetCore.Http.EndpointDescriptionAttribute.Description.get -> string! +Microsoft.AspNetCore.Http.EndpointDescriptionAttribute.EndpointDescriptionAttribute(string! description) -> void +Microsoft.AspNetCore.Http.EndpointSummaryAttribute +Microsoft.AspNetCore.Http.EndpointSummaryAttribute.EndpointSummaryAttribute(string! summary) -> void +Microsoft.AspNetCore.Http.EndpointSummaryAttribute.Summary.get -> string! Microsoft.AspNetCore.Http.Extensions.HttpRequestMultipartExtensions Microsoft.AspNetCore.Http.Extensions.QueryBuilder Microsoft.AspNetCore.Http.Extensions.QueryBuilder.Add(string! key, string! value) -> void @@ -96,17 +102,23 @@ Microsoft.AspNetCore.Http.Headers.ResponseHeaders.SetList(string! name, Syste Microsoft.AspNetCore.Http.HttpContextServerVariableExtensions Microsoft.AspNetCore.Http.HttpRequestJsonExtensions Microsoft.AspNetCore.Http.HttpResponseJsonExtensions -Microsoft.AspNetCore.Http.HttpValidationProblemDetails -Microsoft.AspNetCore.Http.HttpValidationProblemDetails.Errors.get -> System.Collections.Generic.IDictionary! -Microsoft.AspNetCore.Http.HttpValidationProblemDetails.HttpValidationProblemDetails() -> void -Microsoft.AspNetCore.Http.HttpValidationProblemDetails.HttpValidationProblemDetails(System.Collections.Generic.IDictionary! errors) -> void +Microsoft.AspNetCore.Http.HttpValidationProblemDetails (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Http.HttpValidationProblemDetails.Errors.get -> System.Collections.Generic.IDictionary! (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Http.HttpValidationProblemDetails.HttpValidationProblemDetails() -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Http.HttpValidationProblemDetails.HttpValidationProblemDetails(System.Collections.Generic.IDictionary! errors) -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) Microsoft.AspNetCore.Http.Json.JsonOptions Microsoft.AspNetCore.Http.Json.JsonOptions.JsonOptions() -> void Microsoft.AspNetCore.Http.Json.JsonOptions.SerializerOptions.get -> System.Text.Json.JsonSerializerOptions! +Microsoft.AspNetCore.Http.ProblemDetailsOptions +Microsoft.AspNetCore.Http.ProblemDetailsOptions.CustomizeProblemDetails.get -> System.Action? +Microsoft.AspNetCore.Http.ProblemDetailsOptions.CustomizeProblemDetails.set -> void +Microsoft.AspNetCore.Http.ProblemDetailsOptions.ProblemDetailsOptions() -> void Microsoft.AspNetCore.Http.RequestDelegateFactory Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions.DisableInferBodyFromParameters.get -> bool Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions.DisableInferBodyFromParameters.init -> void +Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions.EndpointBuilder.get -> Microsoft.AspNetCore.Builder.EndpointBuilder? +Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions.EndpointBuilder.init -> void Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions.RequestDelegateFactoryOptions() -> void Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions.RouteParameterNames.get -> System.Collections.Generic.IEnumerable? Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions.RouteParameterNames.init -> void @@ -114,25 +126,31 @@ Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions.ServiceProvider.get -> S Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions.ServiceProvider.init -> void Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions.ThrowOnBadRequest.get -> bool Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions.ThrowOnBadRequest.init -> void +Microsoft.AspNetCore.Http.RequestDelegateMetadataResult +Microsoft.AspNetCore.Http.RequestDelegateMetadataResult.EndpointMetadata.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.AspNetCore.Http.RequestDelegateMetadataResult.EndpointMetadata.init -> void +Microsoft.AspNetCore.Http.RequestDelegateMetadataResult.RequestDelegateMetadataResult() -> void Microsoft.AspNetCore.Http.ResponseExtensions Microsoft.AspNetCore.Http.SendFileResponseExtensions Microsoft.AspNetCore.Http.SessionExtensions Microsoft.AspNetCore.Http.TagsAttribute Microsoft.AspNetCore.Http.TagsAttribute.Tags.get -> System.Collections.Generic.IReadOnlyList! Microsoft.AspNetCore.Http.TagsAttribute.TagsAttribute(params string![]! tags) -> void -Microsoft.AspNetCore.Mvc.ProblemDetails -Microsoft.AspNetCore.Mvc.ProblemDetails.Detail.get -> string? -Microsoft.AspNetCore.Mvc.ProblemDetails.Detail.set -> void -Microsoft.AspNetCore.Mvc.ProblemDetails.Extensions.get -> System.Collections.Generic.IDictionary! -Microsoft.AspNetCore.Mvc.ProblemDetails.Instance.get -> string? -Microsoft.AspNetCore.Mvc.ProblemDetails.Instance.set -> void -Microsoft.AspNetCore.Mvc.ProblemDetails.ProblemDetails() -> void -Microsoft.AspNetCore.Mvc.ProblemDetails.Status.get -> int? -Microsoft.AspNetCore.Mvc.ProblemDetails.Status.set -> void -Microsoft.AspNetCore.Mvc.ProblemDetails.Title.get -> string? -Microsoft.AspNetCore.Mvc.ProblemDetails.Title.set -> void -Microsoft.AspNetCore.Mvc.ProblemDetails.Type.get -> string? -Microsoft.AspNetCore.Mvc.ProblemDetails.Type.set -> void +Microsoft.AspNetCore.Mvc.ProblemDetails (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Mvc.ProblemDetails.Detail.get -> string? (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Mvc.ProblemDetails.Detail.set -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Mvc.ProblemDetails.Extensions.get -> System.Collections.Generic.IDictionary! (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Mvc.ProblemDetails.Instance.get -> string? (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Mvc.ProblemDetails.Instance.set -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Mvc.ProblemDetails.ProblemDetails() -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Mvc.ProblemDetails.Status.get -> int? (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Mvc.ProblemDetails.Status.set -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Mvc.ProblemDetails.Title.get -> string? (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Mvc.ProblemDetails.Title.set -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Mvc.ProblemDetails.Type.get -> string? (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Mvc.ProblemDetails.Type.set -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.Extensions.DependencyInjection.HttpJsonServiceExtensions +Microsoft.Extensions.DependencyInjection.ProblemDetailsServiceCollectionExtensions override Microsoft.AspNetCore.Http.Extensions.QueryBuilder.Equals(object? obj) -> bool override Microsoft.AspNetCore.Http.Extensions.QueryBuilder.GetHashCode() -> int override Microsoft.AspNetCore.Http.Extensions.QueryBuilder.ToString() -> string! @@ -152,17 +170,24 @@ static Microsoft.AspNetCore.Http.HeaderDictionaryTypeExtensions.GetTypedHeaders( static Microsoft.AspNetCore.Http.HttpContextServerVariableExtensions.GetServerVariable(this Microsoft.AspNetCore.Http.HttpContext! context, string! variableName) -> string? static Microsoft.AspNetCore.Http.HttpRequestJsonExtensions.HasJsonContentType(this Microsoft.AspNetCore.Http.HttpRequest! request) -> bool static Microsoft.AspNetCore.Http.HttpRequestJsonExtensions.ReadFromJsonAsync(this Microsoft.AspNetCore.Http.HttpRequest! request, System.Type! type, System.Text.Json.JsonSerializerOptions? options, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask +static Microsoft.AspNetCore.Http.HttpRequestJsonExtensions.ReadFromJsonAsync(this Microsoft.AspNetCore.Http.HttpRequest! request, System.Type! type, System.Text.Json.Serialization.JsonSerializerContext! context, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask static Microsoft.AspNetCore.Http.HttpRequestJsonExtensions.ReadFromJsonAsync(this Microsoft.AspNetCore.Http.HttpRequest! request, System.Type! type, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask static Microsoft.AspNetCore.Http.HttpRequestJsonExtensions.ReadFromJsonAsync(this Microsoft.AspNetCore.Http.HttpRequest! request, System.Text.Json.JsonSerializerOptions? options, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask +static Microsoft.AspNetCore.Http.HttpRequestJsonExtensions.ReadFromJsonAsync(this Microsoft.AspNetCore.Http.HttpRequest! request, System.Text.Json.Serialization.Metadata.JsonTypeInfo! jsonTypeInfo, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask static Microsoft.AspNetCore.Http.HttpRequestJsonExtensions.ReadFromJsonAsync(this Microsoft.AspNetCore.Http.HttpRequest! request, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask static Microsoft.AspNetCore.Http.HttpResponseJsonExtensions.WriteAsJsonAsync(this Microsoft.AspNetCore.Http.HttpResponse! response, object? value, System.Type! type, System.Text.Json.JsonSerializerOptions? options, string? contentType, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! static Microsoft.AspNetCore.Http.HttpResponseJsonExtensions.WriteAsJsonAsync(this Microsoft.AspNetCore.Http.HttpResponse! response, object? value, System.Type! type, System.Text.Json.JsonSerializerOptions? options, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +static Microsoft.AspNetCore.Http.HttpResponseJsonExtensions.WriteAsJsonAsync(this Microsoft.AspNetCore.Http.HttpResponse! response, object? value, System.Type! type, System.Text.Json.Serialization.JsonSerializerContext! context, string? contentType = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! static Microsoft.AspNetCore.Http.HttpResponseJsonExtensions.WriteAsJsonAsync(this Microsoft.AspNetCore.Http.HttpResponse! response, object? value, System.Type! type, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! static Microsoft.AspNetCore.Http.HttpResponseJsonExtensions.WriteAsJsonAsync(this Microsoft.AspNetCore.Http.HttpResponse! response, TValue value, System.Text.Json.JsonSerializerOptions? options, string? contentType, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! static Microsoft.AspNetCore.Http.HttpResponseJsonExtensions.WriteAsJsonAsync(this Microsoft.AspNetCore.Http.HttpResponse! response, TValue value, System.Text.Json.JsonSerializerOptions? options, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +static Microsoft.AspNetCore.Http.HttpResponseJsonExtensions.WriteAsJsonAsync(this Microsoft.AspNetCore.Http.HttpResponse! response, TValue value, System.Text.Json.Serialization.Metadata.JsonTypeInfo! jsonTypeInfo, string? contentType = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! static Microsoft.AspNetCore.Http.HttpResponseJsonExtensions.WriteAsJsonAsync(this Microsoft.AspNetCore.Http.HttpResponse! response, TValue value, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! -static Microsoft.AspNetCore.Http.RequestDelegateFactory.Create(System.Delegate! handler, Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions? options = null) -> Microsoft.AspNetCore.Http.RequestDelegateResult! -static Microsoft.AspNetCore.Http.RequestDelegateFactory.Create(System.Reflection.MethodInfo! methodInfo, System.Func? targetFactory = null, Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions? options = null) -> Microsoft.AspNetCore.Http.RequestDelegateResult! +static Microsoft.AspNetCore.Http.RequestDelegateFactory.Create(System.Delegate! handler, Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions? options = null, Microsoft.AspNetCore.Http.RequestDelegateMetadataResult? metadataResult = null) -> Microsoft.AspNetCore.Http.RequestDelegateResult! +static Microsoft.AspNetCore.Http.RequestDelegateFactory.Create(System.Delegate! handler, Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions? options) -> Microsoft.AspNetCore.Http.RequestDelegateResult! +static Microsoft.AspNetCore.Http.RequestDelegateFactory.Create(System.Reflection.MethodInfo! methodInfo, System.Func? targetFactory = null, Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions? options = null, Microsoft.AspNetCore.Http.RequestDelegateMetadataResult? metadataResult = null) -> Microsoft.AspNetCore.Http.RequestDelegateResult! +static Microsoft.AspNetCore.Http.RequestDelegateFactory.Create(System.Reflection.MethodInfo! methodInfo, System.Func? targetFactory, Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions? options) -> Microsoft.AspNetCore.Http.RequestDelegateResult! +static Microsoft.AspNetCore.Http.RequestDelegateFactory.InferMetadata(System.Reflection.MethodInfo! methodInfo, Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions? options = null) -> Microsoft.AspNetCore.Http.RequestDelegateMetadataResult! static Microsoft.AspNetCore.Http.ResponseExtensions.Clear(this Microsoft.AspNetCore.Http.HttpResponse! response) -> void static Microsoft.AspNetCore.Http.ResponseExtensions.Redirect(this Microsoft.AspNetCore.Http.HttpResponse! response, string! location, bool permanent, bool preserveMethod) -> void static Microsoft.AspNetCore.Http.SendFileResponseExtensions.SendFileAsync(this Microsoft.AspNetCore.Http.HttpResponse! response, Microsoft.Extensions.FileProviders.IFileInfo! file, long offset, long? count, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! @@ -174,3 +199,6 @@ static Microsoft.AspNetCore.Http.SessionExtensions.GetInt32(this Microsoft.AspNe static Microsoft.AspNetCore.Http.SessionExtensions.GetString(this Microsoft.AspNetCore.Http.ISession! session, string! key) -> string? static Microsoft.AspNetCore.Http.SessionExtensions.SetInt32(this Microsoft.AspNetCore.Http.ISession! session, string! key, int value) -> void static Microsoft.AspNetCore.Http.SessionExtensions.SetString(this Microsoft.AspNetCore.Http.ISession! session, string! key, string! value) -> void +static Microsoft.Extensions.DependencyInjection.HttpJsonServiceExtensions.ConfigureHttpJsonOptions(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action! configureOptions) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +static Microsoft.Extensions.DependencyInjection.ProblemDetailsServiceCollectionExtensions.AddProblemDetails(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +static Microsoft.Extensions.DependencyInjection.ProblemDetailsServiceCollectionExtensions.AddProblemDetails(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action? configure) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! diff --git a/src/Http/Http.Extensions/src/PublicAPI.Unshipped.txt b/src/Http/Http.Extensions/src/PublicAPI.Unshipped.txt index 6945deb350e5..7dc5c58110bf 100644 --- a/src/Http/Http.Extensions/src/PublicAPI.Unshipped.txt +++ b/src/Http/Http.Extensions/src/PublicAPI.Unshipped.txt @@ -1,67 +1 @@ #nullable enable -*REMOVED*Microsoft.AspNetCore.Http.HttpValidationProblemDetails -*REMOVED*Microsoft.AspNetCore.Http.HttpValidationProblemDetails.Errors.get -> System.Collections.Generic.IDictionary! -*REMOVED*Microsoft.AspNetCore.Http.HttpValidationProblemDetails.HttpValidationProblemDetails() -> void -*REMOVED*Microsoft.AspNetCore.Http.HttpValidationProblemDetails.HttpValidationProblemDetails(System.Collections.Generic.IDictionary! errors) -> void -Microsoft.AspNetCore.Http.HttpValidationProblemDetails (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Http.HttpValidationProblemDetails.Errors.get -> System.Collections.Generic.IDictionary! (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Http.HttpValidationProblemDetails.HttpValidationProblemDetails() -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Http.HttpValidationProblemDetails.HttpValidationProblemDetails(System.Collections.Generic.IDictionary! errors) -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Http.ProblemDetailsOptions -Microsoft.AspNetCore.Http.ProblemDetailsOptions.CustomizeProblemDetails.get -> System.Action? -Microsoft.AspNetCore.Http.ProblemDetailsOptions.CustomizeProblemDetails.set -> void -Microsoft.AspNetCore.Http.ProblemDetailsOptions.ProblemDetailsOptions() -> void -*REMOVED*Microsoft.AspNetCore.Mvc.ProblemDetails -*REMOVED*Microsoft.AspNetCore.Mvc.ProblemDetails.Detail.get -> string? -*REMOVED*Microsoft.AspNetCore.Mvc.ProblemDetails.Detail.set -> void -*REMOVED*Microsoft.AspNetCore.Mvc.ProblemDetails.Extensions.get -> System.Collections.Generic.IDictionary! -*REMOVED*Microsoft.AspNetCore.Mvc.ProblemDetails.Instance.get -> string? -*REMOVED*Microsoft.AspNetCore.Mvc.ProblemDetails.Instance.set -> void -*REMOVED*Microsoft.AspNetCore.Mvc.ProblemDetails.ProblemDetails() -> void -*REMOVED*Microsoft.AspNetCore.Mvc.ProblemDetails.Status.get -> int? -*REMOVED*Microsoft.AspNetCore.Mvc.ProblemDetails.Status.set -> void -*REMOVED*Microsoft.AspNetCore.Mvc.ProblemDetails.Title.get -> string? -*REMOVED*Microsoft.AspNetCore.Mvc.ProblemDetails.Title.set -> void -*REMOVED*Microsoft.AspNetCore.Mvc.ProblemDetails.Type.get -> string? -*REMOVED*Microsoft.AspNetCore.Mvc.ProblemDetails.Type.set -> void -Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions.EndpointBuilder.get -> Microsoft.AspNetCore.Builder.EndpointBuilder? -Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions.EndpointBuilder.init -> void -Microsoft.AspNetCore.Http.RequestDelegateMetadataResult -Microsoft.AspNetCore.Http.RequestDelegateMetadataResult.EndpointMetadata.get -> System.Collections.Generic.IReadOnlyList! -Microsoft.AspNetCore.Http.RequestDelegateMetadataResult.EndpointMetadata.init -> void -Microsoft.AspNetCore.Http.RequestDelegateMetadataResult.RequestDelegateMetadataResult() -> void -Microsoft.AspNetCore.Mvc.ProblemDetails (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ProblemDetails.Detail.get -> string? (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ProblemDetails.Detail.set -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ProblemDetails.Extensions.get -> System.Collections.Generic.IDictionary! (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ProblemDetails.Instance.get -> string? (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ProblemDetails.Instance.set -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ProblemDetails.ProblemDetails() -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ProblemDetails.Status.get -> int? (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ProblemDetails.Status.set -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ProblemDetails.Title.get -> string? (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ProblemDetails.Title.set -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ProblemDetails.Type.get -> string? (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ProblemDetails.Type.set -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.Extensions.DependencyInjection.ProblemDetailsServiceCollectionExtensions -Microsoft.Extensions.DependencyInjection.HttpJsonServiceExtensions -static Microsoft.AspNetCore.Http.HttpRequestJsonExtensions.ReadFromJsonAsync(this Microsoft.AspNetCore.Http.HttpRequest! request, System.Type! type, System.Text.Json.Serialization.JsonSerializerContext! context, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask -static Microsoft.AspNetCore.Http.HttpRequestJsonExtensions.ReadFromJsonAsync(this Microsoft.AspNetCore.Http.HttpRequest! request, System.Text.Json.Serialization.Metadata.JsonTypeInfo! jsonTypeInfo, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask -static Microsoft.AspNetCore.Http.HttpResponseJsonExtensions.WriteAsJsonAsync(this Microsoft.AspNetCore.Http.HttpResponse! response, object? value, System.Type! type, System.Text.Json.Serialization.JsonSerializerContext! context, string? contentType = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! -static Microsoft.AspNetCore.Http.HttpResponseJsonExtensions.WriteAsJsonAsync(this Microsoft.AspNetCore.Http.HttpResponse! response, TValue value, System.Text.Json.Serialization.Metadata.JsonTypeInfo! jsonTypeInfo, string? contentType = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! -*REMOVED*static Microsoft.AspNetCore.Http.RequestDelegateFactory.Create(System.Delegate! handler, Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions? options = null) -> Microsoft.AspNetCore.Http.RequestDelegateResult! -*REMOVED*static Microsoft.AspNetCore.Http.RequestDelegateFactory.Create(System.Reflection.MethodInfo! methodInfo, System.Func? targetFactory = null, Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions? options = null) -> Microsoft.AspNetCore.Http.RequestDelegateResult! -static Microsoft.AspNetCore.Http.RequestDelegateFactory.Create(System.Delegate! handler, Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions? options = null, Microsoft.AspNetCore.Http.RequestDelegateMetadataResult? metadataResult = null) -> Microsoft.AspNetCore.Http.RequestDelegateResult! -static Microsoft.AspNetCore.Http.RequestDelegateFactory.Create(System.Delegate! handler, Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions? options) -> Microsoft.AspNetCore.Http.RequestDelegateResult! -static Microsoft.AspNetCore.Http.RequestDelegateFactory.Create(System.Reflection.MethodInfo! methodInfo, System.Func? targetFactory = null, Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions? options = null, Microsoft.AspNetCore.Http.RequestDelegateMetadataResult? metadataResult = null) -> Microsoft.AspNetCore.Http.RequestDelegateResult! -static Microsoft.AspNetCore.Http.RequestDelegateFactory.Create(System.Reflection.MethodInfo! methodInfo, System.Func? targetFactory, Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions? options) -> Microsoft.AspNetCore.Http.RequestDelegateResult! -static Microsoft.AspNetCore.Http.RequestDelegateFactory.InferMetadata(System.Reflection.MethodInfo! methodInfo, Microsoft.AspNetCore.Http.RequestDelegateFactoryOptions? options = null) -> Microsoft.AspNetCore.Http.RequestDelegateMetadataResult! -static Microsoft.Extensions.DependencyInjection.ProblemDetailsServiceCollectionExtensions.AddProblemDetails(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! -static Microsoft.Extensions.DependencyInjection.ProblemDetailsServiceCollectionExtensions.AddProblemDetails(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action? configure) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! -static Microsoft.Extensions.DependencyInjection.HttpJsonServiceExtensions.ConfigureHttpJsonOptions(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action! configureOptions) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! -Microsoft.AspNetCore.Http.EndpointDescriptionAttribute -Microsoft.AspNetCore.Http.EndpointDescriptionAttribute.EndpointDescriptionAttribute(string! description) -> void -Microsoft.AspNetCore.Http.EndpointDescriptionAttribute.Description.get -> string! -Microsoft.AspNetCore.Http.EndpointSummaryAttribute -Microsoft.AspNetCore.Http.EndpointSummaryAttribute.EndpointSummaryAttribute(string! summary) -> void -Microsoft.AspNetCore.Http.EndpointSummaryAttribute.Summary.get -> string! diff --git a/src/Http/Http.Features/src/PublicAPI.Shipped.txt b/src/Http/Http.Features/src/PublicAPI.Shipped.txt index edea6b0a6289..460a2f78cfca 100644 --- a/src/Http/Http.Features/src/PublicAPI.Shipped.txt +++ b/src/Http/Http.Features/src/PublicAPI.Shipped.txt @@ -1,25 +1,13 @@ #nullable enable -Microsoft.AspNetCore.Http.Features.FeatureReference (forwarded, contained in Microsoft.Extensions.Features) -Microsoft.AspNetCore.Http.Features.FeatureReference.Fetch(Microsoft.AspNetCore.Http.Features.IFeatureCollection! features) -> T? (forwarded, contained in Microsoft.Extensions.Features) -Microsoft.AspNetCore.Http.Features.FeatureReference.Update(Microsoft.AspNetCore.Http.Features.IFeatureCollection! features, T feature) -> T (forwarded, contained in Microsoft.Extensions.Features) -static readonly Microsoft.AspNetCore.Http.Features.FeatureReference.Default -> Microsoft.AspNetCore.Http.Features.FeatureReference (forwarded, contained in Microsoft.Extensions.Features) -Microsoft.AspNetCore.Http.Features.FeatureReference.FeatureReference() -> void (forwarded, contained in Microsoft.Extensions.Features) -Microsoft.AspNetCore.Http.Features.FeatureReferences (forwarded, contained in Microsoft.Extensions.Features) -Microsoft.AspNetCore.Http.Features.FeatureReferences.Cache -> TCache? (forwarded, contained in Microsoft.Extensions.Features) -Microsoft.AspNetCore.Http.Features.FeatureReferences.Collection.get -> Microsoft.AspNetCore.Http.Features.IFeatureCollection! (forwarded, contained in Microsoft.Extensions.Features) -Microsoft.AspNetCore.Http.Features.FeatureReferences.FeatureReferences(Microsoft.AspNetCore.Http.Features.IFeatureCollection! collection) -> void (forwarded, contained in Microsoft.Extensions.Features) -Microsoft.AspNetCore.Http.Features.FeatureReferences.Fetch(ref TFeature? cached, TState state, System.Func! factory) -> TFeature? (forwarded, contained in Microsoft.Extensions.Features) -Microsoft.AspNetCore.Http.Features.FeatureReferences.Fetch(ref TFeature? cached, System.Func! factory) -> TFeature? (forwarded, contained in Microsoft.Extensions.Features) -Microsoft.AspNetCore.Http.Features.FeatureReferences.Initalize(Microsoft.AspNetCore.Http.Features.IFeatureCollection! collection) -> void (forwarded, contained in Microsoft.Extensions.Features) -Microsoft.AspNetCore.Http.Features.FeatureReferences.Initalize(Microsoft.AspNetCore.Http.Features.IFeatureCollection! collection, int revision) -> void (forwarded, contained in Microsoft.Extensions.Features) -Microsoft.AspNetCore.Http.Features.FeatureReferences.FeatureReferences() -> void (forwarded, contained in Microsoft.Extensions.Features) -Microsoft.AspNetCore.Http.Features.FeatureReferences.Revision.get -> int (forwarded, contained in Microsoft.Extensions.Features) Microsoft.AspNetCore.Http.CookieOptions Microsoft.AspNetCore.Http.CookieOptions.CookieOptions() -> void +Microsoft.AspNetCore.Http.CookieOptions.CookieOptions(Microsoft.AspNetCore.Http.CookieOptions! options) -> void +Microsoft.AspNetCore.Http.CookieOptions.CreateCookieHeader(string! name, string! value) -> Microsoft.Net.Http.Headers.SetCookieHeaderValue! Microsoft.AspNetCore.Http.CookieOptions.Domain.get -> string? Microsoft.AspNetCore.Http.CookieOptions.Domain.set -> void Microsoft.AspNetCore.Http.CookieOptions.Expires.get -> System.DateTimeOffset? Microsoft.AspNetCore.Http.CookieOptions.Expires.set -> void +Microsoft.AspNetCore.Http.CookieOptions.Extensions.get -> System.Collections.Generic.IList! Microsoft.AspNetCore.Http.CookieOptions.HttpOnly.get -> bool Microsoft.AspNetCore.Http.CookieOptions.HttpOnly.set -> void Microsoft.AspNetCore.Http.CookieOptions.IsEssential.get -> bool @@ -45,6 +33,20 @@ Microsoft.AspNetCore.Http.Features.FeatureCollection.IsReadOnly.get -> bool (for Microsoft.AspNetCore.Http.Features.FeatureCollection.Set(TFeature? instance) -> void (forwarded, contained in Microsoft.Extensions.Features) Microsoft.AspNetCore.Http.Features.FeatureCollection.this[System.Type! key].get -> object? (forwarded, contained in Microsoft.Extensions.Features) Microsoft.AspNetCore.Http.Features.FeatureCollection.this[System.Type! key].set -> void (forwarded, contained in Microsoft.Extensions.Features) +Microsoft.AspNetCore.Http.Features.FeatureReference (forwarded, contained in Microsoft.Extensions.Features) +Microsoft.AspNetCore.Http.Features.FeatureReference.FeatureReference() -> void (forwarded, contained in Microsoft.Extensions.Features) +Microsoft.AspNetCore.Http.Features.FeatureReference.Fetch(Microsoft.AspNetCore.Http.Features.IFeatureCollection! features) -> T? (forwarded, contained in Microsoft.Extensions.Features) +Microsoft.AspNetCore.Http.Features.FeatureReference.Update(Microsoft.AspNetCore.Http.Features.IFeatureCollection! features, T feature) -> T (forwarded, contained in Microsoft.Extensions.Features) +Microsoft.AspNetCore.Http.Features.FeatureReferences (forwarded, contained in Microsoft.Extensions.Features) +Microsoft.AspNetCore.Http.Features.FeatureReferences.Cache -> TCache? (forwarded, contained in Microsoft.Extensions.Features) +Microsoft.AspNetCore.Http.Features.FeatureReferences.Collection.get -> Microsoft.AspNetCore.Http.Features.IFeatureCollection! (forwarded, contained in Microsoft.Extensions.Features) +Microsoft.AspNetCore.Http.Features.FeatureReferences.FeatureReferences() -> void (forwarded, contained in Microsoft.Extensions.Features) +Microsoft.AspNetCore.Http.Features.FeatureReferences.FeatureReferences(Microsoft.AspNetCore.Http.Features.IFeatureCollection! collection) -> void (forwarded, contained in Microsoft.Extensions.Features) +Microsoft.AspNetCore.Http.Features.FeatureReferences.Fetch(ref TFeature? cached, TState state, System.Func! factory) -> TFeature? (forwarded, contained in Microsoft.Extensions.Features) +Microsoft.AspNetCore.Http.Features.FeatureReferences.Fetch(ref TFeature? cached, System.Func! factory) -> TFeature? (forwarded, contained in Microsoft.Extensions.Features) +Microsoft.AspNetCore.Http.Features.FeatureReferences.Initalize(Microsoft.AspNetCore.Http.Features.IFeatureCollection! collection) -> void (forwarded, contained in Microsoft.Extensions.Features) +Microsoft.AspNetCore.Http.Features.FeatureReferences.Initalize(Microsoft.AspNetCore.Http.Features.IFeatureCollection! collection, int revision) -> void (forwarded, contained in Microsoft.Extensions.Features) +Microsoft.AspNetCore.Http.Features.FeatureReferences.Revision.get -> int (forwarded, contained in Microsoft.Extensions.Features) Microsoft.AspNetCore.Http.Features.HttpsCompressionMode Microsoft.AspNetCore.Http.Features.HttpsCompressionMode.Compress = 2 -> Microsoft.AspNetCore.Http.Features.HttpsCompressionMode Microsoft.AspNetCore.Http.Features.HttpsCompressionMode.Default = 0 -> Microsoft.AspNetCore.Http.Features.HttpsCompressionMode @@ -78,6 +80,10 @@ Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature.RemoteIpAddress.get -> Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature.RemoteIpAddress.set -> void Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature.RemotePort.get -> int Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature.RemotePort.set -> void +Microsoft.AspNetCore.Http.Features.IHttpExtendedConnectFeature +Microsoft.AspNetCore.Http.Features.IHttpExtendedConnectFeature.AcceptAsync() -> System.Threading.Tasks.ValueTask +Microsoft.AspNetCore.Http.Features.IHttpExtendedConnectFeature.IsExtendedConnect.get -> bool +Microsoft.AspNetCore.Http.Features.IHttpExtendedConnectFeature.Protocol.get -> string? Microsoft.AspNetCore.Http.Features.IHttpMaxRequestBodySizeFeature Microsoft.AspNetCore.Http.Features.IHttpMaxRequestBodySizeFeature.IsReadOnly.get -> bool Microsoft.AspNetCore.Http.Features.IHttpMaxRequestBodySizeFeature.MaxRequestBodySize.get -> long? @@ -146,6 +152,9 @@ Microsoft.AspNetCore.Http.Features.IHttpUpgradeFeature.UpgradeAsync() -> System. Microsoft.AspNetCore.Http.Features.IHttpWebSocketFeature Microsoft.AspNetCore.Http.Features.IHttpWebSocketFeature.AcceptAsync(Microsoft.AspNetCore.Http.WebSocketAcceptContext! context) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Http.Features.IHttpWebSocketFeature.IsWebSocketRequest.get -> bool +Microsoft.AspNetCore.Http.Features.IHttpWebTransportFeature +Microsoft.AspNetCore.Http.Features.IHttpWebTransportFeature.AcceptAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask +Microsoft.AspNetCore.Http.Features.IHttpWebTransportFeature.IsWebTransportRequest.get -> bool Microsoft.AspNetCore.Http.Features.IItemsFeature Microsoft.AspNetCore.Http.Features.IItemsFeature.Items.get -> System.Collections.Generic.IDictionary! Microsoft.AspNetCore.Http.Features.IItemsFeature.Items.set -> void @@ -182,6 +191,11 @@ Microsoft.AspNetCore.Http.Features.ITrackingConsentFeature.GrantConsent() -> voi Microsoft.AspNetCore.Http.Features.ITrackingConsentFeature.HasConsent.get -> bool Microsoft.AspNetCore.Http.Features.ITrackingConsentFeature.IsConsentNeeded.get -> bool Microsoft.AspNetCore.Http.Features.ITrackingConsentFeature.WithdrawConsent() -> void +Microsoft.AspNetCore.Http.Features.IWebTransportSession +Microsoft.AspNetCore.Http.Features.IWebTransportSession.Abort(int errorCode) -> void +Microsoft.AspNetCore.Http.Features.IWebTransportSession.AcceptStreamAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask +Microsoft.AspNetCore.Http.Features.IWebTransportSession.OpenUnidirectionalStreamAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask +Microsoft.AspNetCore.Http.Features.IWebTransportSession.SessionId.get -> long Microsoft.AspNetCore.Http.IFormCollection Microsoft.AspNetCore.Http.IFormCollection.ContainsKey(string! key) -> bool Microsoft.AspNetCore.Http.IFormCollection.Count.get -> int @@ -427,6 +441,7 @@ Microsoft.AspNetCore.Http.WebSocketAcceptContext.DisableServerContextTakeover.se Microsoft.AspNetCore.Http.WebSocketAcceptContext.ServerMaxWindowBits.get -> int Microsoft.AspNetCore.Http.WebSocketAcceptContext.ServerMaxWindowBits.set -> void Microsoft.AspNetCore.Http.WebSocketAcceptContext.WebSocketAcceptContext() -> void +static readonly Microsoft.AspNetCore.Http.Features.FeatureReference.Default -> Microsoft.AspNetCore.Http.Features.FeatureReference (forwarded, contained in Microsoft.Extensions.Features) virtual Microsoft.AspNetCore.Http.Features.FeatureCollection.Revision.get -> int (forwarded, contained in Microsoft.Extensions.Features) virtual Microsoft.AspNetCore.Http.WebSocketAcceptContext.KeepAliveInterval.get -> System.TimeSpan? virtual Microsoft.AspNetCore.Http.WebSocketAcceptContext.KeepAliveInterval.set -> void diff --git a/src/Http/Http.Features/src/PublicAPI.Unshipped.txt b/src/Http/Http.Features/src/PublicAPI.Unshipped.txt index fe3881f254e7..7dc5c58110bf 100644 --- a/src/Http/Http.Features/src/PublicAPI.Unshipped.txt +++ b/src/Http/Http.Features/src/PublicAPI.Unshipped.txt @@ -1,16 +1 @@ #nullable enable -Microsoft.AspNetCore.Http.CookieOptions.CookieOptions(Microsoft.AspNetCore.Http.CookieOptions! options) -> void -Microsoft.AspNetCore.Http.CookieOptions.CreateCookieHeader(string! name, string! value) -> Microsoft.Net.Http.Headers.SetCookieHeaderValue! -Microsoft.AspNetCore.Http.CookieOptions.Extensions.get -> System.Collections.Generic.IList! -Microsoft.AspNetCore.Http.Features.IHttpExtendedConnectFeature -Microsoft.AspNetCore.Http.Features.IHttpExtendedConnectFeature.AcceptAsync() -> System.Threading.Tasks.ValueTask -Microsoft.AspNetCore.Http.Features.IHttpExtendedConnectFeature.IsExtendedConnect.get -> bool -Microsoft.AspNetCore.Http.Features.IHttpExtendedConnectFeature.Protocol.get -> string? -Microsoft.AspNetCore.Http.Features.IHttpWebTransportFeature -Microsoft.AspNetCore.Http.Features.IHttpWebTransportFeature.AcceptAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask -Microsoft.AspNetCore.Http.Features.IHttpWebTransportFeature.IsWebTransportRequest.get -> bool -Microsoft.AspNetCore.Http.Features.IWebTransportSession -Microsoft.AspNetCore.Http.Features.IWebTransportSession.Abort(int errorCode) -> void -Microsoft.AspNetCore.Http.Features.IWebTransportSession.AcceptStreamAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask -Microsoft.AspNetCore.Http.Features.IWebTransportSession.OpenUnidirectionalStreamAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask -Microsoft.AspNetCore.Http.Features.IWebTransportSession.SessionId.get -> long diff --git a/src/Http/Http.Results/src/PublicAPI.Shipped.txt b/src/Http/Http.Results/src/PublicAPI.Shipped.txt index 11011aec1ea7..e41cf83d0146 100644 --- a/src/Http/Http.Results/src/PublicAPI.Shipped.txt +++ b/src/Http/Http.Results/src/PublicAPI.Shipped.txt @@ -1,27 +1,263 @@ #nullable enable +~Microsoft.AspNetCore.Http.HttpResults.Results +~Microsoft.AspNetCore.Http.HttpResults.Results.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext httpContext) -> System.Threading.Tasks.Task +~Microsoft.AspNetCore.Http.HttpResults.Results.Result.get -> Microsoft.AspNetCore.Http.IResult +~Microsoft.AspNetCore.Http.HttpResults.Results +~Microsoft.AspNetCore.Http.HttpResults.Results.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext httpContext) -> System.Threading.Tasks.Task +~Microsoft.AspNetCore.Http.HttpResults.Results.Result.get -> Microsoft.AspNetCore.Http.IResult +~Microsoft.AspNetCore.Http.HttpResults.Results +~Microsoft.AspNetCore.Http.HttpResults.Results.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext httpContext) -> System.Threading.Tasks.Task +~Microsoft.AspNetCore.Http.HttpResults.Results.Result.get -> Microsoft.AspNetCore.Http.IResult +~Microsoft.AspNetCore.Http.HttpResults.Results +~Microsoft.AspNetCore.Http.HttpResults.Results.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext httpContext) -> System.Threading.Tasks.Task +~Microsoft.AspNetCore.Http.HttpResults.Results.Result.get -> Microsoft.AspNetCore.Http.IResult +~Microsoft.AspNetCore.Http.HttpResults.Results +~Microsoft.AspNetCore.Http.HttpResults.Results.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext httpContext) -> System.Threading.Tasks.Task +~Microsoft.AspNetCore.Http.HttpResults.Results.Result.get -> Microsoft.AspNetCore.Http.IResult +~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult1 result) -> Microsoft.AspNetCore.Http.HttpResults.Results +~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult2 result) -> Microsoft.AspNetCore.Http.HttpResults.Results +~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult3 result) -> Microsoft.AspNetCore.Http.HttpResults.Results +~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult4 result) -> Microsoft.AspNetCore.Http.HttpResults.Results +~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult5 result) -> Microsoft.AspNetCore.Http.HttpResults.Results +~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult6 result) -> Microsoft.AspNetCore.Http.HttpResults.Results +~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult1 result) -> Microsoft.AspNetCore.Http.HttpResults.Results +~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult2 result) -> Microsoft.AspNetCore.Http.HttpResults.Results +~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult3 result) -> Microsoft.AspNetCore.Http.HttpResults.Results +~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult4 result) -> Microsoft.AspNetCore.Http.HttpResults.Results +~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult5 result) -> Microsoft.AspNetCore.Http.HttpResults.Results +~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult1 result) -> Microsoft.AspNetCore.Http.HttpResults.Results +~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult2 result) -> Microsoft.AspNetCore.Http.HttpResults.Results +~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult3 result) -> Microsoft.AspNetCore.Http.HttpResults.Results +~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult4 result) -> Microsoft.AspNetCore.Http.HttpResults.Results +~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult1 result) -> Microsoft.AspNetCore.Http.HttpResults.Results +~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult2 result) -> Microsoft.AspNetCore.Http.HttpResults.Results +~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult3 result) -> Microsoft.AspNetCore.Http.HttpResults.Results +~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult1 result) -> Microsoft.AspNetCore.Http.HttpResults.Results +~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult2 result) -> Microsoft.AspNetCore.Http.HttpResults.Results +Microsoft.AspNetCore.Http.HttpResults.Accepted +Microsoft.AspNetCore.Http.HttpResults.Accepted.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.Accepted.Location.get -> string? +Microsoft.AspNetCore.Http.HttpResults.Accepted.StatusCode.get -> int +Microsoft.AspNetCore.Http.HttpResults.Accepted +Microsoft.AspNetCore.Http.HttpResults.Accepted.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.Accepted.Location.get -> string? +Microsoft.AspNetCore.Http.HttpResults.Accepted.StatusCode.get -> int +Microsoft.AspNetCore.Http.HttpResults.Accepted.Value.get -> TValue? +Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute +Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute.RouteName.get -> string? +Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute.RouteValues.get -> Microsoft.AspNetCore.Routing.RouteValueDictionary! +Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute.StatusCode.get -> int +Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute +Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute.RouteName.get -> string? +Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute.RouteValues.get -> Microsoft.AspNetCore.Routing.RouteValueDictionary! +Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute.StatusCode.get -> int +Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute.Value.get -> TValue? +Microsoft.AspNetCore.Http.HttpResults.BadRequest +Microsoft.AspNetCore.Http.HttpResults.BadRequest.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.BadRequest.StatusCode.get -> int +Microsoft.AspNetCore.Http.HttpResults.BadRequest +Microsoft.AspNetCore.Http.HttpResults.BadRequest.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.BadRequest.StatusCode.get -> int +Microsoft.AspNetCore.Http.HttpResults.BadRequest.Value.get -> TValue? +Microsoft.AspNetCore.Http.HttpResults.ChallengeHttpResult +Microsoft.AspNetCore.Http.HttpResults.ChallengeHttpResult.AuthenticationSchemes.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.AspNetCore.Http.HttpResults.ChallengeHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.ChallengeHttpResult.Properties.get -> Microsoft.AspNetCore.Authentication.AuthenticationProperties? +Microsoft.AspNetCore.Http.HttpResults.Conflict +Microsoft.AspNetCore.Http.HttpResults.Conflict.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.Conflict.StatusCode.get -> int +Microsoft.AspNetCore.Http.HttpResults.Conflict +Microsoft.AspNetCore.Http.HttpResults.Conflict.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.Conflict.StatusCode.get -> int +Microsoft.AspNetCore.Http.HttpResults.Conflict.Value.get -> TValue? +Microsoft.AspNetCore.Http.HttpResults.ContentHttpResult +Microsoft.AspNetCore.Http.HttpResults.ContentHttpResult.ContentType.get -> string? +Microsoft.AspNetCore.Http.HttpResults.ContentHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.ContentHttpResult.ResponseContent.get -> string? +Microsoft.AspNetCore.Http.HttpResults.ContentHttpResult.StatusCode.get -> int? +Microsoft.AspNetCore.Http.HttpResults.Created +Microsoft.AspNetCore.Http.HttpResults.Created.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.Created.Location.get -> string? +Microsoft.AspNetCore.Http.HttpResults.Created.StatusCode.get -> int +Microsoft.AspNetCore.Http.HttpResults.Created +Microsoft.AspNetCore.Http.HttpResults.Created.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.Created.Location.get -> string? +Microsoft.AspNetCore.Http.HttpResults.Created.StatusCode.get -> int +Microsoft.AspNetCore.Http.HttpResults.Created.Value.get -> TValue? +Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute +Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute.RouteName.get -> string? +Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute.RouteValues.get -> Microsoft.AspNetCore.Routing.RouteValueDictionary! +Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute.StatusCode.get -> int +Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute +Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute.RouteName.get -> string? +Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute.RouteValues.get -> Microsoft.AspNetCore.Routing.RouteValueDictionary! +Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute.StatusCode.get -> int +Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute.Value.get -> TValue? +Microsoft.AspNetCore.Http.HttpResults.EmptyHttpResult +Microsoft.AspNetCore.Http.HttpResults.EmptyHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.FileContentHttpResult +Microsoft.AspNetCore.Http.HttpResults.FileContentHttpResult.ContentType.get -> string! +Microsoft.AspNetCore.Http.HttpResults.FileContentHttpResult.EnableRangeProcessing.get -> bool +Microsoft.AspNetCore.Http.HttpResults.FileContentHttpResult.EntityTag.get -> Microsoft.Net.Http.Headers.EntityTagHeaderValue? +Microsoft.AspNetCore.Http.HttpResults.FileContentHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.FileContentHttpResult.FileContents.get -> System.ReadOnlyMemory +Microsoft.AspNetCore.Http.HttpResults.FileContentHttpResult.FileDownloadName.get -> string? +Microsoft.AspNetCore.Http.HttpResults.FileContentHttpResult.FileLength.get -> long? +Microsoft.AspNetCore.Http.HttpResults.FileContentHttpResult.LastModified.get -> System.DateTimeOffset? +Microsoft.AspNetCore.Http.HttpResults.FileStreamHttpResult +Microsoft.AspNetCore.Http.HttpResults.FileStreamHttpResult.ContentType.get -> string! +Microsoft.AspNetCore.Http.HttpResults.FileStreamHttpResult.EnableRangeProcessing.get -> bool +Microsoft.AspNetCore.Http.HttpResults.FileStreamHttpResult.EntityTag.get -> Microsoft.Net.Http.Headers.EntityTagHeaderValue? +Microsoft.AspNetCore.Http.HttpResults.FileStreamHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.FileStreamHttpResult.FileDownloadName.get -> string? +Microsoft.AspNetCore.Http.HttpResults.FileStreamHttpResult.FileLength.get -> long? +Microsoft.AspNetCore.Http.HttpResults.FileStreamHttpResult.FileStream.get -> System.IO.Stream! +Microsoft.AspNetCore.Http.HttpResults.FileStreamHttpResult.LastModified.get -> System.DateTimeOffset? +Microsoft.AspNetCore.Http.HttpResults.ForbidHttpResult +Microsoft.AspNetCore.Http.HttpResults.ForbidHttpResult.AuthenticationSchemes.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.AspNetCore.Http.HttpResults.ForbidHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.ForbidHttpResult.Properties.get -> Microsoft.AspNetCore.Authentication.AuthenticationProperties? +Microsoft.AspNetCore.Http.HttpResults.JsonHttpResult +Microsoft.AspNetCore.Http.HttpResults.JsonHttpResult.ContentType.get -> string? +Microsoft.AspNetCore.Http.HttpResults.JsonHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.JsonHttpResult.JsonSerializerOptions.get -> System.Text.Json.JsonSerializerOptions? +Microsoft.AspNetCore.Http.HttpResults.JsonHttpResult.StatusCode.get -> int? +Microsoft.AspNetCore.Http.HttpResults.JsonHttpResult.Value.get -> TValue? +Microsoft.AspNetCore.Http.HttpResults.NoContent +Microsoft.AspNetCore.Http.HttpResults.NoContent.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.NoContent.StatusCode.get -> int +Microsoft.AspNetCore.Http.HttpResults.NotFound +Microsoft.AspNetCore.Http.HttpResults.NotFound.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.NotFound.StatusCode.get -> int +Microsoft.AspNetCore.Http.HttpResults.NotFound +Microsoft.AspNetCore.Http.HttpResults.NotFound.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.NotFound.StatusCode.get -> int +Microsoft.AspNetCore.Http.HttpResults.NotFound.Value.get -> TValue? +Microsoft.AspNetCore.Http.HttpResults.Ok +Microsoft.AspNetCore.Http.HttpResults.Ok.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.Ok.StatusCode.get -> int +Microsoft.AspNetCore.Http.HttpResults.Ok +Microsoft.AspNetCore.Http.HttpResults.Ok.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.Ok.StatusCode.get -> int +Microsoft.AspNetCore.Http.HttpResults.Ok.Value.get -> TValue? +Microsoft.AspNetCore.Http.HttpResults.PhysicalFileHttpResult +Microsoft.AspNetCore.Http.HttpResults.PhysicalFileHttpResult.ContentType.get -> string! +Microsoft.AspNetCore.Http.HttpResults.PhysicalFileHttpResult.EnableRangeProcessing.get -> bool +Microsoft.AspNetCore.Http.HttpResults.PhysicalFileHttpResult.EntityTag.get -> Microsoft.Net.Http.Headers.EntityTagHeaderValue? +Microsoft.AspNetCore.Http.HttpResults.PhysicalFileHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.PhysicalFileHttpResult.FileDownloadName.get -> string? +Microsoft.AspNetCore.Http.HttpResults.PhysicalFileHttpResult.FileLength.get -> long? +Microsoft.AspNetCore.Http.HttpResults.PhysicalFileHttpResult.FileName.get -> string! +Microsoft.AspNetCore.Http.HttpResults.PhysicalFileHttpResult.LastModified.get -> System.DateTimeOffset? +Microsoft.AspNetCore.Http.HttpResults.ProblemHttpResult +Microsoft.AspNetCore.Http.HttpResults.ProblemHttpResult.ContentType.get -> string! +Microsoft.AspNetCore.Http.HttpResults.ProblemHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.ProblemHttpResult.ProblemDetails.get -> Microsoft.AspNetCore.Mvc.ProblemDetails! +Microsoft.AspNetCore.Http.HttpResults.ProblemHttpResult.StatusCode.get -> int +Microsoft.AspNetCore.Http.HttpResults.PushStreamHttpResult +Microsoft.AspNetCore.Http.HttpResults.PushStreamHttpResult.ContentType.get -> string! +Microsoft.AspNetCore.Http.HttpResults.PushStreamHttpResult.EnableRangeProcessing.get -> bool +Microsoft.AspNetCore.Http.HttpResults.PushStreamHttpResult.EntityTag.get -> Microsoft.Net.Http.Headers.EntityTagHeaderValue? +Microsoft.AspNetCore.Http.HttpResults.PushStreamHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.PushStreamHttpResult.FileDownloadName.get -> string? +Microsoft.AspNetCore.Http.HttpResults.PushStreamHttpResult.FileLength.get -> long? +Microsoft.AspNetCore.Http.HttpResults.PushStreamHttpResult.LastModified.get -> System.DateTimeOffset? +Microsoft.AspNetCore.Http.HttpResults.RedirectHttpResult +Microsoft.AspNetCore.Http.HttpResults.RedirectHttpResult.AcceptLocalUrlOnly.get -> bool +Microsoft.AspNetCore.Http.HttpResults.RedirectHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.RedirectHttpResult.Permanent.get -> bool +Microsoft.AspNetCore.Http.HttpResults.RedirectHttpResult.PreserveMethod.get -> bool +Microsoft.AspNetCore.Http.HttpResults.RedirectHttpResult.Url.get -> string! +Microsoft.AspNetCore.Http.HttpResults.RedirectToRouteHttpResult +Microsoft.AspNetCore.Http.HttpResults.RedirectToRouteHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.RedirectToRouteHttpResult.Fragment.get -> string? +Microsoft.AspNetCore.Http.HttpResults.RedirectToRouteHttpResult.Permanent.get -> bool +Microsoft.AspNetCore.Http.HttpResults.RedirectToRouteHttpResult.PreserveMethod.get -> bool +Microsoft.AspNetCore.Http.HttpResults.RedirectToRouteHttpResult.RouteName.get -> string? +Microsoft.AspNetCore.Http.HttpResults.RedirectToRouteHttpResult.RouteValues.get -> Microsoft.AspNetCore.Routing.RouteValueDictionary? +Microsoft.AspNetCore.Http.HttpResults.SignInHttpResult +Microsoft.AspNetCore.Http.HttpResults.SignInHttpResult.AuthenticationScheme.get -> string? +Microsoft.AspNetCore.Http.HttpResults.SignInHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.SignInHttpResult.Principal.get -> System.Security.Claims.ClaimsPrincipal! +Microsoft.AspNetCore.Http.HttpResults.SignInHttpResult.Properties.get -> Microsoft.AspNetCore.Authentication.AuthenticationProperties? +Microsoft.AspNetCore.Http.HttpResults.SignOutHttpResult +Microsoft.AspNetCore.Http.HttpResults.SignOutHttpResult.AuthenticationSchemes.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.AspNetCore.Http.HttpResults.SignOutHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.SignOutHttpResult.Properties.get -> Microsoft.AspNetCore.Authentication.AuthenticationProperties? +Microsoft.AspNetCore.Http.HttpResults.StatusCodeHttpResult +Microsoft.AspNetCore.Http.HttpResults.StatusCodeHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.StatusCodeHttpResult.StatusCode.get -> int +Microsoft.AspNetCore.Http.HttpResults.UnauthorizedHttpResult +Microsoft.AspNetCore.Http.HttpResults.UnauthorizedHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.UnauthorizedHttpResult.StatusCode.get -> int +Microsoft.AspNetCore.Http.HttpResults.UnprocessableEntity +Microsoft.AspNetCore.Http.HttpResults.UnprocessableEntity.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.UnprocessableEntity.StatusCode.get -> int +Microsoft.AspNetCore.Http.HttpResults.UnprocessableEntity +Microsoft.AspNetCore.Http.HttpResults.UnprocessableEntity.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.UnprocessableEntity.StatusCode.get -> int +Microsoft.AspNetCore.Http.HttpResults.UnprocessableEntity.Value.get -> TValue? +Microsoft.AspNetCore.Http.HttpResults.Utf8ContentHttpResult +Microsoft.AspNetCore.Http.HttpResults.Utf8ContentHttpResult.ContentType.get -> string? +Microsoft.AspNetCore.Http.HttpResults.Utf8ContentHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.Utf8ContentHttpResult.ResponseContent.get -> System.ReadOnlyMemory +Microsoft.AspNetCore.Http.HttpResults.Utf8ContentHttpResult.StatusCode.get -> int? +Microsoft.AspNetCore.Http.HttpResults.ValidationProblem +Microsoft.AspNetCore.Http.HttpResults.ValidationProblem.ContentType.get -> string! +Microsoft.AspNetCore.Http.HttpResults.ValidationProblem.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.ValidationProblem.ProblemDetails.get -> Microsoft.AspNetCore.Http.HttpValidationProblemDetails! +Microsoft.AspNetCore.Http.HttpResults.ValidationProblem.StatusCode.get -> int +Microsoft.AspNetCore.Http.HttpResults.VirtualFileHttpResult +Microsoft.AspNetCore.Http.HttpResults.VirtualFileHttpResult.ContentType.get -> string! +Microsoft.AspNetCore.Http.HttpResults.VirtualFileHttpResult.EnableRangeProcessing.get -> bool +Microsoft.AspNetCore.Http.HttpResults.VirtualFileHttpResult.EntityTag.get -> Microsoft.Net.Http.Headers.EntityTagHeaderValue? +Microsoft.AspNetCore.Http.HttpResults.VirtualFileHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Http.HttpResults.VirtualFileHttpResult.FileDownloadName.get -> string? +Microsoft.AspNetCore.Http.HttpResults.VirtualFileHttpResult.FileLength.get -> long? +Microsoft.AspNetCore.Http.HttpResults.VirtualFileHttpResult.FileName.get -> string! +Microsoft.AspNetCore.Http.HttpResults.VirtualFileHttpResult.LastModified.get -> System.DateTimeOffset? Microsoft.AspNetCore.Http.IResultExtensions Microsoft.AspNetCore.Http.Results +Microsoft.AspNetCore.Http.TypedResults +static Microsoft.AspNetCore.Http.HttpResults.EmptyHttpResult.Instance.get -> Microsoft.AspNetCore.Http.HttpResults.EmptyHttpResult! static Microsoft.AspNetCore.Http.Results.Accepted(string? uri = null, object? value = null) -> Microsoft.AspNetCore.Http.IResult! +static Microsoft.AspNetCore.Http.Results.Accepted(string? uri = null, TValue? value = default(TValue?)) -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.AcceptedAtRoute(string? routeName = null, object? routeValues = null, object? value = null) -> Microsoft.AspNetCore.Http.IResult! +static Microsoft.AspNetCore.Http.Results.AcceptedAtRoute(string? routeName = null, object? routeValues = null, TValue? value = default(TValue?)) -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.BadRequest(object? error = null) -> Microsoft.AspNetCore.Http.IResult! +static Microsoft.AspNetCore.Http.Results.BadRequest(TValue? error) -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.Bytes(byte[]! contents, string? contentType = null, string? fileDownloadName = null, bool enableRangeProcessing = false, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null) -> Microsoft.AspNetCore.Http.IResult! +static Microsoft.AspNetCore.Http.Results.Bytes(System.ReadOnlyMemory contents, string? contentType = null, string? fileDownloadName = null, bool enableRangeProcessing = false, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null) -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.Challenge(Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties = null, System.Collections.Generic.IList? authenticationSchemes = null) -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.Conflict(object? error = null) -> Microsoft.AspNetCore.Http.IResult! -static Microsoft.AspNetCore.Http.Results.Content(string! content, Microsoft.Net.Http.Headers.MediaTypeHeaderValue! contentType) -> Microsoft.AspNetCore.Http.IResult! -static Microsoft.AspNetCore.Http.Results.Content(string! content, string? contentType = null, System.Text.Encoding? contentEncoding = null) -> Microsoft.AspNetCore.Http.IResult! +static Microsoft.AspNetCore.Http.Results.Conflict(TValue? error) -> Microsoft.AspNetCore.Http.IResult! +static Microsoft.AspNetCore.Http.Results.Content(string? content, Microsoft.Net.Http.Headers.MediaTypeHeaderValue! contentType) -> Microsoft.AspNetCore.Http.IResult! +static Microsoft.AspNetCore.Http.Results.Content(string? content, string? contentType = null, System.Text.Encoding? contentEncoding = null, int? statusCode = null) -> Microsoft.AspNetCore.Http.IResult! +static Microsoft.AspNetCore.Http.Results.Content(string? content, string? contentType, System.Text.Encoding? contentEncoding) -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.Created(string! uri, object? value) -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.Created(System.Uri! uri, object? value) -> Microsoft.AspNetCore.Http.IResult! +static Microsoft.AspNetCore.Http.Results.Created(string! uri, TValue? value) -> Microsoft.AspNetCore.Http.IResult! +static Microsoft.AspNetCore.Http.Results.Created(System.Uri! uri, TValue? value) -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.CreatedAtRoute(string? routeName = null, object? routeValues = null, object? value = null) -> Microsoft.AspNetCore.Http.IResult! +static Microsoft.AspNetCore.Http.Results.CreatedAtRoute(string? routeName = null, object? routeValues = null, TValue? value = default(TValue?)) -> Microsoft.AspNetCore.Http.IResult! +static Microsoft.AspNetCore.Http.Results.Empty.get -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.Extensions.get -> Microsoft.AspNetCore.Http.IResultExtensions! static Microsoft.AspNetCore.Http.Results.File(byte[]! fileContents, string? contentType = null, string? fileDownloadName = null, bool enableRangeProcessing = false, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null) -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.File(string! path, string? contentType = null, string? fileDownloadName = null, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null, bool enableRangeProcessing = false) -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.File(System.IO.Stream! fileStream, string? contentType = null, string? fileDownloadName = null, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null, bool enableRangeProcessing = false) -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.Forbid(Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties = null, System.Collections.Generic.IList? authenticationSchemes = null) -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.Json(object? data, System.Text.Json.JsonSerializerOptions? options = null, string? contentType = null, int? statusCode = null) -> Microsoft.AspNetCore.Http.IResult! +static Microsoft.AspNetCore.Http.Results.Json(TValue? data, System.Text.Json.JsonSerializerOptions? options = null, string? contentType = null, int? statusCode = null) -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.LocalRedirect(string! localUrl, bool permanent = false, bool preserveMethod = false) -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.NoContent() -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.NotFound(object? value = null) -> Microsoft.AspNetCore.Http.IResult! +static Microsoft.AspNetCore.Http.Results.NotFound(TValue? value) -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.Ok(object? value = null) -> Microsoft.AspNetCore.Http.IResult! +static Microsoft.AspNetCore.Http.Results.Ok(TValue? value) -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.Problem(Microsoft.AspNetCore.Mvc.ProblemDetails! problemDetails) -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.Problem(string? detail = null, string? instance = null, int? statusCode = null, string? title = null, string? type = null, System.Collections.Generic.IDictionary? extensions = null) -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.Redirect(string! url, bool permanent = false, bool preserveMethod = false) -> Microsoft.AspNetCore.Http.IResult! @@ -29,8 +265,65 @@ static Microsoft.AspNetCore.Http.Results.RedirectToRoute(string? routeName = nul static Microsoft.AspNetCore.Http.Results.SignIn(System.Security.Claims.ClaimsPrincipal! principal, Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties = null, string? authenticationScheme = null) -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.SignOut(Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties = null, System.Collections.Generic.IList? authenticationSchemes = null) -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.StatusCode(int statusCode) -> Microsoft.AspNetCore.Http.IResult! +static Microsoft.AspNetCore.Http.Results.Stream(System.Func! streamWriterCallback, string? contentType = null, string? fileDownloadName = null, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null) -> Microsoft.AspNetCore.Http.IResult! +static Microsoft.AspNetCore.Http.Results.Stream(System.IO.Pipelines.PipeReader! pipeReader, string? contentType = null, string? fileDownloadName = null, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null, bool enableRangeProcessing = false) -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.Stream(System.IO.Stream! stream, string? contentType = null, string? fileDownloadName = null, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null, bool enableRangeProcessing = false) -> Microsoft.AspNetCore.Http.IResult! -static Microsoft.AspNetCore.Http.Results.Text(string! content, string? contentType = null, System.Text.Encoding? contentEncoding = null) -> Microsoft.AspNetCore.Http.IResult! +static Microsoft.AspNetCore.Http.Results.Text(string? content, string? contentType = null, System.Text.Encoding? contentEncoding = null, int? statusCode = null) -> Microsoft.AspNetCore.Http.IResult! +static Microsoft.AspNetCore.Http.Results.Text(string? content, string? contentType, System.Text.Encoding? contentEncoding) -> Microsoft.AspNetCore.Http.IResult! +static Microsoft.AspNetCore.Http.Results.Text(System.ReadOnlySpan utf8Content, string? contentType = null, int? statusCode = null) -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.Unauthorized() -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.UnprocessableEntity(object? error = null) -> Microsoft.AspNetCore.Http.IResult! +static Microsoft.AspNetCore.Http.Results.UnprocessableEntity(TValue? error) -> Microsoft.AspNetCore.Http.IResult! static Microsoft.AspNetCore.Http.Results.ValidationProblem(System.Collections.Generic.IDictionary! errors, string? detail = null, string? instance = null, int? statusCode = null, string? title = null, string? type = null, System.Collections.Generic.IDictionary? extensions = null) -> Microsoft.AspNetCore.Http.IResult! +static Microsoft.AspNetCore.Http.TypedResults.Accepted(string? uri) -> Microsoft.AspNetCore.Http.HttpResults.Accepted! +static Microsoft.AspNetCore.Http.TypedResults.Accepted(System.Uri! uri) -> Microsoft.AspNetCore.Http.HttpResults.Accepted! +static Microsoft.AspNetCore.Http.TypedResults.Accepted(string? uri, TValue? value) -> Microsoft.AspNetCore.Http.HttpResults.Accepted! +static Microsoft.AspNetCore.Http.TypedResults.Accepted(System.Uri! uri, TValue? value) -> Microsoft.AspNetCore.Http.HttpResults.Accepted! +static Microsoft.AspNetCore.Http.TypedResults.AcceptedAtRoute(string? routeName = null, object? routeValues = null) -> Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute! +static Microsoft.AspNetCore.Http.TypedResults.AcceptedAtRoute(TValue? value, string? routeName = null, object? routeValues = null) -> Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute! +static Microsoft.AspNetCore.Http.TypedResults.BadRequest() -> Microsoft.AspNetCore.Http.HttpResults.BadRequest! +static Microsoft.AspNetCore.Http.TypedResults.BadRequest(TValue? error) -> Microsoft.AspNetCore.Http.HttpResults.BadRequest! +static Microsoft.AspNetCore.Http.TypedResults.Bytes(byte[]! contents, string? contentType = null, string? fileDownloadName = null, bool enableRangeProcessing = false, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null) -> Microsoft.AspNetCore.Http.HttpResults.FileContentHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.Bytes(System.ReadOnlyMemory contents, string? contentType = null, string? fileDownloadName = null, bool enableRangeProcessing = false, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null) -> Microsoft.AspNetCore.Http.HttpResults.FileContentHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.Challenge(Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties = null, System.Collections.Generic.IList? authenticationSchemes = null) -> Microsoft.AspNetCore.Http.HttpResults.ChallengeHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.Conflict() -> Microsoft.AspNetCore.Http.HttpResults.Conflict! +static Microsoft.AspNetCore.Http.TypedResults.Conflict(TValue? error) -> Microsoft.AspNetCore.Http.HttpResults.Conflict! +static Microsoft.AspNetCore.Http.TypedResults.Content(string? content, Microsoft.Net.Http.Headers.MediaTypeHeaderValue! contentType) -> Microsoft.AspNetCore.Http.HttpResults.ContentHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.Content(string? content, string? contentType = null, System.Text.Encoding? contentEncoding = null, int? statusCode = null) -> Microsoft.AspNetCore.Http.HttpResults.ContentHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.Content(string? content, string? contentType, System.Text.Encoding? contentEncoding) -> Microsoft.AspNetCore.Http.HttpResults.ContentHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.Created(string! uri) -> Microsoft.AspNetCore.Http.HttpResults.Created! +static Microsoft.AspNetCore.Http.TypedResults.Created(System.Uri! uri) -> Microsoft.AspNetCore.Http.HttpResults.Created! +static Microsoft.AspNetCore.Http.TypedResults.Created(string! uri, TValue? value) -> Microsoft.AspNetCore.Http.HttpResults.Created! +static Microsoft.AspNetCore.Http.TypedResults.Created(System.Uri! uri, TValue? value) -> Microsoft.AspNetCore.Http.HttpResults.Created! +static Microsoft.AspNetCore.Http.TypedResults.CreatedAtRoute(string? routeName = null, object? routeValues = null) -> Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute! +static Microsoft.AspNetCore.Http.TypedResults.CreatedAtRoute(TValue? value, string? routeName = null, object? routeValues = null) -> Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute! +static Microsoft.AspNetCore.Http.TypedResults.Empty.get -> Microsoft.AspNetCore.Http.HttpResults.EmptyHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.File(byte[]! fileContents, string? contentType = null, string? fileDownloadName = null, bool enableRangeProcessing = false, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null) -> Microsoft.AspNetCore.Http.HttpResults.FileContentHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.File(System.IO.Stream! fileStream, string? contentType = null, string? fileDownloadName = null, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null, bool enableRangeProcessing = false) -> Microsoft.AspNetCore.Http.HttpResults.FileStreamHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.Forbid(Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties = null, System.Collections.Generic.IList? authenticationSchemes = null) -> Microsoft.AspNetCore.Http.HttpResults.ForbidHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.Json(TValue? data, System.Text.Json.JsonSerializerOptions? options = null, string? contentType = null, int? statusCode = null) -> Microsoft.AspNetCore.Http.HttpResults.JsonHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.LocalRedirect(string! localUrl, bool permanent = false, bool preserveMethod = false) -> Microsoft.AspNetCore.Http.HttpResults.RedirectHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.NoContent() -> Microsoft.AspNetCore.Http.HttpResults.NoContent! +static Microsoft.AspNetCore.Http.TypedResults.NotFound() -> Microsoft.AspNetCore.Http.HttpResults.NotFound! +static Microsoft.AspNetCore.Http.TypedResults.NotFound(TValue? value) -> Microsoft.AspNetCore.Http.HttpResults.NotFound! +static Microsoft.AspNetCore.Http.TypedResults.Ok() -> Microsoft.AspNetCore.Http.HttpResults.Ok! +static Microsoft.AspNetCore.Http.TypedResults.Ok(TValue? value) -> Microsoft.AspNetCore.Http.HttpResults.Ok! +static Microsoft.AspNetCore.Http.TypedResults.PhysicalFile(string! path, string? contentType = null, string? fileDownloadName = null, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null, bool enableRangeProcessing = false) -> Microsoft.AspNetCore.Http.HttpResults.PhysicalFileHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.Problem(Microsoft.AspNetCore.Mvc.ProblemDetails! problemDetails) -> Microsoft.AspNetCore.Http.HttpResults.ProblemHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.Problem(string? detail = null, string? instance = null, int? statusCode = null, string? title = null, string? type = null, System.Collections.Generic.IDictionary? extensions = null) -> Microsoft.AspNetCore.Http.HttpResults.ProblemHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.Redirect(string! url, bool permanent = false, bool preserveMethod = false) -> Microsoft.AspNetCore.Http.HttpResults.RedirectHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.RedirectToRoute(string? routeName = null, object? routeValues = null, bool permanent = false, bool preserveMethod = false, string? fragment = null) -> Microsoft.AspNetCore.Http.HttpResults.RedirectToRouteHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.SignIn(System.Security.Claims.ClaimsPrincipal! principal, Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties = null, string? authenticationScheme = null) -> Microsoft.AspNetCore.Http.HttpResults.SignInHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.SignOut(Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties = null, System.Collections.Generic.IList? authenticationSchemes = null) -> Microsoft.AspNetCore.Http.HttpResults.SignOutHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.StatusCode(int statusCode) -> Microsoft.AspNetCore.Http.HttpResults.StatusCodeHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.Stream(System.Func! streamWriterCallback, string? contentType = null, string? fileDownloadName = null, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null) -> Microsoft.AspNetCore.Http.HttpResults.PushStreamHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.Stream(System.IO.Pipelines.PipeReader! pipeReader, string? contentType = null, string? fileDownloadName = null, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null, bool enableRangeProcessing = false) -> Microsoft.AspNetCore.Http.HttpResults.FileStreamHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.Stream(System.IO.Stream! stream, string? contentType = null, string? fileDownloadName = null, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null, bool enableRangeProcessing = false) -> Microsoft.AspNetCore.Http.HttpResults.FileStreamHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.Text(string? content, string? contentType = null, System.Text.Encoding? contentEncoding = null, int? statusCode = null) -> Microsoft.AspNetCore.Http.HttpResults.ContentHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.Text(string? content, string? contentType, System.Text.Encoding? contentEncoding) -> Microsoft.AspNetCore.Http.HttpResults.ContentHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.Text(System.ReadOnlySpan utf8Content, string? contentType = null, int? statusCode = null) -> Microsoft.AspNetCore.Http.HttpResults.Utf8ContentHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.Unauthorized() -> Microsoft.AspNetCore.Http.HttpResults.UnauthorizedHttpResult! +static Microsoft.AspNetCore.Http.TypedResults.UnprocessableEntity() -> Microsoft.AspNetCore.Http.HttpResults.UnprocessableEntity! +static Microsoft.AspNetCore.Http.TypedResults.UnprocessableEntity(TValue? error) -> Microsoft.AspNetCore.Http.HttpResults.UnprocessableEntity! +static Microsoft.AspNetCore.Http.TypedResults.ValidationProblem(System.Collections.Generic.IDictionary! errors, string? detail = null, string? instance = null, string? title = null, string? type = null, System.Collections.Generic.IDictionary? extensions = null) -> Microsoft.AspNetCore.Http.HttpResults.ValidationProblem! +static Microsoft.AspNetCore.Http.TypedResults.VirtualFile(string! path, string? contentType = null, string? fileDownloadName = null, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null, bool enableRangeProcessing = false) -> Microsoft.AspNetCore.Http.HttpResults.VirtualFileHttpResult! diff --git a/src/Http/Http.Results/src/PublicAPI.Unshipped.txt b/src/Http/Http.Results/src/PublicAPI.Unshipped.txt index 032a07e72ece..7dc5c58110bf 100644 --- a/src/Http/Http.Results/src/PublicAPI.Unshipped.txt +++ b/src/Http/Http.Results/src/PublicAPI.Unshipped.txt @@ -1,300 +1 @@ #nullable enable -Microsoft.AspNetCore.Http.HttpResults.Accepted -Microsoft.AspNetCore.Http.HttpResults.Accepted.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.Accepted.Location.get -> string? -Microsoft.AspNetCore.Http.HttpResults.Accepted.StatusCode.get -> int -Microsoft.AspNetCore.Http.HttpResults.Accepted -Microsoft.AspNetCore.Http.HttpResults.Accepted.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.Accepted.Location.get -> string? -Microsoft.AspNetCore.Http.HttpResults.Accepted.StatusCode.get -> int -Microsoft.AspNetCore.Http.HttpResults.Accepted.Value.get -> TValue? -Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute -Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute.RouteName.get -> string? -Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute.RouteValues.get -> Microsoft.AspNetCore.Routing.RouteValueDictionary! -Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute.StatusCode.get -> int -Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute -Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute.RouteName.get -> string? -Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute.RouteValues.get -> Microsoft.AspNetCore.Routing.RouteValueDictionary! -Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute.StatusCode.get -> int -Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute.Value.get -> TValue? -Microsoft.AspNetCore.Http.HttpResults.BadRequest -Microsoft.AspNetCore.Http.HttpResults.BadRequest.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.BadRequest.StatusCode.get -> int -Microsoft.AspNetCore.Http.HttpResults.BadRequest -Microsoft.AspNetCore.Http.HttpResults.BadRequest.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.BadRequest.StatusCode.get -> int -Microsoft.AspNetCore.Http.HttpResults.BadRequest.Value.get -> TValue? -Microsoft.AspNetCore.Http.HttpResults.ChallengeHttpResult -Microsoft.AspNetCore.Http.HttpResults.ChallengeHttpResult.AuthenticationSchemes.get -> System.Collections.Generic.IReadOnlyList! -Microsoft.AspNetCore.Http.HttpResults.ChallengeHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.ChallengeHttpResult.Properties.get -> Microsoft.AspNetCore.Authentication.AuthenticationProperties? -Microsoft.AspNetCore.Http.HttpResults.Conflict -Microsoft.AspNetCore.Http.HttpResults.Conflict.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.Conflict.StatusCode.get -> int -Microsoft.AspNetCore.Http.HttpResults.Conflict -Microsoft.AspNetCore.Http.HttpResults.Conflict.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.Conflict.StatusCode.get -> int -Microsoft.AspNetCore.Http.HttpResults.Conflict.Value.get -> TValue? -Microsoft.AspNetCore.Http.HttpResults.ContentHttpResult -Microsoft.AspNetCore.Http.HttpResults.ContentHttpResult.ContentType.get -> string? -Microsoft.AspNetCore.Http.HttpResults.ContentHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.ContentHttpResult.ResponseContent.get -> string? -Microsoft.AspNetCore.Http.HttpResults.ContentHttpResult.StatusCode.get -> int? -Microsoft.AspNetCore.Http.HttpResults.Created -Microsoft.AspNetCore.Http.HttpResults.Created.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.Created.Location.get -> string? -Microsoft.AspNetCore.Http.HttpResults.Created.StatusCode.get -> int -Microsoft.AspNetCore.Http.HttpResults.Created -Microsoft.AspNetCore.Http.HttpResults.Created.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.Created.Location.get -> string? -Microsoft.AspNetCore.Http.HttpResults.Created.StatusCode.get -> int -Microsoft.AspNetCore.Http.HttpResults.Created.Value.get -> TValue? -Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute -Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute.RouteName.get -> string? -Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute.RouteValues.get -> Microsoft.AspNetCore.Routing.RouteValueDictionary! -Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute.StatusCode.get -> int -Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute -Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute.RouteName.get -> string? -Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute.RouteValues.get -> Microsoft.AspNetCore.Routing.RouteValueDictionary! -Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute.StatusCode.get -> int -Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute.Value.get -> TValue? -Microsoft.AspNetCore.Http.HttpResults.EmptyHttpResult -Microsoft.AspNetCore.Http.HttpResults.EmptyHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.FileContentHttpResult -Microsoft.AspNetCore.Http.HttpResults.FileContentHttpResult.ContentType.get -> string! -Microsoft.AspNetCore.Http.HttpResults.FileContentHttpResult.EnableRangeProcessing.get -> bool -Microsoft.AspNetCore.Http.HttpResults.FileContentHttpResult.EntityTag.get -> Microsoft.Net.Http.Headers.EntityTagHeaderValue? -Microsoft.AspNetCore.Http.HttpResults.FileContentHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.FileContentHttpResult.FileContents.get -> System.ReadOnlyMemory -Microsoft.AspNetCore.Http.HttpResults.FileContentHttpResult.FileDownloadName.get -> string? -Microsoft.AspNetCore.Http.HttpResults.FileContentHttpResult.FileLength.get -> long? -Microsoft.AspNetCore.Http.HttpResults.FileContentHttpResult.LastModified.get -> System.DateTimeOffset? -Microsoft.AspNetCore.Http.HttpResults.FileStreamHttpResult -Microsoft.AspNetCore.Http.HttpResults.FileStreamHttpResult.ContentType.get -> string! -Microsoft.AspNetCore.Http.HttpResults.FileStreamHttpResult.EnableRangeProcessing.get -> bool -Microsoft.AspNetCore.Http.HttpResults.FileStreamHttpResult.EntityTag.get -> Microsoft.Net.Http.Headers.EntityTagHeaderValue? -Microsoft.AspNetCore.Http.HttpResults.FileStreamHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.FileStreamHttpResult.FileDownloadName.get -> string? -Microsoft.AspNetCore.Http.HttpResults.FileStreamHttpResult.FileLength.get -> long? -Microsoft.AspNetCore.Http.HttpResults.FileStreamHttpResult.FileStream.get -> System.IO.Stream! -Microsoft.AspNetCore.Http.HttpResults.FileStreamHttpResult.LastModified.get -> System.DateTimeOffset? -Microsoft.AspNetCore.Http.HttpResults.ForbidHttpResult -Microsoft.AspNetCore.Http.HttpResults.ForbidHttpResult.AuthenticationSchemes.get -> System.Collections.Generic.IReadOnlyList! -Microsoft.AspNetCore.Http.HttpResults.ForbidHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.ForbidHttpResult.Properties.get -> Microsoft.AspNetCore.Authentication.AuthenticationProperties? -Microsoft.AspNetCore.Http.HttpResults.JsonHttpResult -Microsoft.AspNetCore.Http.HttpResults.JsonHttpResult.ContentType.get -> string? -Microsoft.AspNetCore.Http.HttpResults.JsonHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.JsonHttpResult.JsonSerializerOptions.get -> System.Text.Json.JsonSerializerOptions? -Microsoft.AspNetCore.Http.HttpResults.JsonHttpResult.StatusCode.get -> int? -Microsoft.AspNetCore.Http.HttpResults.JsonHttpResult.Value.get -> TValue? -Microsoft.AspNetCore.Http.HttpResults.NoContent -Microsoft.AspNetCore.Http.HttpResults.NoContent.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.NoContent.StatusCode.get -> int -Microsoft.AspNetCore.Http.HttpResults.NotFound -Microsoft.AspNetCore.Http.HttpResults.NotFound.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.NotFound.StatusCode.get -> int -Microsoft.AspNetCore.Http.HttpResults.NotFound -Microsoft.AspNetCore.Http.HttpResults.NotFound.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.NotFound.StatusCode.get -> int -Microsoft.AspNetCore.Http.HttpResults.NotFound.Value.get -> TValue? -Microsoft.AspNetCore.Http.HttpResults.Ok -Microsoft.AspNetCore.Http.HttpResults.Ok.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.Ok.StatusCode.get -> int -Microsoft.AspNetCore.Http.HttpResults.Ok -Microsoft.AspNetCore.Http.HttpResults.Ok.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.Ok.StatusCode.get -> int -Microsoft.AspNetCore.Http.HttpResults.Ok.Value.get -> TValue? -Microsoft.AspNetCore.Http.HttpResults.PhysicalFileHttpResult -Microsoft.AspNetCore.Http.HttpResults.PhysicalFileHttpResult.ContentType.get -> string! -Microsoft.AspNetCore.Http.HttpResults.PhysicalFileHttpResult.EnableRangeProcessing.get -> bool -Microsoft.AspNetCore.Http.HttpResults.PhysicalFileHttpResult.EntityTag.get -> Microsoft.Net.Http.Headers.EntityTagHeaderValue? -Microsoft.AspNetCore.Http.HttpResults.PhysicalFileHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.PhysicalFileHttpResult.FileDownloadName.get -> string? -Microsoft.AspNetCore.Http.HttpResults.PhysicalFileHttpResult.FileLength.get -> long? -Microsoft.AspNetCore.Http.HttpResults.PhysicalFileHttpResult.FileName.get -> string! -Microsoft.AspNetCore.Http.HttpResults.PhysicalFileHttpResult.LastModified.get -> System.DateTimeOffset? -Microsoft.AspNetCore.Http.HttpResults.ProblemHttpResult -Microsoft.AspNetCore.Http.HttpResults.ProblemHttpResult.ContentType.get -> string! -Microsoft.AspNetCore.Http.HttpResults.ProblemHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.ProblemHttpResult.ProblemDetails.get -> Microsoft.AspNetCore.Mvc.ProblemDetails! -Microsoft.AspNetCore.Http.HttpResults.ProblemHttpResult.StatusCode.get -> int -Microsoft.AspNetCore.Http.HttpResults.PushStreamHttpResult -Microsoft.AspNetCore.Http.HttpResults.PushStreamHttpResult.ContentType.get -> string! -Microsoft.AspNetCore.Http.HttpResults.PushStreamHttpResult.EnableRangeProcessing.get -> bool -Microsoft.AspNetCore.Http.HttpResults.PushStreamHttpResult.EntityTag.get -> Microsoft.Net.Http.Headers.EntityTagHeaderValue? -Microsoft.AspNetCore.Http.HttpResults.PushStreamHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.PushStreamHttpResult.FileDownloadName.get -> string? -Microsoft.AspNetCore.Http.HttpResults.PushStreamHttpResult.FileLength.get -> long? -Microsoft.AspNetCore.Http.HttpResults.PushStreamHttpResult.LastModified.get -> System.DateTimeOffset? -Microsoft.AspNetCore.Http.HttpResults.RedirectHttpResult -Microsoft.AspNetCore.Http.HttpResults.RedirectHttpResult.AcceptLocalUrlOnly.get -> bool -Microsoft.AspNetCore.Http.HttpResults.RedirectHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.RedirectHttpResult.Permanent.get -> bool -Microsoft.AspNetCore.Http.HttpResults.RedirectHttpResult.PreserveMethod.get -> bool -Microsoft.AspNetCore.Http.HttpResults.RedirectHttpResult.Url.get -> string! -Microsoft.AspNetCore.Http.HttpResults.RedirectToRouteHttpResult -Microsoft.AspNetCore.Http.HttpResults.RedirectToRouteHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.RedirectToRouteHttpResult.Fragment.get -> string? -Microsoft.AspNetCore.Http.HttpResults.RedirectToRouteHttpResult.Permanent.get -> bool -Microsoft.AspNetCore.Http.HttpResults.RedirectToRouteHttpResult.PreserveMethod.get -> bool -Microsoft.AspNetCore.Http.HttpResults.RedirectToRouteHttpResult.RouteName.get -> string? -Microsoft.AspNetCore.Http.HttpResults.RedirectToRouteHttpResult.RouteValues.get -> Microsoft.AspNetCore.Routing.RouteValueDictionary? -*REMOVED*static Microsoft.AspNetCore.Http.Results.Content(string! content, string? contentType = null, System.Text.Encoding? contentEncoding = null) -> Microsoft.AspNetCore.Http.IResult! -*REMOVED*static Microsoft.AspNetCore.Http.Results.Content(string! content, Microsoft.Net.Http.Headers.MediaTypeHeaderValue! contentType) -> Microsoft.AspNetCore.Http.IResult! -Microsoft.AspNetCore.Http.HttpResults.Utf8ContentHttpResult -Microsoft.AspNetCore.Http.HttpResults.Utf8ContentHttpResult.ContentType.get -> string? -Microsoft.AspNetCore.Http.HttpResults.Utf8ContentHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.Utf8ContentHttpResult.ResponseContent.get -> System.ReadOnlyMemory -Microsoft.AspNetCore.Http.HttpResults.Utf8ContentHttpResult.StatusCode.get -> int? -static Microsoft.AspNetCore.Http.Results.Accepted(string? uri = null, TValue? value = default(TValue?)) -> Microsoft.AspNetCore.Http.IResult! -static Microsoft.AspNetCore.Http.Results.AcceptedAtRoute(string? routeName = null, object? routeValues = null, TValue? value = default(TValue?)) -> Microsoft.AspNetCore.Http.IResult! -static Microsoft.AspNetCore.Http.Results.BadRequest(TValue? error) -> Microsoft.AspNetCore.Http.IResult! -static Microsoft.AspNetCore.Http.Results.Conflict(TValue? error) -> Microsoft.AspNetCore.Http.IResult! -static Microsoft.AspNetCore.Http.Results.Content(string? content, Microsoft.Net.Http.Headers.MediaTypeHeaderValue! contentType) -> Microsoft.AspNetCore.Http.IResult! -static Microsoft.AspNetCore.Http.Results.Content(string? content, string? contentType = null, System.Text.Encoding? contentEncoding = null, int? statusCode = null) -> Microsoft.AspNetCore.Http.IResult! -static Microsoft.AspNetCore.Http.Results.Content(string? content, string? contentType, System.Text.Encoding? contentEncoding) -> Microsoft.AspNetCore.Http.IResult! -*REMOVED*static Microsoft.AspNetCore.Http.Results.Text(string! content, string? contentType = null, System.Text.Encoding? contentEncoding = null) -> Microsoft.AspNetCore.Http.IResult! -static Microsoft.AspNetCore.Http.Results.Created(System.Uri! uri, TValue? value) -> Microsoft.AspNetCore.Http.IResult! -static Microsoft.AspNetCore.Http.Results.Created(string! uri, TValue? value) -> Microsoft.AspNetCore.Http.IResult! -static Microsoft.AspNetCore.Http.Results.CreatedAtRoute(string? routeName = null, object? routeValues = null, TValue? value = default(TValue?)) -> Microsoft.AspNetCore.Http.IResult! -static Microsoft.AspNetCore.Http.Results.Json(TValue? data, System.Text.Json.JsonSerializerOptions? options = null, string? contentType = null, int? statusCode = null) -> Microsoft.AspNetCore.Http.IResult! -static Microsoft.AspNetCore.Http.Results.NotFound(TValue? value) -> Microsoft.AspNetCore.Http.IResult! -static Microsoft.AspNetCore.Http.Results.Ok(TValue? value) -> Microsoft.AspNetCore.Http.IResult! -static Microsoft.AspNetCore.Http.Results.Text(string? content, string? contentType = null, System.Text.Encoding? contentEncoding = null, int? statusCode = null) -> Microsoft.AspNetCore.Http.IResult! -static Microsoft.AspNetCore.Http.Results.Text(string? content, string? contentType, System.Text.Encoding? contentEncoding) -> Microsoft.AspNetCore.Http.IResult! -static Microsoft.AspNetCore.Http.Results.Text(System.ReadOnlySpan utf8Content, string? contentType = null, int? statusCode = null) -> Microsoft.AspNetCore.Http.IResult! -static Microsoft.AspNetCore.Http.Results.UnprocessableEntity(TValue? error) -> Microsoft.AspNetCore.Http.IResult! -static Microsoft.AspNetCore.Http.TypedResults.Content(string? content, string? contentType = null, System.Text.Encoding? contentEncoding = null, int? statusCode = null) -> Microsoft.AspNetCore.Http.HttpResults.ContentHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.Content(string? content, string? contentType, System.Text.Encoding? contentEncoding) -> Microsoft.AspNetCore.Http.HttpResults.ContentHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.Text(string? content, string? contentType = null, System.Text.Encoding? contentEncoding = null, int? statusCode = null) -> Microsoft.AspNetCore.Http.HttpResults.ContentHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.Text(string? content, string? contentType, System.Text.Encoding? contentEncoding) -> Microsoft.AspNetCore.Http.HttpResults.ContentHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.Text(System.ReadOnlySpan utf8Content, string? contentType = null, int? statusCode = null) -> Microsoft.AspNetCore.Http.HttpResults.Utf8ContentHttpResult! -~Microsoft.AspNetCore.Http.HttpResults.Results -~Microsoft.AspNetCore.Http.HttpResults.Results.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext httpContext) -> System.Threading.Tasks.Task -~Microsoft.AspNetCore.Http.HttpResults.Results.Result.get -> Microsoft.AspNetCore.Http.IResult -~Microsoft.AspNetCore.Http.HttpResults.Results -~Microsoft.AspNetCore.Http.HttpResults.Results.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext httpContext) -> System.Threading.Tasks.Task -~Microsoft.AspNetCore.Http.HttpResults.Results.Result.get -> Microsoft.AspNetCore.Http.IResult -~Microsoft.AspNetCore.Http.HttpResults.Results -~Microsoft.AspNetCore.Http.HttpResults.Results.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext httpContext) -> System.Threading.Tasks.Task -~Microsoft.AspNetCore.Http.HttpResults.Results.Result.get -> Microsoft.AspNetCore.Http.IResult -~Microsoft.AspNetCore.Http.HttpResults.Results -~Microsoft.AspNetCore.Http.HttpResults.Results.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext httpContext) -> System.Threading.Tasks.Task -~Microsoft.AspNetCore.Http.HttpResults.Results.Result.get -> Microsoft.AspNetCore.Http.IResult -~Microsoft.AspNetCore.Http.HttpResults.Results -Microsoft.AspNetCore.Http.HttpResults.SignInHttpResult -Microsoft.AspNetCore.Http.HttpResults.SignInHttpResult.AuthenticationScheme.get -> string? -Microsoft.AspNetCore.Http.HttpResults.SignInHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.SignInHttpResult.Principal.get -> System.Security.Claims.ClaimsPrincipal! -Microsoft.AspNetCore.Http.HttpResults.SignInHttpResult.Properties.get -> Microsoft.AspNetCore.Authentication.AuthenticationProperties? -Microsoft.AspNetCore.Http.HttpResults.SignOutHttpResult -Microsoft.AspNetCore.Http.HttpResults.SignOutHttpResult.AuthenticationSchemes.get -> System.Collections.Generic.IReadOnlyList! -Microsoft.AspNetCore.Http.HttpResults.SignOutHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.SignOutHttpResult.Properties.get -> Microsoft.AspNetCore.Authentication.AuthenticationProperties? -Microsoft.AspNetCore.Http.HttpResults.StatusCodeHttpResult -Microsoft.AspNetCore.Http.HttpResults.StatusCodeHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.StatusCodeHttpResult.StatusCode.get -> int -Microsoft.AspNetCore.Http.HttpResults.UnauthorizedHttpResult -Microsoft.AspNetCore.Http.HttpResults.UnauthorizedHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.UnauthorizedHttpResult.StatusCode.get -> int -Microsoft.AspNetCore.Http.HttpResults.UnprocessableEntity -Microsoft.AspNetCore.Http.HttpResults.UnprocessableEntity.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.UnprocessableEntity.StatusCode.get -> int -Microsoft.AspNetCore.Http.HttpResults.UnprocessableEntity -Microsoft.AspNetCore.Http.HttpResults.UnprocessableEntity.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.UnprocessableEntity.StatusCode.get -> int -Microsoft.AspNetCore.Http.HttpResults.UnprocessableEntity.Value.get -> TValue? -Microsoft.AspNetCore.Http.HttpResults.ValidationProblem -Microsoft.AspNetCore.Http.HttpResults.ValidationProblem.ContentType.get -> string! -Microsoft.AspNetCore.Http.HttpResults.ValidationProblem.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.ValidationProblem.ProblemDetails.get -> Microsoft.AspNetCore.Http.HttpValidationProblemDetails! -Microsoft.AspNetCore.Http.HttpResults.ValidationProblem.StatusCode.get -> int -Microsoft.AspNetCore.Http.HttpResults.VirtualFileHttpResult -Microsoft.AspNetCore.Http.HttpResults.VirtualFileHttpResult.ContentType.get -> string! -Microsoft.AspNetCore.Http.HttpResults.VirtualFileHttpResult.EnableRangeProcessing.get -> bool -Microsoft.AspNetCore.Http.HttpResults.VirtualFileHttpResult.EntityTag.get -> Microsoft.Net.Http.Headers.EntityTagHeaderValue? -Microsoft.AspNetCore.Http.HttpResults.VirtualFileHttpResult.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Http.HttpResults.VirtualFileHttpResult.FileDownloadName.get -> string? -Microsoft.AspNetCore.Http.HttpResults.VirtualFileHttpResult.FileLength.get -> long? -Microsoft.AspNetCore.Http.HttpResults.VirtualFileHttpResult.FileName.get -> string! -Microsoft.AspNetCore.Http.HttpResults.VirtualFileHttpResult.LastModified.get -> System.DateTimeOffset? -Microsoft.AspNetCore.Http.TypedResults -static Microsoft.AspNetCore.Http.HttpResults.EmptyHttpResult.Instance.get -> Microsoft.AspNetCore.Http.HttpResults.EmptyHttpResult! -static Microsoft.AspNetCore.Http.Results.Bytes(System.ReadOnlyMemory contents, string? contentType = null, string? fileDownloadName = null, bool enableRangeProcessing = false, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null) -> Microsoft.AspNetCore.Http.IResult! -static Microsoft.AspNetCore.Http.Results.Empty.get -> Microsoft.AspNetCore.Http.IResult! -static Microsoft.AspNetCore.Http.Results.Stream(System.Func! streamWriterCallback, string? contentType = null, string? fileDownloadName = null, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null) -> Microsoft.AspNetCore.Http.IResult! -static Microsoft.AspNetCore.Http.Results.Stream(System.IO.Pipelines.PipeReader! pipeReader, string? contentType = null, string? fileDownloadName = null, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null, bool enableRangeProcessing = false) -> Microsoft.AspNetCore.Http.IResult! -static Microsoft.AspNetCore.Http.TypedResults.Accepted(System.Uri! uri) -> Microsoft.AspNetCore.Http.HttpResults.Accepted! -static Microsoft.AspNetCore.Http.TypedResults.Accepted(string? uri) -> Microsoft.AspNetCore.Http.HttpResults.Accepted! -static Microsoft.AspNetCore.Http.TypedResults.Accepted(System.Uri! uri, TValue? value) -> Microsoft.AspNetCore.Http.HttpResults.Accepted! -static Microsoft.AspNetCore.Http.TypedResults.Accepted(string? uri, TValue? value) -> Microsoft.AspNetCore.Http.HttpResults.Accepted! -static Microsoft.AspNetCore.Http.TypedResults.AcceptedAtRoute(string? routeName = null, object? routeValues = null) -> Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute! -static Microsoft.AspNetCore.Http.TypedResults.AcceptedAtRoute(TValue? value, string? routeName = null, object? routeValues = null) -> Microsoft.AspNetCore.Http.HttpResults.AcceptedAtRoute! -static Microsoft.AspNetCore.Http.TypedResults.BadRequest() -> Microsoft.AspNetCore.Http.HttpResults.BadRequest! -static Microsoft.AspNetCore.Http.TypedResults.BadRequest(TValue? error) -> Microsoft.AspNetCore.Http.HttpResults.BadRequest! -static Microsoft.AspNetCore.Http.TypedResults.Bytes(System.ReadOnlyMemory contents, string? contentType = null, string? fileDownloadName = null, bool enableRangeProcessing = false, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null) -> Microsoft.AspNetCore.Http.HttpResults.FileContentHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.Bytes(byte[]! contents, string? contentType = null, string? fileDownloadName = null, bool enableRangeProcessing = false, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null) -> Microsoft.AspNetCore.Http.HttpResults.FileContentHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.Challenge(Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties = null, System.Collections.Generic.IList? authenticationSchemes = null) -> Microsoft.AspNetCore.Http.HttpResults.ChallengeHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.Conflict() -> Microsoft.AspNetCore.Http.HttpResults.Conflict! -static Microsoft.AspNetCore.Http.TypedResults.Conflict(TValue? error) -> Microsoft.AspNetCore.Http.HttpResults.Conflict! -static Microsoft.AspNetCore.Http.TypedResults.Content(string? content, Microsoft.Net.Http.Headers.MediaTypeHeaderValue! contentType) -> Microsoft.AspNetCore.Http.HttpResults.ContentHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.Created(System.Uri! uri) -> Microsoft.AspNetCore.Http.HttpResults.Created! -static Microsoft.AspNetCore.Http.TypedResults.Created(string! uri) -> Microsoft.AspNetCore.Http.HttpResults.Created! -static Microsoft.AspNetCore.Http.TypedResults.Created(System.Uri! uri, TValue? value) -> Microsoft.AspNetCore.Http.HttpResults.Created! -static Microsoft.AspNetCore.Http.TypedResults.Created(string! uri, TValue? value) -> Microsoft.AspNetCore.Http.HttpResults.Created! -static Microsoft.AspNetCore.Http.TypedResults.CreatedAtRoute(string? routeName = null, object? routeValues = null) -> Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute! -static Microsoft.AspNetCore.Http.TypedResults.CreatedAtRoute(TValue? value, string? routeName = null, object? routeValues = null) -> Microsoft.AspNetCore.Http.HttpResults.CreatedAtRoute! -static Microsoft.AspNetCore.Http.TypedResults.Empty.get -> Microsoft.AspNetCore.Http.HttpResults.EmptyHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.File(System.IO.Stream! fileStream, string? contentType = null, string? fileDownloadName = null, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null, bool enableRangeProcessing = false) -> Microsoft.AspNetCore.Http.HttpResults.FileStreamHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.File(byte[]! fileContents, string? contentType = null, string? fileDownloadName = null, bool enableRangeProcessing = false, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null) -> Microsoft.AspNetCore.Http.HttpResults.FileContentHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.Forbid(Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties = null, System.Collections.Generic.IList? authenticationSchemes = null) -> Microsoft.AspNetCore.Http.HttpResults.ForbidHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.Json(TValue? data, System.Text.Json.JsonSerializerOptions? options = null, string? contentType = null, int? statusCode = null) -> Microsoft.AspNetCore.Http.HttpResults.JsonHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.LocalRedirect(string! localUrl, bool permanent = false, bool preserveMethod = false) -> Microsoft.AspNetCore.Http.HttpResults.RedirectHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.NoContent() -> Microsoft.AspNetCore.Http.HttpResults.NoContent! -static Microsoft.AspNetCore.Http.TypedResults.NotFound() -> Microsoft.AspNetCore.Http.HttpResults.NotFound! -static Microsoft.AspNetCore.Http.TypedResults.NotFound(TValue? value) -> Microsoft.AspNetCore.Http.HttpResults.NotFound! -static Microsoft.AspNetCore.Http.TypedResults.Ok() -> Microsoft.AspNetCore.Http.HttpResults.Ok! -static Microsoft.AspNetCore.Http.TypedResults.Ok(TValue? value) -> Microsoft.AspNetCore.Http.HttpResults.Ok! -static Microsoft.AspNetCore.Http.TypedResults.PhysicalFile(string! path, string? contentType = null, string? fileDownloadName = null, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null, bool enableRangeProcessing = false) -> Microsoft.AspNetCore.Http.HttpResults.PhysicalFileHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.Problem(Microsoft.AspNetCore.Mvc.ProblemDetails! problemDetails) -> Microsoft.AspNetCore.Http.HttpResults.ProblemHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.Problem(string? detail = null, string? instance = null, int? statusCode = null, string? title = null, string? type = null, System.Collections.Generic.IDictionary? extensions = null) -> Microsoft.AspNetCore.Http.HttpResults.ProblemHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.Redirect(string! url, bool permanent = false, bool preserveMethod = false) -> Microsoft.AspNetCore.Http.HttpResults.RedirectHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.RedirectToRoute(string? routeName = null, object? routeValues = null, bool permanent = false, bool preserveMethod = false, string? fragment = null) -> Microsoft.AspNetCore.Http.HttpResults.RedirectToRouteHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.SignIn(System.Security.Claims.ClaimsPrincipal! principal, Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties = null, string? authenticationScheme = null) -> Microsoft.AspNetCore.Http.HttpResults.SignInHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.SignOut(Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties = null, System.Collections.Generic.IList? authenticationSchemes = null) -> Microsoft.AspNetCore.Http.HttpResults.SignOutHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.StatusCode(int statusCode) -> Microsoft.AspNetCore.Http.HttpResults.StatusCodeHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.Stream(System.Func! streamWriterCallback, string? contentType = null, string? fileDownloadName = null, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null) -> Microsoft.AspNetCore.Http.HttpResults.PushStreamHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.Stream(System.IO.Pipelines.PipeReader! pipeReader, string? contentType = null, string? fileDownloadName = null, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null, bool enableRangeProcessing = false) -> Microsoft.AspNetCore.Http.HttpResults.FileStreamHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.Stream(System.IO.Stream! stream, string? contentType = null, string? fileDownloadName = null, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null, bool enableRangeProcessing = false) -> Microsoft.AspNetCore.Http.HttpResults.FileStreamHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.Unauthorized() -> Microsoft.AspNetCore.Http.HttpResults.UnauthorizedHttpResult! -static Microsoft.AspNetCore.Http.TypedResults.UnprocessableEntity() -> Microsoft.AspNetCore.Http.HttpResults.UnprocessableEntity! -static Microsoft.AspNetCore.Http.TypedResults.UnprocessableEntity(TValue? error) -> Microsoft.AspNetCore.Http.HttpResults.UnprocessableEntity! -static Microsoft.AspNetCore.Http.TypedResults.ValidationProblem(System.Collections.Generic.IDictionary! errors, string? detail = null, string? instance = null, string? title = null, string? type = null, System.Collections.Generic.IDictionary? extensions = null) -> Microsoft.AspNetCore.Http.HttpResults.ValidationProblem! -static Microsoft.AspNetCore.Http.TypedResults.VirtualFile(string! path, string? contentType = null, string? fileDownloadName = null, System.DateTimeOffset? lastModified = null, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = null, bool enableRangeProcessing = false) -> Microsoft.AspNetCore.Http.HttpResults.VirtualFileHttpResult! -~Microsoft.AspNetCore.Http.HttpResults.Results.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext httpContext) -> System.Threading.Tasks.Task -~Microsoft.AspNetCore.Http.HttpResults.Results.Result.get -> Microsoft.AspNetCore.Http.IResult -~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult1 result) -> Microsoft.AspNetCore.Http.HttpResults.Results -~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult2 result) -> Microsoft.AspNetCore.Http.HttpResults.Results -~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult3 result) -> Microsoft.AspNetCore.Http.HttpResults.Results -~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult4 result) -> Microsoft.AspNetCore.Http.HttpResults.Results -~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult5 result) -> Microsoft.AspNetCore.Http.HttpResults.Results -~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult6 result) -> Microsoft.AspNetCore.Http.HttpResults.Results -~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult1 result) -> Microsoft.AspNetCore.Http.HttpResults.Results -~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult2 result) -> Microsoft.AspNetCore.Http.HttpResults.Results -~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult3 result) -> Microsoft.AspNetCore.Http.HttpResults.Results -~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult4 result) -> Microsoft.AspNetCore.Http.HttpResults.Results -~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult5 result) -> Microsoft.AspNetCore.Http.HttpResults.Results -~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult1 result) -> Microsoft.AspNetCore.Http.HttpResults.Results -~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult2 result) -> Microsoft.AspNetCore.Http.HttpResults.Results -~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult3 result) -> Microsoft.AspNetCore.Http.HttpResults.Results -~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult4 result) -> Microsoft.AspNetCore.Http.HttpResults.Results -~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult1 result) -> Microsoft.AspNetCore.Http.HttpResults.Results -~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult2 result) -> Microsoft.AspNetCore.Http.HttpResults.Results -~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult3 result) -> Microsoft.AspNetCore.Http.HttpResults.Results -~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult1 result) -> Microsoft.AspNetCore.Http.HttpResults.Results -~static Microsoft.AspNetCore.Http.HttpResults.Results.implicit operator Microsoft.AspNetCore.Http.HttpResults.Results(TResult2 result) -> Microsoft.AspNetCore.Http.HttpResults.Results diff --git a/src/Http/Http/src/PublicAPI.Shipped.txt b/src/Http/Http/src/PublicAPI.Shipped.txt index 296aaa87ed56..b3c0a3823a8c 100644 --- a/src/Http/Http/src/PublicAPI.Shipped.txt +++ b/src/Http/Http/src/PublicAPI.Shipped.txt @@ -166,12 +166,12 @@ Microsoft.AspNetCore.Http.Features.TlsConnectionFeature.ClientCertificate.set -> Microsoft.AspNetCore.Http.Features.TlsConnectionFeature.GetClientCertificateAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Http.Features.TlsConnectionFeature.TlsConnectionFeature() -> void Microsoft.AspNetCore.Http.FormCollection -Microsoft.AspNetCore.Http.FormCollection.Enumerator.Enumerator() -> void Microsoft.AspNetCore.Http.FormCollection.ContainsKey(string! key) -> bool Microsoft.AspNetCore.Http.FormCollection.Count.get -> int Microsoft.AspNetCore.Http.FormCollection.Enumerator Microsoft.AspNetCore.Http.FormCollection.Enumerator.Current.get -> System.Collections.Generic.KeyValuePair Microsoft.AspNetCore.Http.FormCollection.Enumerator.Dispose() -> void +Microsoft.AspNetCore.Http.FormCollection.Enumerator.Enumerator() -> void Microsoft.AspNetCore.Http.FormCollection.Enumerator.MoveNext() -> bool Microsoft.AspNetCore.Http.FormCollection.Files.get -> Microsoft.AspNetCore.Http.IFormFileCollection! Microsoft.AspNetCore.Http.FormCollection.FormCollection(System.Collections.Generic.Dictionary? fields, Microsoft.AspNetCore.Http.IFormFileCollection? files = null) -> void @@ -199,7 +199,6 @@ Microsoft.AspNetCore.Http.FormFileCollection.GetFile(string! name) -> Microsoft. Microsoft.AspNetCore.Http.FormFileCollection.GetFiles(string! name) -> System.Collections.Generic.IReadOnlyList! Microsoft.AspNetCore.Http.FormFileCollection.this[string! name].get -> Microsoft.AspNetCore.Http.IFormFile? Microsoft.AspNetCore.Http.HeaderDictionary -Microsoft.AspNetCore.Http.HeaderDictionary.Enumerator.Enumerator() -> void Microsoft.AspNetCore.Http.HeaderDictionary.Add(string! key, Microsoft.Extensions.Primitives.StringValues value) -> void Microsoft.AspNetCore.Http.HeaderDictionary.Add(System.Collections.Generic.KeyValuePair item) -> void Microsoft.AspNetCore.Http.HeaderDictionary.Clear() -> void @@ -212,6 +211,7 @@ Microsoft.AspNetCore.Http.HeaderDictionary.Count.get -> int Microsoft.AspNetCore.Http.HeaderDictionary.Enumerator Microsoft.AspNetCore.Http.HeaderDictionary.Enumerator.Current.get -> System.Collections.Generic.KeyValuePair Microsoft.AspNetCore.Http.HeaderDictionary.Enumerator.Dispose() -> void +Microsoft.AspNetCore.Http.HeaderDictionary.Enumerator.Enumerator() -> void Microsoft.AspNetCore.Http.HeaderDictionary.Enumerator.MoveNext() -> bool Microsoft.AspNetCore.Http.HeaderDictionary.GetEnumerator() -> Microsoft.AspNetCore.Http.HeaderDictionary.Enumerator Microsoft.AspNetCore.Http.HeaderDictionary.HeaderDictionary() -> void @@ -236,12 +236,12 @@ Microsoft.AspNetCore.Http.MiddlewareFactory.Create(System.Type! middlewareType) Microsoft.AspNetCore.Http.MiddlewareFactory.MiddlewareFactory(System.IServiceProvider! serviceProvider) -> void Microsoft.AspNetCore.Http.MiddlewareFactory.Release(Microsoft.AspNetCore.Http.IMiddleware! middleware) -> void Microsoft.AspNetCore.Http.QueryCollection -Microsoft.AspNetCore.Http.QueryCollection.Enumerator.Enumerator() -> void Microsoft.AspNetCore.Http.QueryCollection.ContainsKey(string! key) -> bool Microsoft.AspNetCore.Http.QueryCollection.Count.get -> int Microsoft.AspNetCore.Http.QueryCollection.Enumerator Microsoft.AspNetCore.Http.QueryCollection.Enumerator.Current.get -> System.Collections.Generic.KeyValuePair Microsoft.AspNetCore.Http.QueryCollection.Enumerator.Dispose() -> void +Microsoft.AspNetCore.Http.QueryCollection.Enumerator.Enumerator() -> void Microsoft.AspNetCore.Http.QueryCollection.Enumerator.MoveNext() -> bool Microsoft.AspNetCore.Http.QueryCollection.GetEnumerator() -> Microsoft.AspNetCore.Http.QueryCollection.Enumerator Microsoft.AspNetCore.Http.QueryCollection.Keys.get -> System.Collections.Generic.ICollection! @@ -258,7 +258,7 @@ Microsoft.AspNetCore.Http.StreamResponseBodyFeature.Dispose() -> void Microsoft.AspNetCore.Http.StreamResponseBodyFeature.PriorFeature.get -> Microsoft.AspNetCore.Http.Features.IHttpResponseBodyFeature? Microsoft.AspNetCore.Http.StreamResponseBodyFeature.Stream.get -> System.IO.Stream! Microsoft.AspNetCore.Http.StreamResponseBodyFeature.StreamResponseBodyFeature(System.IO.Stream! stream) -> void -Microsoft.AspNetCore.Http.StreamResponseBodyFeature.StreamResponseBodyFeature(System.IO.Stream! stream, Microsoft.AspNetCore.Http.Features.IHttpResponseBodyFeature! priorFeature) -> void +Microsoft.AspNetCore.Http.StreamResponseBodyFeature.StreamResponseBodyFeature(System.IO.Stream! stream, Microsoft.AspNetCore.Http.Features.IHttpResponseBodyFeature? priorFeature) -> void Microsoft.AspNetCore.Http.StreamResponseBodyFeature.Writer.get -> System.IO.Pipelines.PipeWriter! Microsoft.Extensions.DependencyInjection.HttpServiceCollectionExtensions override Microsoft.AspNetCore.Http.BindingAddress.Equals(object? obj) -> bool diff --git a/src/Http/Http/src/PublicAPI.Unshipped.txt b/src/Http/Http/src/PublicAPI.Unshipped.txt index a158cc48ca22..7dc5c58110bf 100644 --- a/src/Http/Http/src/PublicAPI.Unshipped.txt +++ b/src/Http/Http/src/PublicAPI.Unshipped.txt @@ -1,3 +1 @@ #nullable enable -*REMOVED*Microsoft.AspNetCore.Http.StreamResponseBodyFeature.StreamResponseBodyFeature(System.IO.Stream! stream, Microsoft.AspNetCore.Http.Features.IHttpResponseBodyFeature! priorFeature) -> void -Microsoft.AspNetCore.Http.StreamResponseBodyFeature.StreamResponseBodyFeature(System.IO.Stream! stream, Microsoft.AspNetCore.Http.Features.IHttpResponseBodyFeature? priorFeature) -> void diff --git a/src/Http/Routing.Abstractions/src/PublicAPI.Shipped.txt b/src/Http/Routing.Abstractions/src/PublicAPI.Shipped.txt index 6a1e52ffd1a9..805d7fb17f9b 100644 --- a/src/Http/Routing.Abstractions/src/PublicAPI.Shipped.txt +++ b/src/Http/Routing.Abstractions/src/PublicAPI.Shipped.txt @@ -13,7 +13,7 @@ Microsoft.AspNetCore.Http.EndpointMetadataCollection.Count.get -> int (forwarded Microsoft.AspNetCore.Http.EndpointMetadataCollection.EndpointMetadataCollection(params object![]! items) -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) Microsoft.AspNetCore.Http.EndpointMetadataCollection.EndpointMetadataCollection(System.Collections.Generic.IEnumerable! items) -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.Current.get -> object? (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.Current.get -> object! (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.Dispose() -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.Enumerator() -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.MoveNext() -> bool (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) @@ -21,6 +21,7 @@ Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.Reset() -> void Microsoft.AspNetCore.Http.EndpointMetadataCollection.GetEnumerator() -> Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) Microsoft.AspNetCore.Http.EndpointMetadataCollection.GetMetadata() -> T? (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) Microsoft.AspNetCore.Http.EndpointMetadataCollection.GetOrderedMetadata() -> System.Collections.Generic.IReadOnlyList! (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Http.EndpointMetadataCollection.GetRequiredMetadata() -> T! (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) Microsoft.AspNetCore.Http.EndpointMetadataCollection.this[int index].get -> object! (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) Microsoft.AspNetCore.Http.Features.IEndpointFeature (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) Microsoft.AspNetCore.Http.Features.IEndpointFeature.Endpoint.get -> Microsoft.AspNetCore.Http.Endpoint? (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) @@ -65,8 +66,8 @@ Microsoft.AspNetCore.Routing.RouteData.RouteData() -> void Microsoft.AspNetCore.Routing.RouteData.RouteData(Microsoft.AspNetCore.Routing.RouteData! other) -> void Microsoft.AspNetCore.Routing.RouteData.RouteData(Microsoft.AspNetCore.Routing.RouteValueDictionary! values) -> void Microsoft.AspNetCore.Routing.RouteData.RouteDataSnapshot -Microsoft.AspNetCore.Routing.RouteData.RouteDataSnapshot.RouteDataSnapshot() -> void Microsoft.AspNetCore.Routing.RouteData.RouteDataSnapshot.Restore() -> void +Microsoft.AspNetCore.Routing.RouteData.RouteDataSnapshot.RouteDataSnapshot() -> void Microsoft.AspNetCore.Routing.RouteData.RouteDataSnapshot.RouteDataSnapshot(Microsoft.AspNetCore.Routing.RouteData! routeData, Microsoft.AspNetCore.Routing.RouteValueDictionary? dataTokens, System.Collections.Generic.IList? routers, Microsoft.AspNetCore.Routing.RouteValueDictionary? values) -> void Microsoft.AspNetCore.Routing.RouteData.Routers.get -> System.Collections.Generic.IList! Microsoft.AspNetCore.Routing.RouteData.Values.get -> Microsoft.AspNetCore.Routing.RouteValueDictionary! diff --git a/src/Http/Routing.Abstractions/src/PublicAPI.Unshipped.txt b/src/Http/Routing.Abstractions/src/PublicAPI.Unshipped.txt index 5cad7f7ef8e2..7dc5c58110bf 100644 --- a/src/Http/Routing.Abstractions/src/PublicAPI.Unshipped.txt +++ b/src/Http/Routing.Abstractions/src/PublicAPI.Unshipped.txt @@ -1,4 +1 @@ #nullable enable -*REMOVED*Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.Current.get -> object? (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Http.EndpointMetadataCollection.Enumerator.Current.get -> object! (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Http.EndpointMetadataCollection.GetRequiredMetadata() -> T! (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) diff --git a/src/Http/Routing/src/PublicAPI.Shipped.txt b/src/Http/Routing/src/PublicAPI.Shipped.txt index ced97f229a6e..71545ee9c6f9 100644 --- a/src/Http/Routing/src/PublicAPI.Shipped.txt +++ b/src/Http/Routing/src/PublicAPI.Shipped.txt @@ -1,6 +1,4 @@ #nullable enable -Microsoft.AspNetCore.Routing.DefaultInlineConstraintResolver.DefaultInlineConstraintResolver(Microsoft.Extensions.Options.IOptions! routeOptions, System.IServiceProvider! serviceProvider) -> void -Microsoft.AspNetCore.Routing.Matching.EndpointMetadataComparer ~Microsoft.AspNetCore.Routing.Tree.InboundMatch.Entry.get -> Microsoft.AspNetCore.Routing.Tree.InboundRouteEntry ~Microsoft.AspNetCore.Routing.Tree.InboundMatch.Entry.set -> void ~Microsoft.AspNetCore.Routing.Tree.InboundMatch.TemplateMatcher.get -> Microsoft.AspNetCore.Routing.Template.TemplateMatcher @@ -71,16 +69,19 @@ Microsoft.AspNetCore.Builder.FallbackEndpointRouteBuilderExtensions Microsoft.AspNetCore.Builder.MapRouteRouteBuilderExtensions Microsoft.AspNetCore.Builder.RouteHandlerBuilder Microsoft.AspNetCore.Builder.RouteHandlerBuilder.Add(System.Action! convention) -> void +Microsoft.AspNetCore.Builder.RouteHandlerBuilder.Finally(System.Action! finalConvention) -> void Microsoft.AspNetCore.Builder.RouteHandlerBuilder.RouteHandlerBuilder(System.Collections.Generic.IEnumerable! endpointConventionBuilders) -> void Microsoft.AspNetCore.Builder.RouterMiddleware Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Builder.RouterMiddleware.RouterMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.AspNetCore.Routing.IRouter! router) -> void Microsoft.AspNetCore.Builder.RoutingBuilderExtensions Microsoft.AspNetCore.Builder.RoutingEndpointConventionBuilderExtensions +Microsoft.AspNetCore.Http.EndpointFilterExtensions Microsoft.AspNetCore.Http.OpenApiRouteHandlerBuilderExtensions Microsoft.AspNetCore.Routing.CompositeEndpointDataSource Microsoft.AspNetCore.Routing.CompositeEndpointDataSource.CompositeEndpointDataSource(System.Collections.Generic.IEnumerable! endpointDataSources) -> void Microsoft.AspNetCore.Routing.CompositeEndpointDataSource.DataSources.get -> System.Collections.Generic.IEnumerable! +Microsoft.AspNetCore.Routing.CompositeEndpointDataSource.Dispose() -> void Microsoft.AspNetCore.Routing.Constraints.AlphaRouteConstraint Microsoft.AspNetCore.Routing.Constraints.AlphaRouteConstraint.AlphaRouteConstraint() -> void Microsoft.AspNetCore.Routing.Constraints.BoolRouteConstraint @@ -171,6 +172,7 @@ Microsoft.AspNetCore.Routing.DefaultEndpointDataSource Microsoft.AspNetCore.Routing.DefaultEndpointDataSource.DefaultEndpointDataSource(params Microsoft.AspNetCore.Http.Endpoint![]! endpoints) -> void Microsoft.AspNetCore.Routing.DefaultEndpointDataSource.DefaultEndpointDataSource(System.Collections.Generic.IEnumerable! endpoints) -> void Microsoft.AspNetCore.Routing.DefaultInlineConstraintResolver +Microsoft.AspNetCore.Routing.DefaultInlineConstraintResolver.DefaultInlineConstraintResolver(Microsoft.Extensions.Options.IOptions! routeOptions, System.IServiceProvider! serviceProvider) -> void Microsoft.AspNetCore.Routing.EndpointDataSource Microsoft.AspNetCore.Routing.EndpointDataSource.EndpointDataSource() -> void Microsoft.AspNetCore.Routing.EndpointGroupNameAttribute @@ -191,6 +193,7 @@ Microsoft.AspNetCore.Routing.HostAttribute.HostAttribute(string! host) -> void Microsoft.AspNetCore.Routing.HostAttribute.Hosts.get -> System.Collections.Generic.IReadOnlyList! Microsoft.AspNetCore.Routing.HttpMethodMetadata Microsoft.AspNetCore.Routing.HttpMethodMetadata.AcceptCorsPreflight.get -> bool +Microsoft.AspNetCore.Routing.HttpMethodMetadata.AcceptCorsPreflight.set -> void Microsoft.AspNetCore.Routing.HttpMethodMetadata.HttpMethodMetadata(System.Collections.Generic.IEnumerable! httpMethods) -> void Microsoft.AspNetCore.Routing.HttpMethodMetadata.HttpMethodMetadata(System.Collections.Generic.IEnumerable! httpMethods, bool acceptCorsPreflight) -> void Microsoft.AspNetCore.Routing.HttpMethodMetadata.HttpMethods.get -> System.Collections.Generic.IReadOnlyList! @@ -214,6 +217,7 @@ Microsoft.AspNetCore.Routing.IHostMetadata Microsoft.AspNetCore.Routing.IHostMetadata.Hosts.get -> System.Collections.Generic.IReadOnlyList! Microsoft.AspNetCore.Routing.IHttpMethodMetadata Microsoft.AspNetCore.Routing.IHttpMethodMetadata.AcceptCorsPreflight.get -> bool +Microsoft.AspNetCore.Routing.IHttpMethodMetadata.AcceptCorsPreflight.set -> void Microsoft.AspNetCore.Routing.IHttpMethodMetadata.HttpMethods.get -> System.Collections.Generic.IReadOnlyList! Microsoft.AspNetCore.Routing.IInlineConstraintResolver Microsoft.AspNetCore.Routing.IInlineConstraintResolver.ResolveConstraint(string! inlineConstraint) -> Microsoft.AspNetCore.Routing.IRouteConstraint? @@ -259,6 +263,7 @@ Microsoft.AspNetCore.Routing.Matching.CandidateState.Endpoint.get -> Microsoft.A Microsoft.AspNetCore.Routing.Matching.CandidateState.Score.get -> int Microsoft.AspNetCore.Routing.Matching.CandidateState.Values.get -> Microsoft.AspNetCore.Routing.RouteValueDictionary? Microsoft.AspNetCore.Routing.Matching.EndpointMetadataComparer +Microsoft.AspNetCore.Routing.Matching.EndpointMetadataComparer Microsoft.AspNetCore.Routing.Matching.EndpointMetadataComparer.Compare(Microsoft.AspNetCore.Http.Endpoint? x, Microsoft.AspNetCore.Http.Endpoint? y) -> int Microsoft.AspNetCore.Routing.Matching.EndpointMetadataComparer.EndpointMetadataComparer() -> void Microsoft.AspNetCore.Routing.Matching.EndpointSelector @@ -289,13 +294,13 @@ Microsoft.AspNetCore.Routing.Matching.IParameterLiteralNodeMatchingPolicy.Matche Microsoft.AspNetCore.Routing.Matching.PolicyJumpTable Microsoft.AspNetCore.Routing.Matching.PolicyJumpTable.PolicyJumpTable() -> void Microsoft.AspNetCore.Routing.Matching.PolicyJumpTableEdge -Microsoft.AspNetCore.Routing.Matching.PolicyJumpTableEdge.PolicyJumpTableEdge() -> void Microsoft.AspNetCore.Routing.Matching.PolicyJumpTableEdge.Destination.get -> int +Microsoft.AspNetCore.Routing.Matching.PolicyJumpTableEdge.PolicyJumpTableEdge() -> void Microsoft.AspNetCore.Routing.Matching.PolicyJumpTableEdge.PolicyJumpTableEdge(object! state, int destination) -> void Microsoft.AspNetCore.Routing.Matching.PolicyJumpTableEdge.State.get -> object! Microsoft.AspNetCore.Routing.Matching.PolicyNodeEdge -Microsoft.AspNetCore.Routing.Matching.PolicyNodeEdge.PolicyNodeEdge() -> void Microsoft.AspNetCore.Routing.Matching.PolicyNodeEdge.Endpoints.get -> System.Collections.Generic.IReadOnlyList! +Microsoft.AspNetCore.Routing.Matching.PolicyNodeEdge.PolicyNodeEdge() -> void Microsoft.AspNetCore.Routing.Matching.PolicyNodeEdge.PolicyNodeEdge(object! state, System.Collections.Generic.IReadOnlyList! endpoints) -> void Microsoft.AspNetCore.Routing.Matching.PolicyNodeEdge.State.get -> object! Microsoft.AspNetCore.Routing.ParameterPolicyFactory @@ -387,9 +392,20 @@ Microsoft.AspNetCore.Routing.RouteEndpoint.RoutePattern.get -> Microsoft.AspNetC Microsoft.AspNetCore.Routing.RouteEndpointBuilder Microsoft.AspNetCore.Routing.RouteEndpointBuilder.Order.get -> int Microsoft.AspNetCore.Routing.RouteEndpointBuilder.Order.set -> void -Microsoft.AspNetCore.Routing.RouteEndpointBuilder.RouteEndpointBuilder(Microsoft.AspNetCore.Http.RequestDelegate! requestDelegate, Microsoft.AspNetCore.Routing.Patterns.RoutePattern! routePattern, int order) -> void +Microsoft.AspNetCore.Routing.RouteEndpointBuilder.RouteEndpointBuilder(Microsoft.AspNetCore.Http.RequestDelegate? requestDelegate, Microsoft.AspNetCore.Routing.Patterns.RoutePattern! routePattern, int order) -> void Microsoft.AspNetCore.Routing.RouteEndpointBuilder.RoutePattern.get -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! Microsoft.AspNetCore.Routing.RouteEndpointBuilder.RoutePattern.set -> void +Microsoft.AspNetCore.Routing.RouteGroupBuilder +Microsoft.AspNetCore.Routing.RouteGroupContext +Microsoft.AspNetCore.Routing.RouteGroupContext.ApplicationServices.get -> System.IServiceProvider! +Microsoft.AspNetCore.Routing.RouteGroupContext.ApplicationServices.init -> void +Microsoft.AspNetCore.Routing.RouteGroupContext.Conventions.get -> System.Collections.Generic.IReadOnlyList!>! +Microsoft.AspNetCore.Routing.RouteGroupContext.Conventions.init -> void +Microsoft.AspNetCore.Routing.RouteGroupContext.FinallyConventions.get -> System.Collections.Generic.IReadOnlyList!>! +Microsoft.AspNetCore.Routing.RouteGroupContext.FinallyConventions.init -> void +Microsoft.AspNetCore.Routing.RouteGroupContext.Prefix.get -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! +Microsoft.AspNetCore.Routing.RouteGroupContext.Prefix.init -> void +Microsoft.AspNetCore.Routing.RouteGroupContext.RouteGroupContext() -> void Microsoft.AspNetCore.Routing.RouteHandler Microsoft.AspNetCore.Routing.RouteHandler.GetRequestHandler(Microsoft.AspNetCore.Http.HttpContext! httpContext, Microsoft.AspNetCore.Routing.RouteData! routeData) -> Microsoft.AspNetCore.Http.RequestDelegate! Microsoft.AspNetCore.Routing.RouteHandler.GetVirtualPath(Microsoft.AspNetCore.Routing.VirtualPathContext! context) -> Microsoft.AspNetCore.Routing.VirtualPathData? @@ -412,6 +428,8 @@ Microsoft.AspNetCore.Routing.RouteOptions.LowercaseQueryStrings.set -> void Microsoft.AspNetCore.Routing.RouteOptions.LowercaseUrls.get -> bool Microsoft.AspNetCore.Routing.RouteOptions.LowercaseUrls.set -> void Microsoft.AspNetCore.Routing.RouteOptions.RouteOptions() -> void +Microsoft.AspNetCore.Routing.RouteOptions.SetParameterPolicy(string! token, System.Type! type) -> void +Microsoft.AspNetCore.Routing.RouteOptions.SetParameterPolicy(string! token) -> void Microsoft.AspNetCore.Routing.RouteOptions.SuppressCheckForUnhandledSecurityMetadata.get -> bool Microsoft.AspNetCore.Routing.RouteOptions.SuppressCheckForUnhandledSecurityMetadata.set -> void Microsoft.AspNetCore.Routing.RouteValueEqualityComparer @@ -520,6 +538,7 @@ Microsoft.AspNetCore.Routing.Tree.UrlMatchingTree.UrlMatchingTree(int order) -> Microsoft.Extensions.DependencyInjection.RoutingServiceCollectionExtensions override Microsoft.AspNetCore.Routing.CompositeEndpointDataSource.Endpoints.get -> System.Collections.Generic.IReadOnlyList! override Microsoft.AspNetCore.Routing.CompositeEndpointDataSource.GetChangeToken() -> Microsoft.Extensions.Primitives.IChangeToken! +override Microsoft.AspNetCore.Routing.CompositeEndpointDataSource.GetGroupedEndpoints(Microsoft.AspNetCore.Routing.RouteGroupContext! context) -> System.Collections.Generic.IReadOnlyList! override Microsoft.AspNetCore.Routing.DefaultEndpointDataSource.Endpoints.get -> System.Collections.Generic.IReadOnlyList! override Microsoft.AspNetCore.Routing.DefaultEndpointDataSource.GetChangeToken() -> Microsoft.Extensions.Primitives.IChangeToken! override Microsoft.AspNetCore.Routing.Matching.HostMatcherPolicy.Order.get -> int @@ -529,6 +548,7 @@ override Microsoft.AspNetCore.Routing.Route.OnRouteMatched(Microsoft.AspNetCore. override Microsoft.AspNetCore.Routing.Route.OnVirtualPathGenerated(Microsoft.AspNetCore.Routing.VirtualPathContext! context) -> Microsoft.AspNetCore.Routing.VirtualPathData? override Microsoft.AspNetCore.Routing.RouteBase.ToString() -> string! override Microsoft.AspNetCore.Routing.RouteEndpointBuilder.Build() -> Microsoft.AspNetCore.Http.Endpoint! +override Microsoft.AspNetCore.Routing.RouteValuesAddress.ToString() -> string? static Microsoft.AspNetCore.Builder.EndpointRouteBuilderExtensions.Map(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, Microsoft.AspNetCore.Routing.Patterns.RoutePattern! pattern, Microsoft.AspNetCore.Http.RequestDelegate! requestDelegate) -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder! static Microsoft.AspNetCore.Builder.EndpointRouteBuilderExtensions.Map(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, Microsoft.AspNetCore.Routing.Patterns.RoutePattern! pattern, System.Delegate! handler) -> Microsoft.AspNetCore.Builder.RouteHandlerBuilder! static Microsoft.AspNetCore.Builder.EndpointRouteBuilderExtensions.Map(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, string! pattern, Microsoft.AspNetCore.Http.RequestDelegate! requestDelegate) -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder! @@ -539,8 +559,12 @@ static Microsoft.AspNetCore.Builder.EndpointRouteBuilderExtensions.MapFallback(t static Microsoft.AspNetCore.Builder.EndpointRouteBuilderExtensions.MapFallback(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, System.Delegate! handler) -> Microsoft.AspNetCore.Builder.RouteHandlerBuilder! static Microsoft.AspNetCore.Builder.EndpointRouteBuilderExtensions.MapGet(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, string! pattern, Microsoft.AspNetCore.Http.RequestDelegate! requestDelegate) -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder! static Microsoft.AspNetCore.Builder.EndpointRouteBuilderExtensions.MapGet(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, string! pattern, System.Delegate! handler) -> Microsoft.AspNetCore.Builder.RouteHandlerBuilder! +static Microsoft.AspNetCore.Builder.EndpointRouteBuilderExtensions.MapGroup(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, Microsoft.AspNetCore.Routing.Patterns.RoutePattern! prefix) -> Microsoft.AspNetCore.Routing.RouteGroupBuilder! +static Microsoft.AspNetCore.Builder.EndpointRouteBuilderExtensions.MapGroup(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, string! prefix) -> Microsoft.AspNetCore.Routing.RouteGroupBuilder! static Microsoft.AspNetCore.Builder.EndpointRouteBuilderExtensions.MapMethods(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, string! pattern, System.Collections.Generic.IEnumerable! httpMethods, Microsoft.AspNetCore.Http.RequestDelegate! requestDelegate) -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder! static Microsoft.AspNetCore.Builder.EndpointRouteBuilderExtensions.MapMethods(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, string! pattern, System.Collections.Generic.IEnumerable! httpMethods, System.Delegate! handler) -> Microsoft.AspNetCore.Builder.RouteHandlerBuilder! +static Microsoft.AspNetCore.Builder.EndpointRouteBuilderExtensions.MapPatch(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, string! pattern, Microsoft.AspNetCore.Http.RequestDelegate! requestDelegate) -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder! +static Microsoft.AspNetCore.Builder.EndpointRouteBuilderExtensions.MapPatch(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, string! pattern, System.Delegate! handler) -> Microsoft.AspNetCore.Builder.RouteHandlerBuilder! static Microsoft.AspNetCore.Builder.EndpointRouteBuilderExtensions.MapPost(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, string! pattern, Microsoft.AspNetCore.Http.RequestDelegate! requestDelegate) -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder! static Microsoft.AspNetCore.Builder.EndpointRouteBuilderExtensions.MapPost(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, string! pattern, System.Delegate! handler) -> Microsoft.AspNetCore.Builder.RouteHandlerBuilder! static Microsoft.AspNetCore.Builder.EndpointRouteBuilderExtensions.MapPut(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, string! pattern, Microsoft.AspNetCore.Http.RequestDelegate! requestDelegate) -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder! @@ -561,27 +585,46 @@ static Microsoft.AspNetCore.Builder.RoutingEndpointConventionBuilderExtensions.W static Microsoft.AspNetCore.Builder.RoutingEndpointConventionBuilderExtensions.WithGroupName(this TBuilder builder, string! endpointGroupName) -> TBuilder static Microsoft.AspNetCore.Builder.RoutingEndpointConventionBuilderExtensions.WithMetadata(this TBuilder builder, params object![]! items) -> TBuilder static Microsoft.AspNetCore.Builder.RoutingEndpointConventionBuilderExtensions.WithName(this TBuilder builder, string! endpointName) -> TBuilder +static Microsoft.AspNetCore.Http.EndpointFilterExtensions.AddEndpointFilter(this TBuilder builder) -> TBuilder +static Microsoft.AspNetCore.Http.EndpointFilterExtensions.AddEndpointFilter(this TBuilder builder, Microsoft.AspNetCore.Http.IEndpointFilter! filter) -> TBuilder +static Microsoft.AspNetCore.Http.EndpointFilterExtensions.AddEndpointFilter(this TBuilder builder, System.Func>! routeHandlerFilter) -> TBuilder +static Microsoft.AspNetCore.Http.EndpointFilterExtensions.AddEndpointFilter(this Microsoft.AspNetCore.Builder.RouteHandlerBuilder! builder) -> Microsoft.AspNetCore.Builder.RouteHandlerBuilder! +static Microsoft.AspNetCore.Http.EndpointFilterExtensions.AddEndpointFilter(this Microsoft.AspNetCore.Routing.RouteGroupBuilder! builder) -> Microsoft.AspNetCore.Routing.RouteGroupBuilder! +static Microsoft.AspNetCore.Http.EndpointFilterExtensions.AddEndpointFilterFactory(this TBuilder builder, System.Func! filterFactory) -> TBuilder static Microsoft.AspNetCore.Http.OpenApiRouteHandlerBuilderExtensions.Accepts(this Microsoft.AspNetCore.Builder.RouteHandlerBuilder! builder, System.Type! requestType, bool isOptional, string! contentType, params string![]! additionalContentTypes) -> Microsoft.AspNetCore.Builder.RouteHandlerBuilder! static Microsoft.AspNetCore.Http.OpenApiRouteHandlerBuilderExtensions.Accepts(this Microsoft.AspNetCore.Builder.RouteHandlerBuilder! builder, System.Type! requestType, string! contentType, params string![]! additionalContentTypes) -> Microsoft.AspNetCore.Builder.RouteHandlerBuilder! static Microsoft.AspNetCore.Http.OpenApiRouteHandlerBuilderExtensions.Accepts(this Microsoft.AspNetCore.Builder.RouteHandlerBuilder! builder, bool isOptional, string! contentType, params string![]! additionalContentTypes) -> Microsoft.AspNetCore.Builder.RouteHandlerBuilder! static Microsoft.AspNetCore.Http.OpenApiRouteHandlerBuilderExtensions.Accepts(this Microsoft.AspNetCore.Builder.RouteHandlerBuilder! builder, string! contentType, params string![]! additionalContentTypes) -> Microsoft.AspNetCore.Builder.RouteHandlerBuilder! static Microsoft.AspNetCore.Http.OpenApiRouteHandlerBuilderExtensions.ExcludeFromDescription(this Microsoft.AspNetCore.Builder.RouteHandlerBuilder! builder) -> Microsoft.AspNetCore.Builder.RouteHandlerBuilder! +static Microsoft.AspNetCore.Http.OpenApiRouteHandlerBuilderExtensions.ExcludeFromDescription(this TBuilder builder) -> TBuilder static Microsoft.AspNetCore.Http.OpenApiRouteHandlerBuilderExtensions.Produces(this Microsoft.AspNetCore.Builder.RouteHandlerBuilder! builder, int statusCode, System.Type? responseType = null, string? contentType = null, params string![]! additionalContentTypes) -> Microsoft.AspNetCore.Builder.RouteHandlerBuilder! static Microsoft.AspNetCore.Http.OpenApiRouteHandlerBuilderExtensions.Produces(this Microsoft.AspNetCore.Builder.RouteHandlerBuilder! builder, int statusCode = 200, string? contentType = null, params string![]! additionalContentTypes) -> Microsoft.AspNetCore.Builder.RouteHandlerBuilder! static Microsoft.AspNetCore.Http.OpenApiRouteHandlerBuilderExtensions.ProducesProblem(this Microsoft.AspNetCore.Builder.RouteHandlerBuilder! builder, int statusCode, string? contentType = null) -> Microsoft.AspNetCore.Builder.RouteHandlerBuilder! static Microsoft.AspNetCore.Http.OpenApiRouteHandlerBuilderExtensions.ProducesValidationProblem(this Microsoft.AspNetCore.Builder.RouteHandlerBuilder! builder, int statusCode = 400, string? contentType = null) -> Microsoft.AspNetCore.Builder.RouteHandlerBuilder! +static Microsoft.AspNetCore.Http.OpenApiRouteHandlerBuilderExtensions.WithDescription(this TBuilder builder, string! description) -> TBuilder +static Microsoft.AspNetCore.Http.OpenApiRouteHandlerBuilderExtensions.WithSummary(this TBuilder builder, string! summary) -> TBuilder static Microsoft.AspNetCore.Http.OpenApiRouteHandlerBuilderExtensions.WithTags(this Microsoft.AspNetCore.Builder.RouteHandlerBuilder! builder, params string![]! tags) -> Microsoft.AspNetCore.Builder.RouteHandlerBuilder! +static Microsoft.AspNetCore.Http.OpenApiRouteHandlerBuilderExtensions.WithTags(this TBuilder builder, params string![]! tags) -> TBuilder static Microsoft.AspNetCore.Routing.InlineRouteParameterParser.ParseRouteParameter(string! routeParameter) -> Microsoft.AspNetCore.Routing.Template.TemplatePart! +static Microsoft.AspNetCore.Routing.LinkGeneratorEndpointNameAddressExtensions.GetPathByName(this Microsoft.AspNetCore.Routing.LinkGenerator! generator, Microsoft.AspNetCore.Http.HttpContext! httpContext, string! endpointName, Microsoft.AspNetCore.Routing.RouteValueDictionary? values = null, Microsoft.AspNetCore.Http.PathString? pathBase = null, Microsoft.AspNetCore.Http.FragmentString fragment = default(Microsoft.AspNetCore.Http.FragmentString), Microsoft.AspNetCore.Routing.LinkOptions? options = null) -> string? static Microsoft.AspNetCore.Routing.LinkGeneratorEndpointNameAddressExtensions.GetPathByName(this Microsoft.AspNetCore.Routing.LinkGenerator! generator, Microsoft.AspNetCore.Http.HttpContext! httpContext, string! endpointName, object? values, Microsoft.AspNetCore.Http.PathString? pathBase = null, Microsoft.AspNetCore.Http.FragmentString fragment = default(Microsoft.AspNetCore.Http.FragmentString), Microsoft.AspNetCore.Routing.LinkOptions? options = null) -> string? +static Microsoft.AspNetCore.Routing.LinkGeneratorEndpointNameAddressExtensions.GetPathByName(this Microsoft.AspNetCore.Routing.LinkGenerator! generator, string! endpointName, Microsoft.AspNetCore.Routing.RouteValueDictionary? values = null, Microsoft.AspNetCore.Http.PathString pathBase = default(Microsoft.AspNetCore.Http.PathString), Microsoft.AspNetCore.Http.FragmentString fragment = default(Microsoft.AspNetCore.Http.FragmentString), Microsoft.AspNetCore.Routing.LinkOptions? options = null) -> string? static Microsoft.AspNetCore.Routing.LinkGeneratorEndpointNameAddressExtensions.GetPathByName(this Microsoft.AspNetCore.Routing.LinkGenerator! generator, string! endpointName, object? values, Microsoft.AspNetCore.Http.PathString pathBase = default(Microsoft.AspNetCore.Http.PathString), Microsoft.AspNetCore.Http.FragmentString fragment = default(Microsoft.AspNetCore.Http.FragmentString), Microsoft.AspNetCore.Routing.LinkOptions? options = null) -> string? +static Microsoft.AspNetCore.Routing.LinkGeneratorEndpointNameAddressExtensions.GetUriByName(this Microsoft.AspNetCore.Routing.LinkGenerator! generator, Microsoft.AspNetCore.Http.HttpContext! httpContext, string! endpointName, Microsoft.AspNetCore.Routing.RouteValueDictionary? values = null, string? scheme = null, Microsoft.AspNetCore.Http.HostString? host = null, Microsoft.AspNetCore.Http.PathString? pathBase = null, Microsoft.AspNetCore.Http.FragmentString fragment = default(Microsoft.AspNetCore.Http.FragmentString), Microsoft.AspNetCore.Routing.LinkOptions? options = null) -> string? static Microsoft.AspNetCore.Routing.LinkGeneratorEndpointNameAddressExtensions.GetUriByName(this Microsoft.AspNetCore.Routing.LinkGenerator! generator, Microsoft.AspNetCore.Http.HttpContext! httpContext, string! endpointName, object? values, string? scheme = null, Microsoft.AspNetCore.Http.HostString? host = null, Microsoft.AspNetCore.Http.PathString? pathBase = null, Microsoft.AspNetCore.Http.FragmentString fragment = default(Microsoft.AspNetCore.Http.FragmentString), Microsoft.AspNetCore.Routing.LinkOptions? options = null) -> string? +static Microsoft.AspNetCore.Routing.LinkGeneratorEndpointNameAddressExtensions.GetUriByName(this Microsoft.AspNetCore.Routing.LinkGenerator! generator, string! endpointName, Microsoft.AspNetCore.Routing.RouteValueDictionary! values, string! scheme, Microsoft.AspNetCore.Http.HostString host, Microsoft.AspNetCore.Http.PathString pathBase = default(Microsoft.AspNetCore.Http.PathString), Microsoft.AspNetCore.Http.FragmentString fragment = default(Microsoft.AspNetCore.Http.FragmentString), Microsoft.AspNetCore.Routing.LinkOptions? options = null) -> string? static Microsoft.AspNetCore.Routing.LinkGeneratorEndpointNameAddressExtensions.GetUriByName(this Microsoft.AspNetCore.Routing.LinkGenerator! generator, string! endpointName, object? values, string! scheme, Microsoft.AspNetCore.Http.HostString host, Microsoft.AspNetCore.Http.PathString pathBase = default(Microsoft.AspNetCore.Http.PathString), Microsoft.AspNetCore.Http.FragmentString fragment = default(Microsoft.AspNetCore.Http.FragmentString), Microsoft.AspNetCore.Routing.LinkOptions? options = null) -> string? +static Microsoft.AspNetCore.Routing.LinkGeneratorRouteValuesAddressExtensions.GetPathByRouteValues(this Microsoft.AspNetCore.Routing.LinkGenerator! generator, Microsoft.AspNetCore.Http.HttpContext! httpContext, string? routeName, Microsoft.AspNetCore.Routing.RouteValueDictionary? values = null, Microsoft.AspNetCore.Http.PathString? pathBase = null, Microsoft.AspNetCore.Http.FragmentString fragment = default(Microsoft.AspNetCore.Http.FragmentString), Microsoft.AspNetCore.Routing.LinkOptions? options = null) -> string? static Microsoft.AspNetCore.Routing.LinkGeneratorRouteValuesAddressExtensions.GetPathByRouteValues(this Microsoft.AspNetCore.Routing.LinkGenerator! generator, Microsoft.AspNetCore.Http.HttpContext! httpContext, string? routeName, object? values, Microsoft.AspNetCore.Http.PathString? pathBase = null, Microsoft.AspNetCore.Http.FragmentString fragment = default(Microsoft.AspNetCore.Http.FragmentString), Microsoft.AspNetCore.Routing.LinkOptions? options = null) -> string? +static Microsoft.AspNetCore.Routing.LinkGeneratorRouteValuesAddressExtensions.GetPathByRouteValues(this Microsoft.AspNetCore.Routing.LinkGenerator! generator, string? routeName, Microsoft.AspNetCore.Routing.RouteValueDictionary? values = null, Microsoft.AspNetCore.Http.PathString pathBase = default(Microsoft.AspNetCore.Http.PathString), Microsoft.AspNetCore.Http.FragmentString fragment = default(Microsoft.AspNetCore.Http.FragmentString), Microsoft.AspNetCore.Routing.LinkOptions? options = null) -> string? static Microsoft.AspNetCore.Routing.LinkGeneratorRouteValuesAddressExtensions.GetPathByRouteValues(this Microsoft.AspNetCore.Routing.LinkGenerator! generator, string? routeName, object? values, Microsoft.AspNetCore.Http.PathString pathBase = default(Microsoft.AspNetCore.Http.PathString), Microsoft.AspNetCore.Http.FragmentString fragment = default(Microsoft.AspNetCore.Http.FragmentString), Microsoft.AspNetCore.Routing.LinkOptions? options = null) -> string? +static Microsoft.AspNetCore.Routing.LinkGeneratorRouteValuesAddressExtensions.GetUriByRouteValues(this Microsoft.AspNetCore.Routing.LinkGenerator! generator, Microsoft.AspNetCore.Http.HttpContext! httpContext, string? routeName, Microsoft.AspNetCore.Routing.RouteValueDictionary? values = null, string? scheme = null, Microsoft.AspNetCore.Http.HostString? host = null, Microsoft.AspNetCore.Http.PathString? pathBase = null, Microsoft.AspNetCore.Http.FragmentString fragment = default(Microsoft.AspNetCore.Http.FragmentString), Microsoft.AspNetCore.Routing.LinkOptions? options = null) -> string? static Microsoft.AspNetCore.Routing.LinkGeneratorRouteValuesAddressExtensions.GetUriByRouteValues(this Microsoft.AspNetCore.Routing.LinkGenerator! generator, Microsoft.AspNetCore.Http.HttpContext! httpContext, string? routeName, object? values, string? scheme = null, Microsoft.AspNetCore.Http.HostString? host = null, Microsoft.AspNetCore.Http.PathString? pathBase = null, Microsoft.AspNetCore.Http.FragmentString fragment = default(Microsoft.AspNetCore.Http.FragmentString), Microsoft.AspNetCore.Routing.LinkOptions? options = null) -> string? +static Microsoft.AspNetCore.Routing.LinkGeneratorRouteValuesAddressExtensions.GetUriByRouteValues(this Microsoft.AspNetCore.Routing.LinkGenerator! generator, string? routeName, Microsoft.AspNetCore.Routing.RouteValueDictionary! values, string! scheme, Microsoft.AspNetCore.Http.HostString host, Microsoft.AspNetCore.Http.PathString pathBase = default(Microsoft.AspNetCore.Http.PathString), Microsoft.AspNetCore.Http.FragmentString fragment = default(Microsoft.AspNetCore.Http.FragmentString), Microsoft.AspNetCore.Routing.LinkOptions? options = null) -> string? static Microsoft.AspNetCore.Routing.LinkGeneratorRouteValuesAddressExtensions.GetUriByRouteValues(this Microsoft.AspNetCore.Routing.LinkGenerator! generator, string? routeName, object? values, string! scheme, Microsoft.AspNetCore.Http.HostString host, Microsoft.AspNetCore.Http.PathString pathBase = default(Microsoft.AspNetCore.Http.PathString), Microsoft.AspNetCore.Http.FragmentString fragment = default(Microsoft.AspNetCore.Http.FragmentString), Microsoft.AspNetCore.Routing.LinkOptions? options = null) -> string? static Microsoft.AspNetCore.Routing.LinkParserEndpointNameAddressExtensions.ParsePathByEndpointName(this Microsoft.AspNetCore.Routing.LinkParser! parser, string! endpointName, Microsoft.AspNetCore.Http.PathString path) -> Microsoft.AspNetCore.Routing.RouteValueDictionary? static Microsoft.AspNetCore.Routing.MatcherPolicy.ContainsDynamicEndpoints(System.Collections.Generic.IReadOnlyList! endpoints) -> bool +static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Combine(Microsoft.AspNetCore.Routing.Patterns.RoutePattern? left, Microsoft.AspNetCore.Routing.Patterns.RoutePattern! right) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Constraint(Microsoft.AspNetCore.Routing.IRouteConstraint! constraint) -> Microsoft.AspNetCore.Routing.Patterns.RoutePatternParameterPolicyReference! static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Constraint(object! constraint) -> Microsoft.AspNetCore.Routing.Patterns.RoutePatternParameterPolicyReference! static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Constraint(string! constraint) -> Microsoft.AspNetCore.Routing.Patterns.RoutePatternParameterPolicyReference! @@ -594,12 +637,18 @@ static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.ParameterPart(s static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.ParameterPolicy(Microsoft.AspNetCore.Routing.IParameterPolicy! parameterPolicy) -> Microsoft.AspNetCore.Routing.Patterns.RoutePatternParameterPolicyReference! static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.ParameterPolicy(string! parameterPolicy) -> Microsoft.AspNetCore.Routing.Patterns.RoutePatternParameterPolicyReference! static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Parse(string! pattern) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! +static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Parse(string! pattern, Microsoft.AspNetCore.Routing.RouteValueDictionary? defaults, Microsoft.AspNetCore.Routing.RouteValueDictionary? parameterPolicies) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! +static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Parse(string! pattern, Microsoft.AspNetCore.Routing.RouteValueDictionary? defaults, Microsoft.AspNetCore.Routing.RouteValueDictionary? parameterPolicies, Microsoft.AspNetCore.Routing.RouteValueDictionary? requiredValues) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Parse(string! pattern, object? defaults, object? parameterPolicies) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Parse(string! pattern, object? defaults, object? parameterPolicies, object? requiredValues) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! +static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Pattern(Microsoft.AspNetCore.Routing.RouteValueDictionary? defaults, Microsoft.AspNetCore.Routing.RouteValueDictionary? parameterPolicies, params Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment![]! segments) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! +static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Pattern(Microsoft.AspNetCore.Routing.RouteValueDictionary? defaults, Microsoft.AspNetCore.Routing.RouteValueDictionary? parameterPolicies, System.Collections.Generic.IEnumerable! segments) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Pattern(object? defaults, object? parameterPolicies, params Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment![]! segments) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Pattern(object? defaults, object? parameterPolicies, System.Collections.Generic.IEnumerable! segments) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Pattern(params Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment![]! segments) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Pattern(string! rawText, params Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment![]! segments) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! +static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Pattern(string? rawText, Microsoft.AspNetCore.Routing.RouteValueDictionary? defaults, Microsoft.AspNetCore.Routing.RouteValueDictionary? parameterPolicies, params Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment![]! segments) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! +static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Pattern(string? rawText, Microsoft.AspNetCore.Routing.RouteValueDictionary? defaults, Microsoft.AspNetCore.Routing.RouteValueDictionary? parameterPolicies, System.Collections.Generic.IEnumerable! segments) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Pattern(string? rawText, object? defaults, object? parameterPolicies, params Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment![]! segments) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Pattern(string? rawText, object? defaults, object? parameterPolicies, System.Collections.Generic.IEnumerable! segments) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Pattern(string? rawText, System.Collections.Generic.IEnumerable! segments) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! @@ -641,8 +690,10 @@ static readonly Microsoft.AspNetCore.Routing.Patterns.RoutePattern.RequiredValue static readonly Microsoft.AspNetCore.Routing.RouteValueEqualityComparer.Default -> Microsoft.AspNetCore.Routing.RouteValueEqualityComparer! virtual Microsoft.AspNetCore.Routing.Constraints.HttpMethodRouteConstraint.Match(Microsoft.AspNetCore.Http.HttpContext? httpContext, Microsoft.AspNetCore.Routing.IRouter? route, string! routeKey, Microsoft.AspNetCore.Routing.RouteValueDictionary! values, Microsoft.AspNetCore.Routing.RouteDirection routeDirection) -> bool virtual Microsoft.AspNetCore.Routing.DefaultInlineConstraintResolver.ResolveConstraint(string! inlineConstraint) -> Microsoft.AspNetCore.Routing.IRouteConstraint? +virtual Microsoft.AspNetCore.Routing.EndpointDataSource.GetGroupedEndpoints(Microsoft.AspNetCore.Routing.RouteGroupContext! context) -> System.Collections.Generic.IReadOnlyList! virtual Microsoft.AspNetCore.Routing.Matching.EndpointMetadataComparer.CompareMetadata(TMetadata? x, TMetadata? y) -> int virtual Microsoft.AspNetCore.Routing.Matching.EndpointMetadataComparer.GetMetadata(Microsoft.AspNetCore.Http.Endpoint! endpoint) -> TMetadata? +virtual Microsoft.AspNetCore.Routing.Patterns.RoutePatternTransformer.SubstituteRequiredValues(Microsoft.AspNetCore.Routing.Patterns.RoutePattern! original, Microsoft.AspNetCore.Routing.RouteValueDictionary! requiredValues) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern? virtual Microsoft.AspNetCore.Routing.RouteBase.ConstraintResolver.get -> Microsoft.AspNetCore.Routing.IInlineConstraintResolver! virtual Microsoft.AspNetCore.Routing.RouteBase.ConstraintResolver.set -> void virtual Microsoft.AspNetCore.Routing.RouteBase.Constraints.get -> System.Collections.Generic.IDictionary! diff --git a/src/Http/Routing/src/PublicAPI.Unshipped.txt b/src/Http/Routing/src/PublicAPI.Unshipped.txt index 6347092be335..7dc5c58110bf 100644 --- a/src/Http/Routing/src/PublicAPI.Unshipped.txt +++ b/src/Http/Routing/src/PublicAPI.Unshipped.txt @@ -1,54 +1 @@ #nullable enable -*REMOVED*Microsoft.AspNetCore.Routing.RouteEndpointBuilder.RouteEndpointBuilder(Microsoft.AspNetCore.Http.RequestDelegate! requestDelegate, Microsoft.AspNetCore.Routing.Patterns.RoutePattern! routePattern, int order) -> void -Microsoft.AspNetCore.Builder.RouteHandlerBuilder.Finally(System.Action! finalConvention) -> void -Microsoft.AspNetCore.Http.EndpointFilterExtensions -Microsoft.AspNetCore.Routing.CompositeEndpointDataSource.Dispose() -> void -Microsoft.AspNetCore.Routing.HttpMethodMetadata.AcceptCorsPreflight.set -> void -Microsoft.AspNetCore.Routing.IHttpMethodMetadata.AcceptCorsPreflight.set -> void -Microsoft.AspNetCore.Routing.RouteEndpointBuilder.RouteEndpointBuilder(Microsoft.AspNetCore.Http.RequestDelegate? requestDelegate, Microsoft.AspNetCore.Routing.Patterns.RoutePattern! routePattern, int order) -> void -Microsoft.AspNetCore.Routing.RouteGroupBuilder -Microsoft.AspNetCore.Routing.RouteGroupContext -Microsoft.AspNetCore.Routing.RouteGroupContext.ApplicationServices.get -> System.IServiceProvider! -Microsoft.AspNetCore.Routing.RouteGroupContext.ApplicationServices.init -> void -Microsoft.AspNetCore.Routing.RouteGroupContext.Conventions.get -> System.Collections.Generic.IReadOnlyList!>! -Microsoft.AspNetCore.Routing.RouteGroupContext.Conventions.init -> void -Microsoft.AspNetCore.Routing.RouteGroupContext.FinallyConventions.get -> System.Collections.Generic.IReadOnlyList!>! -Microsoft.AspNetCore.Routing.RouteGroupContext.FinallyConventions.init -> void -Microsoft.AspNetCore.Routing.RouteGroupContext.Prefix.get -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! -Microsoft.AspNetCore.Routing.RouteGroupContext.Prefix.init -> void -Microsoft.AspNetCore.Routing.RouteGroupContext.RouteGroupContext() -> void -Microsoft.AspNetCore.Routing.RouteOptions.SetParameterPolicy(string! token, System.Type! type) -> void -Microsoft.AspNetCore.Routing.RouteOptions.SetParameterPolicy(string! token) -> void -override Microsoft.AspNetCore.Routing.CompositeEndpointDataSource.GetGroupedEndpoints(Microsoft.AspNetCore.Routing.RouteGroupContext! context) -> System.Collections.Generic.IReadOnlyList! -static Microsoft.AspNetCore.Builder.EndpointRouteBuilderExtensions.MapGroup(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, Microsoft.AspNetCore.Routing.Patterns.RoutePattern! prefix) -> Microsoft.AspNetCore.Routing.RouteGroupBuilder! -static Microsoft.AspNetCore.Builder.EndpointRouteBuilderExtensions.MapGroup(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, string! prefix) -> Microsoft.AspNetCore.Routing.RouteGroupBuilder! -static Microsoft.AspNetCore.Builder.EndpointRouteBuilderExtensions.MapPatch(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, string! pattern, System.Delegate! handler) -> Microsoft.AspNetCore.Builder.RouteHandlerBuilder! -static Microsoft.AspNetCore.Builder.EndpointRouteBuilderExtensions.MapPatch(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, string! pattern, Microsoft.AspNetCore.Http.RequestDelegate! requestDelegate) -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder! -override Microsoft.AspNetCore.Routing.RouteValuesAddress.ToString() -> string? -static Microsoft.AspNetCore.Http.EndpointFilterExtensions.AddEndpointFilter(this TBuilder builder) -> TBuilder -static Microsoft.AspNetCore.Http.EndpointFilterExtensions.AddEndpointFilter(this TBuilder builder, Microsoft.AspNetCore.Http.IEndpointFilter! filter) -> TBuilder -static Microsoft.AspNetCore.Http.EndpointFilterExtensions.AddEndpointFilterFactory(this TBuilder builder, System.Func! filterFactory) -> TBuilder -static Microsoft.AspNetCore.Http.EndpointFilterExtensions.AddEndpointFilter(this TBuilder builder, System.Func>! routeHandlerFilter) -> TBuilder -static Microsoft.AspNetCore.Http.EndpointFilterExtensions.AddEndpointFilter(this Microsoft.AspNetCore.Builder.RouteHandlerBuilder! builder) -> Microsoft.AspNetCore.Builder.RouteHandlerBuilder! -static Microsoft.AspNetCore.Http.EndpointFilterExtensions.AddEndpointFilter(this Microsoft.AspNetCore.Routing.RouteGroupBuilder! builder) -> Microsoft.AspNetCore.Routing.RouteGroupBuilder! -static Microsoft.AspNetCore.Http.OpenApiRouteHandlerBuilderExtensions.ExcludeFromDescription(this TBuilder builder) -> TBuilder -static Microsoft.AspNetCore.Http.OpenApiRouteHandlerBuilderExtensions.WithDescription(this TBuilder builder, string! description) -> TBuilder -static Microsoft.AspNetCore.Http.OpenApiRouteHandlerBuilderExtensions.WithSummary(this TBuilder builder, string! summary) -> TBuilder -static Microsoft.AspNetCore.Http.OpenApiRouteHandlerBuilderExtensions.WithTags(this TBuilder builder, params string![]! tags) -> TBuilder -static Microsoft.AspNetCore.Routing.LinkGeneratorEndpointNameAddressExtensions.GetPathByName(this Microsoft.AspNetCore.Routing.LinkGenerator! generator, Microsoft.AspNetCore.Http.HttpContext! httpContext, string! endpointName, Microsoft.AspNetCore.Routing.RouteValueDictionary? values = null, Microsoft.AspNetCore.Http.PathString? pathBase = null, Microsoft.AspNetCore.Http.FragmentString fragment = default(Microsoft.AspNetCore.Http.FragmentString), Microsoft.AspNetCore.Routing.LinkOptions? options = null) -> string? -static Microsoft.AspNetCore.Routing.LinkGeneratorEndpointNameAddressExtensions.GetPathByName(this Microsoft.AspNetCore.Routing.LinkGenerator! generator, string! endpointName, Microsoft.AspNetCore.Routing.RouteValueDictionary? values = null, Microsoft.AspNetCore.Http.PathString pathBase = default(Microsoft.AspNetCore.Http.PathString), Microsoft.AspNetCore.Http.FragmentString fragment = default(Microsoft.AspNetCore.Http.FragmentString), Microsoft.AspNetCore.Routing.LinkOptions? options = null) -> string? -static Microsoft.AspNetCore.Routing.LinkGeneratorEndpointNameAddressExtensions.GetUriByName(this Microsoft.AspNetCore.Routing.LinkGenerator! generator, Microsoft.AspNetCore.Http.HttpContext! httpContext, string! endpointName, Microsoft.AspNetCore.Routing.RouteValueDictionary? values = null, string? scheme = null, Microsoft.AspNetCore.Http.HostString? host = null, Microsoft.AspNetCore.Http.PathString? pathBase = null, Microsoft.AspNetCore.Http.FragmentString fragment = default(Microsoft.AspNetCore.Http.FragmentString), Microsoft.AspNetCore.Routing.LinkOptions? options = null) -> string? -static Microsoft.AspNetCore.Routing.LinkGeneratorEndpointNameAddressExtensions.GetUriByName(this Microsoft.AspNetCore.Routing.LinkGenerator! generator, string! endpointName, Microsoft.AspNetCore.Routing.RouteValueDictionary! values, string! scheme, Microsoft.AspNetCore.Http.HostString host, Microsoft.AspNetCore.Http.PathString pathBase = default(Microsoft.AspNetCore.Http.PathString), Microsoft.AspNetCore.Http.FragmentString fragment = default(Microsoft.AspNetCore.Http.FragmentString), Microsoft.AspNetCore.Routing.LinkOptions? options = null) -> string? -static Microsoft.AspNetCore.Routing.LinkGeneratorRouteValuesAddressExtensions.GetPathByRouteValues(this Microsoft.AspNetCore.Routing.LinkGenerator! generator, Microsoft.AspNetCore.Http.HttpContext! httpContext, string? routeName, Microsoft.AspNetCore.Routing.RouteValueDictionary? values = null, Microsoft.AspNetCore.Http.PathString? pathBase = null, Microsoft.AspNetCore.Http.FragmentString fragment = default(Microsoft.AspNetCore.Http.FragmentString), Microsoft.AspNetCore.Routing.LinkOptions? options = null) -> string? -static Microsoft.AspNetCore.Routing.LinkGeneratorRouteValuesAddressExtensions.GetPathByRouteValues(this Microsoft.AspNetCore.Routing.LinkGenerator! generator, string? routeName, Microsoft.AspNetCore.Routing.RouteValueDictionary? values = null, Microsoft.AspNetCore.Http.PathString pathBase = default(Microsoft.AspNetCore.Http.PathString), Microsoft.AspNetCore.Http.FragmentString fragment = default(Microsoft.AspNetCore.Http.FragmentString), Microsoft.AspNetCore.Routing.LinkOptions? options = null) -> string? -static Microsoft.AspNetCore.Routing.LinkGeneratorRouteValuesAddressExtensions.GetUriByRouteValues(this Microsoft.AspNetCore.Routing.LinkGenerator! generator, Microsoft.AspNetCore.Http.HttpContext! httpContext, string? routeName, Microsoft.AspNetCore.Routing.RouteValueDictionary? values = null, string? scheme = null, Microsoft.AspNetCore.Http.HostString? host = null, Microsoft.AspNetCore.Http.PathString? pathBase = null, Microsoft.AspNetCore.Http.FragmentString fragment = default(Microsoft.AspNetCore.Http.FragmentString), Microsoft.AspNetCore.Routing.LinkOptions? options = null) -> string? -static Microsoft.AspNetCore.Routing.LinkGeneratorRouteValuesAddressExtensions.GetUriByRouteValues(this Microsoft.AspNetCore.Routing.LinkGenerator! generator, string? routeName, Microsoft.AspNetCore.Routing.RouteValueDictionary! values, string! scheme, Microsoft.AspNetCore.Http.HostString host, Microsoft.AspNetCore.Http.PathString pathBase = default(Microsoft.AspNetCore.Http.PathString), Microsoft.AspNetCore.Http.FragmentString fragment = default(Microsoft.AspNetCore.Http.FragmentString), Microsoft.AspNetCore.Routing.LinkOptions? options = null) -> string? -static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Combine(Microsoft.AspNetCore.Routing.Patterns.RoutePattern? left, Microsoft.AspNetCore.Routing.Patterns.RoutePattern! right) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! -static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Parse(string! pattern, Microsoft.AspNetCore.Routing.RouteValueDictionary? defaults, Microsoft.AspNetCore.Routing.RouteValueDictionary? parameterPolicies) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! -static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Parse(string! pattern, Microsoft.AspNetCore.Routing.RouteValueDictionary? defaults, Microsoft.AspNetCore.Routing.RouteValueDictionary? parameterPolicies, Microsoft.AspNetCore.Routing.RouteValueDictionary? requiredValues) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! -static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Pattern(Microsoft.AspNetCore.Routing.RouteValueDictionary? defaults, Microsoft.AspNetCore.Routing.RouteValueDictionary? parameterPolicies, System.Collections.Generic.IEnumerable! segments) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! -static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Pattern(Microsoft.AspNetCore.Routing.RouteValueDictionary? defaults, Microsoft.AspNetCore.Routing.RouteValueDictionary? parameterPolicies, params Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment![]! segments) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! -static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Pattern(string? rawText, Microsoft.AspNetCore.Routing.RouteValueDictionary? defaults, Microsoft.AspNetCore.Routing.RouteValueDictionary? parameterPolicies, System.Collections.Generic.IEnumerable! segments) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! -static Microsoft.AspNetCore.Routing.Patterns.RoutePatternFactory.Pattern(string? rawText, Microsoft.AspNetCore.Routing.RouteValueDictionary? defaults, Microsoft.AspNetCore.Routing.RouteValueDictionary? parameterPolicies, params Microsoft.AspNetCore.Routing.Patterns.RoutePatternPathSegment![]! segments) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern! -virtual Microsoft.AspNetCore.Routing.EndpointDataSource.GetGroupedEndpoints(Microsoft.AspNetCore.Routing.RouteGroupContext! context) -> System.Collections.Generic.IReadOnlyList! -virtual Microsoft.AspNetCore.Routing.Patterns.RoutePatternTransformer.SubstituteRequiredValues(Microsoft.AspNetCore.Routing.Patterns.RoutePattern! original, Microsoft.AspNetCore.Routing.RouteValueDictionary! requiredValues) -> Microsoft.AspNetCore.Routing.Patterns.RoutePattern? diff --git a/src/Http/WebUtilities/src/PublicAPI.Shipped.txt b/src/Http/WebUtilities/src/PublicAPI.Shipped.txt index dd7cfe5aff5c..6c0843f2c40d 100644 --- a/src/Http/WebUtilities/src/PublicAPI.Shipped.txt +++ b/src/Http/WebUtilities/src/PublicAPI.Shipped.txt @@ -40,6 +40,7 @@ Microsoft.AspNetCore.WebUtilities.FormMultipartSection Microsoft.AspNetCore.WebUtilities.FormMultipartSection.FormMultipartSection(Microsoft.AspNetCore.WebUtilities.MultipartSection! section) -> void Microsoft.AspNetCore.WebUtilities.FormMultipartSection.FormMultipartSection(Microsoft.AspNetCore.WebUtilities.MultipartSection! section, Microsoft.Net.Http.Headers.ContentDispositionHeaderValue? header) -> void Microsoft.AspNetCore.WebUtilities.FormMultipartSection.GetValueAsync() -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.WebUtilities.FormMultipartSection.GetValueAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask Microsoft.AspNetCore.WebUtilities.FormMultipartSection.Name.get -> string! Microsoft.AspNetCore.WebUtilities.FormMultipartSection.Section.get -> Microsoft.AspNetCore.WebUtilities.MultipartSection! Microsoft.AspNetCore.WebUtilities.FormPipeReader @@ -108,20 +109,20 @@ Microsoft.AspNetCore.WebUtilities.MultipartSectionConverterExtensions Microsoft.AspNetCore.WebUtilities.MultipartSectionStreamExtensions Microsoft.AspNetCore.WebUtilities.QueryHelpers Microsoft.AspNetCore.WebUtilities.QueryStringEnumerable -Microsoft.AspNetCore.WebUtilities.QueryStringEnumerable.EncodedNameValuePair.EncodedNameValuePair() -> void Microsoft.AspNetCore.WebUtilities.QueryStringEnumerable.EncodedNameValuePair Microsoft.AspNetCore.WebUtilities.QueryStringEnumerable.EncodedNameValuePair.DecodeName() -> System.ReadOnlyMemory Microsoft.AspNetCore.WebUtilities.QueryStringEnumerable.EncodedNameValuePair.DecodeValue() -> System.ReadOnlyMemory Microsoft.AspNetCore.WebUtilities.QueryStringEnumerable.EncodedNameValuePair.EncodedName.get -> System.ReadOnlyMemory +Microsoft.AspNetCore.WebUtilities.QueryStringEnumerable.EncodedNameValuePair.EncodedNameValuePair() -> void Microsoft.AspNetCore.WebUtilities.QueryStringEnumerable.EncodedNameValuePair.EncodedValue.get -> System.ReadOnlyMemory Microsoft.AspNetCore.WebUtilities.QueryStringEnumerable.Enumerator -Microsoft.AspNetCore.WebUtilities.QueryStringEnumerable.Enumerator.Enumerator() -> void Microsoft.AspNetCore.WebUtilities.QueryStringEnumerable.Enumerator.Current.get -> Microsoft.AspNetCore.WebUtilities.QueryStringEnumerable.EncodedNameValuePair +Microsoft.AspNetCore.WebUtilities.QueryStringEnumerable.Enumerator.Enumerator() -> void Microsoft.AspNetCore.WebUtilities.QueryStringEnumerable.Enumerator.MoveNext() -> bool Microsoft.AspNetCore.WebUtilities.QueryStringEnumerable.GetEnumerator() -> Microsoft.AspNetCore.WebUtilities.QueryStringEnumerable.Enumerator +Microsoft.AspNetCore.WebUtilities.QueryStringEnumerable.QueryStringEnumerable() -> void Microsoft.AspNetCore.WebUtilities.QueryStringEnumerable.QueryStringEnumerable(string? queryString) -> void Microsoft.AspNetCore.WebUtilities.QueryStringEnumerable.QueryStringEnumerable(System.ReadOnlyMemory queryString) -> void -Microsoft.AspNetCore.WebUtilities.QueryStringEnumerable.QueryStringEnumerable() -> void Microsoft.AspNetCore.WebUtilities.ReasonPhrases Microsoft.AspNetCore.WebUtilities.StreamHelperExtensions Microsoft.AspNetCore.WebUtilities.WebEncoders @@ -142,6 +143,7 @@ override Microsoft.AspNetCore.WebUtilities.BufferedReadStream.Seek(long offset, override Microsoft.AspNetCore.WebUtilities.BufferedReadStream.SetLength(long value) -> void override Microsoft.AspNetCore.WebUtilities.BufferedReadStream.Write(byte[]! buffer, int offset, int count) -> void override Microsoft.AspNetCore.WebUtilities.BufferedReadStream.WriteAsync(byte[]! buffer, int offset, int count, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! +override Microsoft.AspNetCore.WebUtilities.BufferedReadStream.WriteAsync(System.ReadOnlyMemory buffer, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask override Microsoft.AspNetCore.WebUtilities.FileBufferingReadStream.CanRead.get -> bool override Microsoft.AspNetCore.WebUtilities.FileBufferingReadStream.CanSeek.get -> bool override Microsoft.AspNetCore.WebUtilities.FileBufferingReadStream.CanWrite.get -> bool @@ -160,6 +162,7 @@ override Microsoft.AspNetCore.WebUtilities.FileBufferingReadStream.Seek(long off override Microsoft.AspNetCore.WebUtilities.FileBufferingReadStream.SetLength(long value) -> void override Microsoft.AspNetCore.WebUtilities.FileBufferingReadStream.Write(byte[]! buffer, int offset, int count) -> void override Microsoft.AspNetCore.WebUtilities.FileBufferingReadStream.WriteAsync(byte[]! buffer, int offset, int count, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! +override Microsoft.AspNetCore.WebUtilities.FileBufferingReadStream.WriteAsync(System.ReadOnlyMemory buffer, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask override Microsoft.AspNetCore.WebUtilities.FileBufferingWriteStream.CanRead.get -> bool override Microsoft.AspNetCore.WebUtilities.FileBufferingWriteStream.CanSeek.get -> bool override Microsoft.AspNetCore.WebUtilities.FileBufferingWriteStream.CanWrite.get -> bool @@ -171,6 +174,7 @@ override Microsoft.AspNetCore.WebUtilities.FileBufferingWriteStream.Position.get override Microsoft.AspNetCore.WebUtilities.FileBufferingWriteStream.Position.set -> void override Microsoft.AspNetCore.WebUtilities.FileBufferingWriteStream.Read(byte[]! buffer, int offset, int count) -> int override Microsoft.AspNetCore.WebUtilities.FileBufferingWriteStream.ReadAsync(byte[]! buffer, int offset, int count, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! +override Microsoft.AspNetCore.WebUtilities.FileBufferingWriteStream.ReadAsync(System.Memory buffer, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask override Microsoft.AspNetCore.WebUtilities.FileBufferingWriteStream.Seek(long offset, System.IO.SeekOrigin origin) -> long override Microsoft.AspNetCore.WebUtilities.FileBufferingWriteStream.SetLength(long value) -> void override Microsoft.AspNetCore.WebUtilities.FileBufferingWriteStream.Write(byte[]! buffer, int offset, int count) -> void @@ -200,6 +204,9 @@ override Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter.WriteAsync(c override Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter.WriteAsync(string? value) -> System.Threading.Tasks.Task! override Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter.WriteAsync(System.ReadOnlyMemory value, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! override Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter.WriteLine(System.ReadOnlySpan value) -> void +override Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter.WriteLineAsync(char value) -> System.Threading.Tasks.Task! +override Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter.WriteLineAsync(char[]! values, int index, int count) -> System.Threading.Tasks.Task! +override Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter.WriteLineAsync(string? value) -> System.Threading.Tasks.Task! override Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter.WriteLineAsync(System.ReadOnlyMemory value, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! static Microsoft.AspNetCore.WebUtilities.Base64UrlTextEncoder.Decode(string! text) -> byte[]! static Microsoft.AspNetCore.WebUtilities.Base64UrlTextEncoder.Encode(byte[]! data) -> string! @@ -207,6 +214,7 @@ static Microsoft.AspNetCore.WebUtilities.MultipartSectionConverterExtensions.AsF static Microsoft.AspNetCore.WebUtilities.MultipartSectionConverterExtensions.AsFormDataSection(this Microsoft.AspNetCore.WebUtilities.MultipartSection! section) -> Microsoft.AspNetCore.WebUtilities.FormMultipartSection? static Microsoft.AspNetCore.WebUtilities.MultipartSectionConverterExtensions.GetContentDispositionHeader(this Microsoft.AspNetCore.WebUtilities.MultipartSection! section) -> Microsoft.Net.Http.Headers.ContentDispositionHeaderValue? static Microsoft.AspNetCore.WebUtilities.MultipartSectionStreamExtensions.ReadAsStringAsync(this Microsoft.AspNetCore.WebUtilities.MultipartSection! section) -> System.Threading.Tasks.Task! +static Microsoft.AspNetCore.WebUtilities.MultipartSectionStreamExtensions.ReadAsStringAsync(this Microsoft.AspNetCore.WebUtilities.MultipartSection! section, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask static Microsoft.AspNetCore.WebUtilities.QueryHelpers.AddQueryString(string! uri, string! name, string! value) -> string! static Microsoft.AspNetCore.WebUtilities.QueryHelpers.AddQueryString(string! uri, System.Collections.Generic.IDictionary! queryString) -> string! static Microsoft.AspNetCore.WebUtilities.QueryHelpers.AddQueryString(string! uri, System.Collections.Generic.IEnumerable>! queryString) -> string! diff --git a/src/Http/WebUtilities/src/PublicAPI.Unshipped.txt b/src/Http/WebUtilities/src/PublicAPI.Unshipped.txt index 167cb41f2c02..7dc5c58110bf 100644 --- a/src/Http/WebUtilities/src/PublicAPI.Unshipped.txt +++ b/src/Http/WebUtilities/src/PublicAPI.Unshipped.txt @@ -1,9 +1 @@ #nullable enable -Microsoft.AspNetCore.WebUtilities.FormMultipartSection.GetValueAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask -override Microsoft.AspNetCore.WebUtilities.BufferedReadStream.WriteAsync(System.ReadOnlyMemory buffer, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask -override Microsoft.AspNetCore.WebUtilities.FileBufferingReadStream.WriteAsync(System.ReadOnlyMemory buffer, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask -override Microsoft.AspNetCore.WebUtilities.FileBufferingWriteStream.ReadAsync(System.Memory buffer, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask -override Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter.WriteLineAsync(char value) -> System.Threading.Tasks.Task! -override Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter.WriteLineAsync(char[]! values, int index, int count) -> System.Threading.Tasks.Task! -override Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter.WriteLineAsync(string? value) -> System.Threading.Tasks.Task! -static Microsoft.AspNetCore.WebUtilities.MultipartSectionStreamExtensions.ReadAsStringAsync(this Microsoft.AspNetCore.WebUtilities.MultipartSection! section, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask diff --git a/src/Identity/ApiAuthorization.IdentityServer/src/PublicAPI.Shipped.txt b/src/Identity/ApiAuthorization.IdentityServer/src/PublicAPI.Shipped.txt index 1d0078bbc755..de6f7afbf2a5 100644 --- a/src/Identity/ApiAuthorization.IdentityServer/src/PublicAPI.Shipped.txt +++ b/src/Identity/ApiAuthorization.IdentityServer/src/PublicAPI.Shipped.txt @@ -89,16 +89,16 @@ ~static Microsoft.AspNetCore.ApiAuthorization.IdentityServer.IdentityResourceBuilder.Phone() -> Microsoft.AspNetCore.ApiAuthorization.IdentityServer.IdentityResourceBuilder ~static Microsoft.AspNetCore.ApiAuthorization.IdentityServer.IdentityResourceBuilder.Profile() -> Microsoft.AspNetCore.ApiAuthorization.IdentityServer.IdentityResourceBuilder ~static Microsoft.AspNetCore.Authentication.AuthenticationBuilderExtensions.AddIdentityServerJwt(this Microsoft.AspNetCore.Authentication.AuthenticationBuilder builder) -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder -~static Microsoft.Extensions.DependencyInjection.IdentityServerBuilderConfigurationExtensions.AddApiAuthorization(this Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder builder, System.Action configure) -> Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder ~static Microsoft.Extensions.DependencyInjection.IdentityServerBuilderConfigurationExtensions.AddApiAuthorization(this Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder builder) -> Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder -~static Microsoft.Extensions.DependencyInjection.IdentityServerBuilderConfigurationExtensions.AddApiResources(this Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder builder, Microsoft.Extensions.Configuration.IConfiguration configuration) -> Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder +~static Microsoft.Extensions.DependencyInjection.IdentityServerBuilderConfigurationExtensions.AddApiAuthorization(this Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder builder, System.Action configure) -> Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder ~static Microsoft.Extensions.DependencyInjection.IdentityServerBuilderConfigurationExtensions.AddApiResources(this Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder builder) -> Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder -~static Microsoft.Extensions.DependencyInjection.IdentityServerBuilderConfigurationExtensions.AddClients(this Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder builder, Microsoft.Extensions.Configuration.IConfiguration configuration) -> Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder +~static Microsoft.Extensions.DependencyInjection.IdentityServerBuilderConfigurationExtensions.AddApiResources(this Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder builder, Microsoft.Extensions.Configuration.IConfiguration configuration) -> Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder ~static Microsoft.Extensions.DependencyInjection.IdentityServerBuilderConfigurationExtensions.AddClients(this Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder builder) -> Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder -~static Microsoft.Extensions.DependencyInjection.IdentityServerBuilderConfigurationExtensions.AddIdentityResources(this Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder builder, Microsoft.Extensions.Configuration.IConfiguration configuration) -> Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder +~static Microsoft.Extensions.DependencyInjection.IdentityServerBuilderConfigurationExtensions.AddClients(this Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder builder, Microsoft.Extensions.Configuration.IConfiguration configuration) -> Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder ~static Microsoft.Extensions.DependencyInjection.IdentityServerBuilderConfigurationExtensions.AddIdentityResources(this Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder builder) -> Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder -~static Microsoft.Extensions.DependencyInjection.IdentityServerBuilderConfigurationExtensions.AddSigningCredentials(this Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder builder, Microsoft.Extensions.Configuration.IConfiguration configuration) -> Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder +~static Microsoft.Extensions.DependencyInjection.IdentityServerBuilderConfigurationExtensions.AddIdentityResources(this Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder builder, Microsoft.Extensions.Configuration.IConfiguration configuration) -> Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder ~static Microsoft.Extensions.DependencyInjection.IdentityServerBuilderConfigurationExtensions.AddSigningCredentials(this Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder builder) -> Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder +~static Microsoft.Extensions.DependencyInjection.IdentityServerBuilderConfigurationExtensions.AddSigningCredentials(this Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder builder, Microsoft.Extensions.Configuration.IConfiguration configuration) -> Microsoft.Extensions.DependencyInjection.IIdentityServerBuilder Microsoft.AspNetCore.ApiAuthorization.IdentityServer.ApiAuthorizationOptions Microsoft.AspNetCore.ApiAuthorization.IdentityServer.ApiAuthorizationOptions.ApiAuthorizationOptions() -> void Microsoft.AspNetCore.ApiAuthorization.IdentityServer.ApiResourceBuilder diff --git a/src/Identity/Core/src/PublicAPI.Shipped.txt b/src/Identity/Core/src/PublicAPI.Shipped.txt index 67d8ebdac9ae..716dd3376cae 100644 --- a/src/Identity/Core/src/PublicAPI.Shipped.txt +++ b/src/Identity/Core/src/PublicAPI.Shipped.txt @@ -3,14 +3,19 @@ Microsoft.AspNetCore.Identity.AspNetRoleManager Microsoft.AspNetCore.Identity.AspNetRoleManager.AspNetRoleManager(Microsoft.AspNetCore.Identity.IRoleStore! store, System.Collections.Generic.IEnumerable!>! roleValidators, Microsoft.AspNetCore.Identity.ILookupNormalizer! keyNormalizer, Microsoft.AspNetCore.Identity.IdentityErrorDescriber! errors, Microsoft.Extensions.Logging.ILogger!>! logger, Microsoft.AspNetCore.Http.IHttpContextAccessor! contextAccessor) -> void Microsoft.AspNetCore.Identity.AspNetUserManager Microsoft.AspNetCore.Identity.AspNetUserManager.AspNetUserManager(Microsoft.AspNetCore.Identity.IUserStore! store, Microsoft.Extensions.Options.IOptions! optionsAccessor, Microsoft.AspNetCore.Identity.IPasswordHasher! passwordHasher, System.Collections.Generic.IEnumerable!>! userValidators, System.Collections.Generic.IEnumerable!>! passwordValidators, Microsoft.AspNetCore.Identity.ILookupNormalizer! keyNormalizer, Microsoft.AspNetCore.Identity.IdentityErrorDescriber! errors, System.IServiceProvider! services, Microsoft.Extensions.Logging.ILogger!>! logger) -> void +Microsoft.AspNetCore.Identity.DataProtectionTokenProviderOptions +Microsoft.AspNetCore.Identity.DataProtectionTokenProviderOptions.DataProtectionTokenProviderOptions() -> void Microsoft.AspNetCore.Identity.DataProtectionTokenProviderOptions.Name.get -> string! Microsoft.AspNetCore.Identity.DataProtectionTokenProviderOptions.Name.set -> void +Microsoft.AspNetCore.Identity.DataProtectionTokenProviderOptions.TokenLifespan.get -> System.TimeSpan +Microsoft.AspNetCore.Identity.DataProtectionTokenProviderOptions.TokenLifespan.set -> void Microsoft.AspNetCore.Identity.DataProtectorTokenProvider Microsoft.AspNetCore.Identity.DataProtectorTokenProvider.DataProtectorTokenProvider(Microsoft.AspNetCore.DataProtection.IDataProtectionProvider! dataProtectionProvider, Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILogger!>! logger) -> void Microsoft.AspNetCore.Identity.DataProtectorTokenProvider.Logger.get -> Microsoft.Extensions.Logging.ILogger!>! Microsoft.AspNetCore.Identity.DataProtectorTokenProvider.Name.get -> string! Microsoft.AspNetCore.Identity.DataProtectorTokenProvider.Options.get -> Microsoft.AspNetCore.Identity.DataProtectionTokenProviderOptions! Microsoft.AspNetCore.Identity.DataProtectorTokenProvider.Protector.get -> Microsoft.AspNetCore.DataProtection.IDataProtector! +Microsoft.AspNetCore.Identity.ExternalLoginInfo Microsoft.AspNetCore.Identity.ExternalLoginInfo.AuthenticationProperties.get -> Microsoft.AspNetCore.Authentication.AuthenticationProperties? Microsoft.AspNetCore.Identity.ExternalLoginInfo.AuthenticationProperties.set -> void Microsoft.AspNetCore.Identity.ExternalLoginInfo.AuthenticationTokens.get -> System.Collections.Generic.IEnumerable? @@ -18,19 +23,30 @@ Microsoft.AspNetCore.Identity.ExternalLoginInfo.AuthenticationTokens.set -> void Microsoft.AspNetCore.Identity.ExternalLoginInfo.ExternalLoginInfo(System.Security.Claims.ClaimsPrincipal! principal, string! loginProvider, string! providerKey, string! displayName) -> void Microsoft.AspNetCore.Identity.ExternalLoginInfo.Principal.get -> System.Security.Claims.ClaimsPrincipal! Microsoft.AspNetCore.Identity.ExternalLoginInfo.Principal.set -> void +Microsoft.AspNetCore.Identity.IdentityBuilderExtensions +Microsoft.AspNetCore.Identity.IdentityConstants +Microsoft.AspNetCore.Identity.IdentityConstants.IdentityConstants() -> void +Microsoft.AspNetCore.Identity.IdentityCookieAuthenticationBuilderExtensions +Microsoft.AspNetCore.Identity.IdentityCookiesBuilder Microsoft.AspNetCore.Identity.IdentityCookiesBuilder.ApplicationCookie.get -> Microsoft.Extensions.Options.OptionsBuilder? Microsoft.AspNetCore.Identity.IdentityCookiesBuilder.ApplicationCookie.set -> void Microsoft.AspNetCore.Identity.IdentityCookiesBuilder.ExternalCookie.get -> Microsoft.Extensions.Options.OptionsBuilder? Microsoft.AspNetCore.Identity.IdentityCookiesBuilder.ExternalCookie.set -> void +Microsoft.AspNetCore.Identity.IdentityCookiesBuilder.IdentityCookiesBuilder() -> void Microsoft.AspNetCore.Identity.IdentityCookiesBuilder.TwoFactorRememberMeCookie.get -> Microsoft.Extensions.Options.OptionsBuilder? Microsoft.AspNetCore.Identity.IdentityCookiesBuilder.TwoFactorRememberMeCookie.set -> void Microsoft.AspNetCore.Identity.IdentityCookiesBuilder.TwoFactorUserIdCookie.get -> Microsoft.Extensions.Options.OptionsBuilder? Microsoft.AspNetCore.Identity.IdentityCookiesBuilder.TwoFactorUserIdCookie.set -> void +Microsoft.AspNetCore.Identity.ISecurityStampValidator Microsoft.AspNetCore.Identity.ISecurityStampValidator.ValidateAsync(Microsoft.AspNetCore.Authentication.Cookies.CookieValidatePrincipalContext! context) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Identity.ITwoFactorSecurityStampValidator +Microsoft.AspNetCore.Identity.SecurityStampRefreshingPrincipalContext Microsoft.AspNetCore.Identity.SecurityStampRefreshingPrincipalContext.CurrentPrincipal.get -> System.Security.Claims.ClaimsPrincipal? Microsoft.AspNetCore.Identity.SecurityStampRefreshingPrincipalContext.CurrentPrincipal.set -> void Microsoft.AspNetCore.Identity.SecurityStampRefreshingPrincipalContext.NewPrincipal.get -> System.Security.Claims.ClaimsPrincipal? Microsoft.AspNetCore.Identity.SecurityStampRefreshingPrincipalContext.NewPrincipal.set -> void +Microsoft.AspNetCore.Identity.SecurityStampRefreshingPrincipalContext.SecurityStampRefreshingPrincipalContext() -> void +Microsoft.AspNetCore.Identity.SecurityStampValidator Microsoft.AspNetCore.Identity.SecurityStampValidator Microsoft.AspNetCore.Identity.SecurityStampValidator.Clock.get -> Microsoft.AspNetCore.Authentication.ISystemClock! Microsoft.AspNetCore.Identity.SecurityStampValidator.Logger.get -> Microsoft.Extensions.Logging.ILogger! @@ -38,8 +54,12 @@ Microsoft.AspNetCore.Identity.SecurityStampValidator.Logger.set -> void Microsoft.AspNetCore.Identity.SecurityStampValidator.Options.get -> Microsoft.AspNetCore.Identity.SecurityStampValidatorOptions! Microsoft.AspNetCore.Identity.SecurityStampValidator.SecurityStampValidator(Microsoft.Extensions.Options.IOptions! options, Microsoft.AspNetCore.Identity.SignInManager! signInManager, Microsoft.AspNetCore.Authentication.ISystemClock! clock, Microsoft.Extensions.Logging.ILoggerFactory! logger) -> void Microsoft.AspNetCore.Identity.SecurityStampValidator.SignInManager.get -> Microsoft.AspNetCore.Identity.SignInManager! +Microsoft.AspNetCore.Identity.SecurityStampValidatorOptions Microsoft.AspNetCore.Identity.SecurityStampValidatorOptions.OnRefreshingPrincipal.get -> System.Func? Microsoft.AspNetCore.Identity.SecurityStampValidatorOptions.OnRefreshingPrincipal.set -> void +Microsoft.AspNetCore.Identity.SecurityStampValidatorOptions.SecurityStampValidatorOptions() -> void +Microsoft.AspNetCore.Identity.SecurityStampValidatorOptions.ValidationInterval.get -> System.TimeSpan +Microsoft.AspNetCore.Identity.SecurityStampValidatorOptions.ValidationInterval.set -> void Microsoft.AspNetCore.Identity.SignInManager Microsoft.AspNetCore.Identity.SignInManager.ClaimsFactory.get -> Microsoft.AspNetCore.Identity.IUserClaimsPrincipalFactory! Microsoft.AspNetCore.Identity.SignInManager.ClaimsFactory.set -> void @@ -52,6 +72,9 @@ Microsoft.AspNetCore.Identity.SignInManager.UserManager.get -> Microsoft. Microsoft.AspNetCore.Identity.SignInManager.UserManager.set -> void Microsoft.AspNetCore.Identity.TwoFactorSecurityStampValidator Microsoft.AspNetCore.Identity.TwoFactorSecurityStampValidator.TwoFactorSecurityStampValidator(Microsoft.Extensions.Options.IOptions! options, Microsoft.AspNetCore.Identity.SignInManager! signInManager, Microsoft.AspNetCore.Authentication.ISystemClock! clock, Microsoft.Extensions.Logging.ILoggerFactory! logger) -> void +Microsoft.Extensions.DependencyInjection.IdentityServiceCollectionExtensions +override Microsoft.AspNetCore.Identity.AspNetRoleManager.CancellationToken.get -> System.Threading.CancellationToken +override Microsoft.AspNetCore.Identity.AspNetUserManager.CancellationToken.get -> System.Threading.CancellationToken override Microsoft.AspNetCore.Identity.TwoFactorSecurityStampValidator.SecurityStampVerified(TUser! user, Microsoft.AspNetCore.Authentication.Cookies.CookieValidatePrincipalContext! context) -> System.Threading.Tasks.Task! override Microsoft.AspNetCore.Identity.TwoFactorSecurityStampValidator.VerifySecurityStamp(System.Security.Claims.ClaimsPrincipal? principal) -> System.Threading.Tasks.Task! static Microsoft.AspNetCore.Identity.IdentityBuilderExtensions.AddDefaultTokenProviders(this Microsoft.AspNetCore.Identity.IdentityBuilder! builder) -> Microsoft.AspNetCore.Identity.IdentityBuilder! @@ -114,26 +137,3 @@ virtual Microsoft.AspNetCore.Identity.SignInManager.UpdateExternalAuthent virtual Microsoft.AspNetCore.Identity.SignInManager.ValidateSecurityStampAsync(System.Security.Claims.ClaimsPrincipal? principal) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.SignInManager.ValidateSecurityStampAsync(TUser? user, string? securityStamp) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.SignInManager.ValidateTwoFactorSecurityStampAsync(System.Security.Claims.ClaimsPrincipal? principal) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Identity.DataProtectionTokenProviderOptions -Microsoft.AspNetCore.Identity.DataProtectionTokenProviderOptions.DataProtectionTokenProviderOptions() -> void -Microsoft.AspNetCore.Identity.DataProtectionTokenProviderOptions.TokenLifespan.get -> System.TimeSpan -Microsoft.AspNetCore.Identity.DataProtectionTokenProviderOptions.TokenLifespan.set -> void -Microsoft.AspNetCore.Identity.ExternalLoginInfo -Microsoft.AspNetCore.Identity.IdentityBuilderExtensions -Microsoft.AspNetCore.Identity.IdentityConstants -Microsoft.AspNetCore.Identity.IdentityConstants.IdentityConstants() -> void -Microsoft.AspNetCore.Identity.IdentityCookieAuthenticationBuilderExtensions -Microsoft.AspNetCore.Identity.IdentityCookiesBuilder -Microsoft.AspNetCore.Identity.IdentityCookiesBuilder.IdentityCookiesBuilder() -> void -Microsoft.AspNetCore.Identity.ISecurityStampValidator -Microsoft.AspNetCore.Identity.ITwoFactorSecurityStampValidator -Microsoft.AspNetCore.Identity.SecurityStampRefreshingPrincipalContext -Microsoft.AspNetCore.Identity.SecurityStampRefreshingPrincipalContext.SecurityStampRefreshingPrincipalContext() -> void -Microsoft.AspNetCore.Identity.SecurityStampValidator -Microsoft.AspNetCore.Identity.SecurityStampValidatorOptions -Microsoft.AspNetCore.Identity.SecurityStampValidatorOptions.SecurityStampValidatorOptions() -> void -Microsoft.AspNetCore.Identity.SecurityStampValidatorOptions.ValidationInterval.get -> System.TimeSpan -Microsoft.AspNetCore.Identity.SecurityStampValidatorOptions.ValidationInterval.set -> void -Microsoft.Extensions.DependencyInjection.IdentityServiceCollectionExtensions -override Microsoft.AspNetCore.Identity.AspNetRoleManager.CancellationToken.get -> System.Threading.CancellationToken -override Microsoft.AspNetCore.Identity.AspNetUserManager.CancellationToken.get -> System.Threading.CancellationToken diff --git a/src/Identity/EntityFrameworkCore/src/PublicAPI.Shipped.txt b/src/Identity/EntityFrameworkCore/src/PublicAPI.Shipped.txt index b4d4e771792b..a3da76a015b6 100644 --- a/src/Identity/EntityFrameworkCore/src/PublicAPI.Shipped.txt +++ b/src/Identity/EntityFrameworkCore/src/PublicAPI.Shipped.txt @@ -1,21 +1,33 @@ #nullable enable +Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityDbContext +Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityDbContext.IdentityDbContext() -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityDbContext.IdentityDbContext(Microsoft.EntityFrameworkCore.DbContextOptions! options) -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityDbContext +Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityDbContext.IdentityDbContext() -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityDbContext.IdentityDbContext(Microsoft.EntityFrameworkCore.DbContextOptions! options) -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityDbContext +Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityDbContext.IdentityDbContext() -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityDbContext.IdentityDbContext(Microsoft.EntityFrameworkCore.DbContextOptions! options) -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityDbContext +Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityDbContext.IdentityDbContext() -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityDbContext.IdentityDbContext(Microsoft.EntityFrameworkCore.DbContextOptions! options) -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityUserContext +Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityUserContext.IdentityUserContext() -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityUserContext.IdentityUserContext(Microsoft.EntityFrameworkCore.DbContextOptions! options) -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityUserContext +Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityUserContext.IdentityUserContext() -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityUserContext.IdentityUserContext(Microsoft.EntityFrameworkCore.DbContextOptions! options) -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityUserContext +Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityUserContext.IdentityUserContext() -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityUserContext.IdentityUserContext(Microsoft.EntityFrameworkCore.DbContextOptions! options) -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore +Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore.AutoSaveChanges.get -> bool +Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore.AutoSaveChanges.set -> void +Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore.Dispose() -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore.ErrorDescriber.get -> Microsoft.AspNetCore.Identity.IdentityErrorDescriber! Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore.ErrorDescriber.set -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore.RoleStore(TContext! context, Microsoft.AspNetCore.Identity.IdentityErrorDescriber? describer = null) -> void +Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore.ThrowIfDisposed() -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore.RoleStore(TContext! context, Microsoft.AspNetCore.Identity.IdentityErrorDescriber? describer = null) -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore @@ -23,6 +35,8 @@ Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore.Rol Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore.RoleStore(Microsoft.EntityFrameworkCore.DbContext! context, Microsoft.AspNetCore.Identity.IdentityErrorDescriber? describer = null) -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserOnlyStore +Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserOnlyStore.AutoSaveChanges.get -> bool +Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserOnlyStore.AutoSaveChanges.set -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserOnlyStore.SaveChanges(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserOnlyStore.UserClaims.get -> Microsoft.EntityFrameworkCore.DbSet! Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserOnlyStore.UserLogins.get -> Microsoft.EntityFrameworkCore.DbSet! @@ -35,8 +49,11 @@ Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserOnlyStore Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserOnlyStore.UserOnlyStore(TContext! context, Microsoft.AspNetCore.Identity.IdentityErrorDescriber? describer = null) -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserOnlyStore Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserOnlyStore.UserOnlyStore(Microsoft.EntityFrameworkCore.DbContext! context, Microsoft.AspNetCore.Identity.IdentityErrorDescriber? describer = null) -> void +Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserStore Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserStore.UserStore(Microsoft.EntityFrameworkCore.DbContext! context, Microsoft.AspNetCore.Identity.IdentityErrorDescriber? describer = null) -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserStore +Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserStore.AutoSaveChanges.get -> bool +Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserStore.AutoSaveChanges.set -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserStore.SaveChanges(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserStore.UserStore(TContext! context, Microsoft.AspNetCore.Identity.IdentityErrorDescriber? describer = null) -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserStore @@ -45,6 +62,7 @@ Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserStore.UserStore(TContext! context, Microsoft.AspNetCore.Identity.IdentityErrorDescriber? describer = null) -> void Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserStore Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserStore.UserStore(Microsoft.EntityFrameworkCore.DbContext! context, Microsoft.AspNetCore.Identity.IdentityErrorDescriber? describer = null) -> void +Microsoft.Extensions.DependencyInjection.IdentityEntityFrameworkBuilderExtensions override Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityDbContext.OnModelCreating(Microsoft.EntityFrameworkCore.ModelBuilder! builder) -> void override Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityUserContext.OnModelCreating(Microsoft.EntityFrameworkCore.ModelBuilder! builder) -> void override Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserOnlyStore.AddClaimsAsync(TUser! user, System.Collections.Generic.IEnumerable! claims, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! @@ -128,26 +146,9 @@ virtual Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore.GetRoleNameAsync(TRole! role, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore.RemoveClaimAsync(TRole! role, System.Security.Claims.Claim! claim, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore.Roles.get -> System.Linq.IQueryable! +virtual Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore.SaveChanges(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore.SetNormalizedRoleNameAsync(TRole! role, string? normalizedName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore.SetRoleNameAsync(TRole! role, string? roleName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore.UpdateAsync(TRole! role, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserOnlyStore.Context.get -> TContext! virtual Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserStore.Context.get -> TContext! -Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityDbContext -Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityDbContext.IdentityDbContext() -> void -Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityDbContext.IdentityDbContext() -> void -Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityDbContext.IdentityDbContext() -> void -Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityDbContext.IdentityDbContext() -> void -Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityUserContext.IdentityUserContext() -> void -Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityUserContext.IdentityUserContext() -> void -Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityUserContext.IdentityUserContext() -> void -Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore.AutoSaveChanges.get -> bool -Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore.AutoSaveChanges.set -> void -Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore.Dispose() -> void -Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore.ThrowIfDisposed() -> void -Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserOnlyStore.AutoSaveChanges.get -> bool -Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserOnlyStore.AutoSaveChanges.set -> void -Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserStore -Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserStore.AutoSaveChanges.get -> bool -Microsoft.AspNetCore.Identity.EntityFrameworkCore.UserStore.AutoSaveChanges.set -> void -Microsoft.Extensions.DependencyInjection.IdentityEntityFrameworkBuilderExtensions diff --git a/src/Identity/EntityFrameworkCore/src/PublicAPI.Unshipped.txt b/src/Identity/EntityFrameworkCore/src/PublicAPI.Unshipped.txt index 5d7f33646a34..7dc5c58110bf 100644 --- a/src/Identity/EntityFrameworkCore/src/PublicAPI.Unshipped.txt +++ b/src/Identity/EntityFrameworkCore/src/PublicAPI.Unshipped.txt @@ -1,2 +1 @@ #nullable enable -virtual Microsoft.AspNetCore.Identity.EntityFrameworkCore.RoleStore.SaveChanges(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! diff --git a/src/Identity/Extensions.Core/src/PublicAPI.Shipped.txt b/src/Identity/Extensions.Core/src/PublicAPI.Shipped.txt index 852dc9d908a1..679c2c550ece 100644 --- a/src/Identity/Extensions.Core/src/PublicAPI.Shipped.txt +++ b/src/Identity/Extensions.Core/src/PublicAPI.Shipped.txt @@ -4,6 +4,9 @@ const Microsoft.AspNetCore.Identity.UserManager.ChangePhoneNumberTokenPur const Microsoft.AspNetCore.Identity.UserManager.ConfirmEmailTokenPurpose = "EmailConfirmation" -> string! const Microsoft.AspNetCore.Identity.UserManager.ResetPasswordTokenPurpose = "ResetPassword" -> string! Microsoft.AspNetCore.Identity.AuthenticatorTokenProvider +Microsoft.AspNetCore.Identity.AuthenticatorTokenProvider.AuthenticatorTokenProvider() -> void +Microsoft.AspNetCore.Identity.ClaimsIdentityOptions +Microsoft.AspNetCore.Identity.ClaimsIdentityOptions.ClaimsIdentityOptions() -> void Microsoft.AspNetCore.Identity.ClaimsIdentityOptions.EmailClaimType.get -> string! Microsoft.AspNetCore.Identity.ClaimsIdentityOptions.EmailClaimType.set -> void Microsoft.AspNetCore.Identity.ClaimsIdentityOptions.RoleClaimType.get -> string! @@ -14,20 +17,30 @@ Microsoft.AspNetCore.Identity.ClaimsIdentityOptions.UserIdClaimType.get -> strin Microsoft.AspNetCore.Identity.ClaimsIdentityOptions.UserIdClaimType.set -> void Microsoft.AspNetCore.Identity.ClaimsIdentityOptions.UserNameClaimType.get -> string! Microsoft.AspNetCore.Identity.ClaimsIdentityOptions.UserNameClaimType.set -> void +Microsoft.AspNetCore.Identity.DefaultPersonalDataProtector Microsoft.AspNetCore.Identity.DefaultPersonalDataProtector.DefaultPersonalDataProtector(Microsoft.AspNetCore.Identity.ILookupProtectorKeyRing! keyRing, Microsoft.AspNetCore.Identity.ILookupProtector! protector) -> void Microsoft.AspNetCore.Identity.DefaultUserConfirmation +Microsoft.AspNetCore.Identity.DefaultUserConfirmation.DefaultUserConfirmation() -> void Microsoft.AspNetCore.Identity.EmailTokenProvider +Microsoft.AspNetCore.Identity.EmailTokenProvider.EmailTokenProvider() -> void +Microsoft.AspNetCore.Identity.IdentityBuilder Microsoft.AspNetCore.Identity.IdentityBuilder.IdentityBuilder(System.Type! user, Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> void Microsoft.AspNetCore.Identity.IdentityBuilder.IdentityBuilder(System.Type! user, System.Type! role, Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> void Microsoft.AspNetCore.Identity.IdentityBuilder.RoleType.get -> System.Type? Microsoft.AspNetCore.Identity.IdentityBuilder.Services.get -> Microsoft.Extensions.DependencyInjection.IServiceCollection! Microsoft.AspNetCore.Identity.IdentityBuilder.UserType.get -> System.Type! +Microsoft.AspNetCore.Identity.IdentityError Microsoft.AspNetCore.Identity.IdentityError.Code.get -> string! Microsoft.AspNetCore.Identity.IdentityError.Code.set -> void Microsoft.AspNetCore.Identity.IdentityError.Description.get -> string! Microsoft.AspNetCore.Identity.IdentityError.Description.set -> void +Microsoft.AspNetCore.Identity.IdentityError.IdentityError() -> void +Microsoft.AspNetCore.Identity.IdentityErrorDescriber +Microsoft.AspNetCore.Identity.IdentityErrorDescriber.IdentityErrorDescriber() -> void +Microsoft.AspNetCore.Identity.IdentityOptions Microsoft.AspNetCore.Identity.IdentityOptions.ClaimsIdentity.get -> Microsoft.AspNetCore.Identity.ClaimsIdentityOptions! Microsoft.AspNetCore.Identity.IdentityOptions.ClaimsIdentity.set -> void +Microsoft.AspNetCore.Identity.IdentityOptions.IdentityOptions() -> void Microsoft.AspNetCore.Identity.IdentityOptions.Lockout.get -> Microsoft.AspNetCore.Identity.LockoutOptions! Microsoft.AspNetCore.Identity.IdentityOptions.Lockout.set -> void Microsoft.AspNetCore.Identity.IdentityOptions.Password.get -> Microsoft.AspNetCore.Identity.PasswordOptions! @@ -40,11 +53,18 @@ Microsoft.AspNetCore.Identity.IdentityOptions.Tokens.get -> Microsoft.AspNetCore Microsoft.AspNetCore.Identity.IdentityOptions.Tokens.set -> void Microsoft.AspNetCore.Identity.IdentityOptions.User.get -> Microsoft.AspNetCore.Identity.UserOptions! Microsoft.AspNetCore.Identity.IdentityOptions.User.set -> void +Microsoft.AspNetCore.Identity.IdentityResult Microsoft.AspNetCore.Identity.IdentityResult.Errors.get -> System.Collections.Generic.IEnumerable! +Microsoft.AspNetCore.Identity.IdentityResult.IdentityResult() -> void +Microsoft.AspNetCore.Identity.IdentityResult.Succeeded.get -> bool +Microsoft.AspNetCore.Identity.IdentityResult.Succeeded.set -> void +Microsoft.AspNetCore.Identity.ILookupNormalizer Microsoft.AspNetCore.Identity.ILookupNormalizer.NormalizeEmail(string? email) -> string? Microsoft.AspNetCore.Identity.ILookupNormalizer.NormalizeName(string? name) -> string? +Microsoft.AspNetCore.Identity.ILookupProtector Microsoft.AspNetCore.Identity.ILookupProtector.Protect(string! keyId, string? data) -> string? Microsoft.AspNetCore.Identity.ILookupProtector.Unprotect(string! keyId, string? data) -> string? +Microsoft.AspNetCore.Identity.ILookupProtectorKeyRing Microsoft.AspNetCore.Identity.ILookupProtectorKeyRing.CurrentKeyId.get -> string! Microsoft.AspNetCore.Identity.ILookupProtectorKeyRing.GetAllKeyIds() -> System.Collections.Generic.IEnumerable! Microsoft.AspNetCore.Identity.ILookupProtectorKeyRing.this[string! keyId].get -> string! @@ -53,6 +73,7 @@ Microsoft.AspNetCore.Identity.IPasswordHasher.HashPassword(TUser! user, s Microsoft.AspNetCore.Identity.IPasswordHasher.VerifyHashedPassword(TUser! user, string! hashedPassword, string! providedPassword) -> Microsoft.AspNetCore.Identity.PasswordVerificationResult Microsoft.AspNetCore.Identity.IPasswordValidator Microsoft.AspNetCore.Identity.IPasswordValidator.ValidateAsync(Microsoft.AspNetCore.Identity.UserManager! manager, TUser! user, string? password) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Identity.IPersonalDataProtector Microsoft.AspNetCore.Identity.IPersonalDataProtector.Protect(string? data) -> string? Microsoft.AspNetCore.Identity.IPersonalDataProtector.Unprotect(string? data) -> string? Microsoft.AspNetCore.Identity.IProtectedUserStore @@ -157,13 +178,54 @@ Microsoft.AspNetCore.Identity.IUserTwoFactorTokenProvider.GenerateAsync(s Microsoft.AspNetCore.Identity.IUserTwoFactorTokenProvider.ValidateAsync(string! purpose, string! token, Microsoft.AspNetCore.Identity.UserManager! manager, TUser! user) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Identity.IUserValidator Microsoft.AspNetCore.Identity.IUserValidator.ValidateAsync(Microsoft.AspNetCore.Identity.UserManager! manager, TUser! user) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Identity.LockoutOptions +Microsoft.AspNetCore.Identity.LockoutOptions.AllowedForNewUsers.get -> bool +Microsoft.AspNetCore.Identity.LockoutOptions.AllowedForNewUsers.set -> void +Microsoft.AspNetCore.Identity.LockoutOptions.DefaultLockoutTimeSpan.get -> System.TimeSpan +Microsoft.AspNetCore.Identity.LockoutOptions.DefaultLockoutTimeSpan.set -> void +Microsoft.AspNetCore.Identity.LockoutOptions.LockoutOptions() -> void +Microsoft.AspNetCore.Identity.LockoutOptions.MaxFailedAccessAttempts.get -> int +Microsoft.AspNetCore.Identity.LockoutOptions.MaxFailedAccessAttempts.set -> void Microsoft.AspNetCore.Identity.PasswordHasher Microsoft.AspNetCore.Identity.PasswordHasher.PasswordHasher(Microsoft.Extensions.Options.IOptions? optionsAccessor = null) -> void +Microsoft.AspNetCore.Identity.PasswordHasherCompatibilityMode +Microsoft.AspNetCore.Identity.PasswordHasherCompatibilityMode.IdentityV2 = 0 -> Microsoft.AspNetCore.Identity.PasswordHasherCompatibilityMode +Microsoft.AspNetCore.Identity.PasswordHasherCompatibilityMode.IdentityV3 = 1 -> Microsoft.AspNetCore.Identity.PasswordHasherCompatibilityMode +Microsoft.AspNetCore.Identity.PasswordHasherOptions +Microsoft.AspNetCore.Identity.PasswordHasherOptions.CompatibilityMode.get -> Microsoft.AspNetCore.Identity.PasswordHasherCompatibilityMode +Microsoft.AspNetCore.Identity.PasswordHasherOptions.CompatibilityMode.set -> void +Microsoft.AspNetCore.Identity.PasswordHasherOptions.IterationCount.get -> int +Microsoft.AspNetCore.Identity.PasswordHasherOptions.IterationCount.set -> void +Microsoft.AspNetCore.Identity.PasswordHasherOptions.PasswordHasherOptions() -> void +Microsoft.AspNetCore.Identity.PasswordOptions +Microsoft.AspNetCore.Identity.PasswordOptions.PasswordOptions() -> void +Microsoft.AspNetCore.Identity.PasswordOptions.RequireDigit.get -> bool +Microsoft.AspNetCore.Identity.PasswordOptions.RequireDigit.set -> void +Microsoft.AspNetCore.Identity.PasswordOptions.RequiredLength.get -> int +Microsoft.AspNetCore.Identity.PasswordOptions.RequiredLength.set -> void +Microsoft.AspNetCore.Identity.PasswordOptions.RequiredUniqueChars.get -> int +Microsoft.AspNetCore.Identity.PasswordOptions.RequiredUniqueChars.set -> void +Microsoft.AspNetCore.Identity.PasswordOptions.RequireLowercase.get -> bool +Microsoft.AspNetCore.Identity.PasswordOptions.RequireLowercase.set -> void +Microsoft.AspNetCore.Identity.PasswordOptions.RequireNonAlphanumeric.get -> bool +Microsoft.AspNetCore.Identity.PasswordOptions.RequireNonAlphanumeric.set -> void +Microsoft.AspNetCore.Identity.PasswordOptions.RequireUppercase.get -> bool +Microsoft.AspNetCore.Identity.PasswordOptions.RequireUppercase.set -> void Microsoft.AspNetCore.Identity.PasswordValidator Microsoft.AspNetCore.Identity.PasswordValidator.Describer.get -> Microsoft.AspNetCore.Identity.IdentityErrorDescriber! Microsoft.AspNetCore.Identity.PasswordValidator.PasswordValidator(Microsoft.AspNetCore.Identity.IdentityErrorDescriber? errors = null) -> void +Microsoft.AspNetCore.Identity.PasswordVerificationResult +Microsoft.AspNetCore.Identity.PasswordVerificationResult.Failed = 0 -> Microsoft.AspNetCore.Identity.PasswordVerificationResult +Microsoft.AspNetCore.Identity.PasswordVerificationResult.Success = 1 -> Microsoft.AspNetCore.Identity.PasswordVerificationResult +Microsoft.AspNetCore.Identity.PasswordVerificationResult.SuccessRehashNeeded = 2 -> Microsoft.AspNetCore.Identity.PasswordVerificationResult +Microsoft.AspNetCore.Identity.PersonalDataAttribute +Microsoft.AspNetCore.Identity.PersonalDataAttribute.PersonalDataAttribute() -> void Microsoft.AspNetCore.Identity.PhoneNumberTokenProvider +Microsoft.AspNetCore.Identity.PhoneNumberTokenProvider.PhoneNumberTokenProvider() -> void +Microsoft.AspNetCore.Identity.ProtectedPersonalDataAttribute +Microsoft.AspNetCore.Identity.ProtectedPersonalDataAttribute.ProtectedPersonalDataAttribute() -> void Microsoft.AspNetCore.Identity.RoleManager +Microsoft.AspNetCore.Identity.RoleManager.Dispose() -> void Microsoft.AspNetCore.Identity.RoleManager.ErrorDescriber.get -> Microsoft.AspNetCore.Identity.IdentityErrorDescriber! Microsoft.AspNetCore.Identity.RoleManager.ErrorDescriber.set -> void Microsoft.AspNetCore.Identity.RoleManager.KeyNormalizer.get -> Microsoft.AspNetCore.Identity.ILookupNormalizer! @@ -171,8 +233,34 @@ Microsoft.AspNetCore.Identity.RoleManager.KeyNormalizer.set -> void Microsoft.AspNetCore.Identity.RoleManager.RoleManager(Microsoft.AspNetCore.Identity.IRoleStore! store, System.Collections.Generic.IEnumerable!>! roleValidators, Microsoft.AspNetCore.Identity.ILookupNormalizer! keyNormalizer, Microsoft.AspNetCore.Identity.IdentityErrorDescriber! errors, Microsoft.Extensions.Logging.ILogger!>! logger) -> void Microsoft.AspNetCore.Identity.RoleManager.RoleValidators.get -> System.Collections.Generic.IList!>! Microsoft.AspNetCore.Identity.RoleManager.Store.get -> Microsoft.AspNetCore.Identity.IRoleStore! +Microsoft.AspNetCore.Identity.RoleManager.ThrowIfDisposed() -> void Microsoft.AspNetCore.Identity.RoleValidator Microsoft.AspNetCore.Identity.RoleValidator.RoleValidator(Microsoft.AspNetCore.Identity.IdentityErrorDescriber? errors = null) -> void +Microsoft.AspNetCore.Identity.SignInOptions +Microsoft.AspNetCore.Identity.SignInOptions.RequireConfirmedAccount.get -> bool +Microsoft.AspNetCore.Identity.SignInOptions.RequireConfirmedAccount.set -> void +Microsoft.AspNetCore.Identity.SignInOptions.RequireConfirmedEmail.get -> bool +Microsoft.AspNetCore.Identity.SignInOptions.RequireConfirmedEmail.set -> void +Microsoft.AspNetCore.Identity.SignInOptions.RequireConfirmedPhoneNumber.get -> bool +Microsoft.AspNetCore.Identity.SignInOptions.RequireConfirmedPhoneNumber.set -> void +Microsoft.AspNetCore.Identity.SignInOptions.SignInOptions() -> void +Microsoft.AspNetCore.Identity.SignInResult +Microsoft.AspNetCore.Identity.SignInResult.IsLockedOut.get -> bool +Microsoft.AspNetCore.Identity.SignInResult.IsLockedOut.set -> void +Microsoft.AspNetCore.Identity.SignInResult.IsNotAllowed.get -> bool +Microsoft.AspNetCore.Identity.SignInResult.IsNotAllowed.set -> void +Microsoft.AspNetCore.Identity.SignInResult.RequiresTwoFactor.get -> bool +Microsoft.AspNetCore.Identity.SignInResult.RequiresTwoFactor.set -> void +Microsoft.AspNetCore.Identity.SignInResult.SignInResult() -> void +Microsoft.AspNetCore.Identity.SignInResult.Succeeded.get -> bool +Microsoft.AspNetCore.Identity.SignInResult.Succeeded.set -> void +Microsoft.AspNetCore.Identity.StoreOptions +Microsoft.AspNetCore.Identity.StoreOptions.MaxLengthForKeys.get -> int +Microsoft.AspNetCore.Identity.StoreOptions.MaxLengthForKeys.set -> void +Microsoft.AspNetCore.Identity.StoreOptions.ProtectPersonalData.get -> bool +Microsoft.AspNetCore.Identity.StoreOptions.ProtectPersonalData.set -> void +Microsoft.AspNetCore.Identity.StoreOptions.StoreOptions() -> void +Microsoft.AspNetCore.Identity.TokenOptions Microsoft.AspNetCore.Identity.TokenOptions.AuthenticatorIssuer.get -> string! Microsoft.AspNetCore.Identity.TokenOptions.AuthenticatorIssuer.set -> void Microsoft.AspNetCore.Identity.TokenOptions.AuthenticatorTokenProvider.get -> string! @@ -187,13 +275,18 @@ Microsoft.AspNetCore.Identity.TokenOptions.PasswordResetTokenProvider.get -> str Microsoft.AspNetCore.Identity.TokenOptions.PasswordResetTokenProvider.set -> void Microsoft.AspNetCore.Identity.TokenOptions.ProviderMap.get -> System.Collections.Generic.Dictionary! Microsoft.AspNetCore.Identity.TokenOptions.ProviderMap.set -> void +Microsoft.AspNetCore.Identity.TokenOptions.TokenOptions() -> void +Microsoft.AspNetCore.Identity.TokenProviderDescriptor Microsoft.AspNetCore.Identity.TokenProviderDescriptor.ProviderInstance.get -> object? Microsoft.AspNetCore.Identity.TokenProviderDescriptor.ProviderInstance.set -> void Microsoft.AspNetCore.Identity.TokenProviderDescriptor.ProviderType.get -> System.Type! Microsoft.AspNetCore.Identity.TokenProviderDescriptor.TokenProviderDescriptor(System.Type! type) -> void Microsoft.AspNetCore.Identity.TotpSecurityStampBasedTokenProvider +Microsoft.AspNetCore.Identity.TotpSecurityStampBasedTokenProvider.TotpSecurityStampBasedTokenProvider() -> void +Microsoft.AspNetCore.Identity.UpperInvariantLookupNormalizer Microsoft.AspNetCore.Identity.UpperInvariantLookupNormalizer.NormalizeEmail(string? email) -> string? Microsoft.AspNetCore.Identity.UpperInvariantLookupNormalizer.NormalizeName(string? name) -> string? +Microsoft.AspNetCore.Identity.UpperInvariantLookupNormalizer.UpperInvariantLookupNormalizer() -> void Microsoft.AspNetCore.Identity.UserClaimsPrincipalFactory Microsoft.AspNetCore.Identity.UserClaimsPrincipalFactory.RoleManager.get -> Microsoft.AspNetCore.Identity.RoleManager! Microsoft.AspNetCore.Identity.UserClaimsPrincipalFactory.UserClaimsPrincipalFactory(Microsoft.AspNetCore.Identity.UserManager! userManager, Microsoft.AspNetCore.Identity.RoleManager! roleManager, Microsoft.Extensions.Options.IOptions! options) -> void @@ -201,6 +294,7 @@ Microsoft.AspNetCore.Identity.UserClaimsPrincipalFactory Microsoft.AspNetCore.Identity.UserClaimsPrincipalFactory.Options.get -> Microsoft.AspNetCore.Identity.IdentityOptions! Microsoft.AspNetCore.Identity.UserClaimsPrincipalFactory.UserClaimsPrincipalFactory(Microsoft.AspNetCore.Identity.UserManager! userManager, Microsoft.Extensions.Options.IOptions! optionsAccessor) -> void Microsoft.AspNetCore.Identity.UserClaimsPrincipalFactory.UserManager.get -> Microsoft.AspNetCore.Identity.UserManager! +Microsoft.AspNetCore.Identity.UserLoginInfo Microsoft.AspNetCore.Identity.UserLoginInfo.LoginProvider.get -> string! Microsoft.AspNetCore.Identity.UserLoginInfo.LoginProvider.set -> void Microsoft.AspNetCore.Identity.UserLoginInfo.ProviderDisplayName.get -> string? @@ -209,6 +303,7 @@ Microsoft.AspNetCore.Identity.UserLoginInfo.ProviderKey.get -> string! Microsoft.AspNetCore.Identity.UserLoginInfo.ProviderKey.set -> void Microsoft.AspNetCore.Identity.UserLoginInfo.UserLoginInfo(string! loginProvider, string! providerKey, string? displayName) -> void Microsoft.AspNetCore.Identity.UserManager +Microsoft.AspNetCore.Identity.UserManager.Dispose() -> void Microsoft.AspNetCore.Identity.UserManager.ErrorDescriber.get -> Microsoft.AspNetCore.Identity.IdentityErrorDescriber! Microsoft.AspNetCore.Identity.UserManager.ErrorDescriber.set -> void Microsoft.AspNetCore.Identity.UserManager.KeyNormalizer.get -> Microsoft.AspNetCore.Identity.ILookupNormalizer! @@ -220,15 +315,21 @@ Microsoft.AspNetCore.Identity.UserManager.PasswordHasher.set -> void Microsoft.AspNetCore.Identity.UserManager.PasswordValidators.get -> System.Collections.Generic.IList!>! Microsoft.AspNetCore.Identity.UserManager.Store.get -> Microsoft.AspNetCore.Identity.IUserStore! Microsoft.AspNetCore.Identity.UserManager.Store.set -> void +Microsoft.AspNetCore.Identity.UserManager.ThrowIfDisposed() -> void Microsoft.AspNetCore.Identity.UserManager.UserManager(Microsoft.AspNetCore.Identity.IUserStore! store, Microsoft.Extensions.Options.IOptions! optionsAccessor, Microsoft.AspNetCore.Identity.IPasswordHasher! passwordHasher, System.Collections.Generic.IEnumerable!>! userValidators, System.Collections.Generic.IEnumerable!>! passwordValidators, Microsoft.AspNetCore.Identity.ILookupNormalizer! keyNormalizer, Microsoft.AspNetCore.Identity.IdentityErrorDescriber! errors, System.IServiceProvider! services, Microsoft.Extensions.Logging.ILogger!>! logger) -> void Microsoft.AspNetCore.Identity.UserManager.UserValidators.get -> System.Collections.Generic.IList!>! Microsoft.AspNetCore.Identity.UserManager.ValidatePasswordAsync(TUser! user, string? password) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Identity.UserManager.ValidateUserAsync(TUser! user) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Identity.UserOptions Microsoft.AspNetCore.Identity.UserOptions.AllowedUserNameCharacters.get -> string! Microsoft.AspNetCore.Identity.UserOptions.AllowedUserNameCharacters.set -> void +Microsoft.AspNetCore.Identity.UserOptions.RequireUniqueEmail.get -> bool +Microsoft.AspNetCore.Identity.UserOptions.RequireUniqueEmail.set -> void +Microsoft.AspNetCore.Identity.UserOptions.UserOptions() -> void Microsoft.AspNetCore.Identity.UserValidator Microsoft.AspNetCore.Identity.UserValidator.Describer.get -> Microsoft.AspNetCore.Identity.IdentityErrorDescriber! Microsoft.AspNetCore.Identity.UserValidator.UserValidator(Microsoft.AspNetCore.Identity.IdentityErrorDescriber? errors = null) -> void +Microsoft.Extensions.DependencyInjection.IdentityServiceCollectionExtensions override Microsoft.AspNetCore.Identity.EmailTokenProvider.CanGenerateTwoFactorTokenAsync(Microsoft.AspNetCore.Identity.UserManager! manager, TUser! user) -> System.Threading.Tasks.Task! override Microsoft.AspNetCore.Identity.EmailTokenProvider.GetUserModifierAsync(string! purpose, Microsoft.AspNetCore.Identity.UserManager! manager, TUser! user) -> System.Threading.Tasks.Task! override Microsoft.AspNetCore.Identity.IdentityResult.ToString() -> string! @@ -251,6 +352,7 @@ static readonly Microsoft.AspNetCore.Identity.TokenOptions.DefaultEmailProvider static readonly Microsoft.AspNetCore.Identity.TokenOptions.DefaultPhoneProvider -> string! static readonly Microsoft.AspNetCore.Identity.TokenOptions.DefaultProvider -> string! static System.Security.Claims.PrincipalExtensions.FindFirstValue(this System.Security.Claims.ClaimsPrincipal! principal, string! claimType) -> string? +System.Security.Claims.PrincipalExtensions virtual Microsoft.AspNetCore.Identity.AuthenticatorTokenProvider.CanGenerateTwoFactorTokenAsync(Microsoft.AspNetCore.Identity.UserManager! manager, TUser! user) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.AuthenticatorTokenProvider.GenerateAsync(string! purpose, Microsoft.AspNetCore.Identity.UserManager! manager, TUser! user) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.AuthenticatorTokenProvider.ValidateAsync(string! purpose, string! token, Microsoft.AspNetCore.Identity.UserManager! manager, TUser! user) -> System.Threading.Tasks.Task! @@ -295,10 +397,16 @@ virtual Microsoft.AspNetCore.Identity.IdentityErrorDescriber.UserLockoutNotEnabl virtual Microsoft.AspNetCore.Identity.IdentityErrorDescriber.UserNotInRole(string! role) -> Microsoft.AspNetCore.Identity.IdentityError! virtual Microsoft.AspNetCore.Identity.PasswordHasher.HashPassword(TUser! user, string! password) -> string! virtual Microsoft.AspNetCore.Identity.PasswordHasher.VerifyHashedPassword(TUser! user, string! hashedPassword, string! providedPassword) -> Microsoft.AspNetCore.Identity.PasswordVerificationResult +virtual Microsoft.AspNetCore.Identity.PasswordValidator.IsDigit(char c) -> bool +virtual Microsoft.AspNetCore.Identity.PasswordValidator.IsLetterOrDigit(char c) -> bool +virtual Microsoft.AspNetCore.Identity.PasswordValidator.IsLower(char c) -> bool +virtual Microsoft.AspNetCore.Identity.PasswordValidator.IsUpper(char c) -> bool virtual Microsoft.AspNetCore.Identity.PasswordValidator.ValidateAsync(Microsoft.AspNetCore.Identity.UserManager! manager, TUser! user, string? password) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.RoleManager.AddClaimAsync(TRole! role, System.Security.Claims.Claim! claim) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.RoleManager.CancellationToken.get -> System.Threading.CancellationToken virtual Microsoft.AspNetCore.Identity.RoleManager.CreateAsync(TRole! role) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.RoleManager.DeleteAsync(TRole! role) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.RoleManager.Dispose(bool disposing) -> void virtual Microsoft.AspNetCore.Identity.RoleManager.FindByIdAsync(string! roleId) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.RoleManager.FindByNameAsync(string! roleName) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.RoleManager.GetClaimsAsync(TRole! role) -> System.Threading.Tasks.Task!>! @@ -311,6 +419,8 @@ virtual Microsoft.AspNetCore.Identity.RoleManager.RemoveClaimAsync(TRole! virtual Microsoft.AspNetCore.Identity.RoleManager.RoleExistsAsync(string! roleName) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.RoleManager.Roles.get -> System.Linq.IQueryable! virtual Microsoft.AspNetCore.Identity.RoleManager.SetRoleNameAsync(TRole! role, string? name) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.RoleManager.SupportsQueryableRoles.get -> bool +virtual Microsoft.AspNetCore.Identity.RoleManager.SupportsRoleClaims.get -> bool virtual Microsoft.AspNetCore.Identity.RoleManager.UpdateAsync(TRole! role) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.RoleManager.UpdateNormalizedRoleNameAsync(TRole! role) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.RoleManager.UpdateRoleAsync(TRole! role) -> System.Threading.Tasks.Task! @@ -328,6 +438,7 @@ virtual Microsoft.AspNetCore.Identity.UserManager.AddLoginAsync(TUser! us virtual Microsoft.AspNetCore.Identity.UserManager.AddPasswordAsync(TUser! user, string! password) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.UserManager.AddToRoleAsync(TUser! user, string! role) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.UserManager.AddToRolesAsync(TUser! user, System.Collections.Generic.IEnumerable! roles) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.UserManager.CancellationToken.get -> System.Threading.CancellationToken virtual Microsoft.AspNetCore.Identity.UserManager.ChangeEmailAsync(TUser! user, string! newEmail, string! token) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.UserManager.ChangePasswordAsync(TUser! user, string! currentPassword, string! newPassword) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.UserManager.ChangePhoneNumberAsync(TUser! user, string! phoneNumber, string! token) -> System.Threading.Tasks.Task! @@ -339,6 +450,7 @@ virtual Microsoft.AspNetCore.Identity.UserManager.CreateAsync(TUser! user virtual Microsoft.AspNetCore.Identity.UserManager.CreateSecurityTokenAsync(TUser! user) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.UserManager.CreateTwoFactorRecoveryCode() -> string! virtual Microsoft.AspNetCore.Identity.UserManager.DeleteAsync(TUser! user) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.UserManager.Dispose(bool disposing) -> void virtual Microsoft.AspNetCore.Identity.UserManager.FindByEmailAsync(string! email) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.UserManager.FindByIdAsync(string! userId) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.UserManager.FindByLoginAsync(string! loginProvider, string! providerKey) -> System.Threading.Tasks.Task! @@ -401,130 +513,6 @@ virtual Microsoft.AspNetCore.Identity.UserManager.SetLockoutEndDateAsync( virtual Microsoft.AspNetCore.Identity.UserManager.SetPhoneNumberAsync(TUser! user, string? phoneNumber) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.UserManager.SetTwoFactorEnabledAsync(TUser! user, bool enabled) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.UserManager.SetUserNameAsync(TUser! user, string? userName) -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.Identity.UserManager.UpdateAsync(TUser! user) -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.Identity.UserManager.UpdateNormalizedEmailAsync(TUser! user) -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.Identity.UserManager.UpdateNormalizedUserNameAsync(TUser! user) -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.Identity.UserManager.UpdatePasswordHash(TUser! user, string! newPassword, bool validatePassword) -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.Identity.UserManager.UpdateSecurityStampAsync(TUser! user) -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.Identity.UserManager.UpdateUserAsync(TUser! user) -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.Identity.UserManager.Users.get -> System.Linq.IQueryable! -virtual Microsoft.AspNetCore.Identity.UserManager.VerifyChangePhoneNumberTokenAsync(TUser! user, string! token, string! phoneNumber) -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.Identity.UserManager.VerifyPasswordAsync(Microsoft.AspNetCore.Identity.IUserPasswordStore! store, TUser! user, string! password) -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.Identity.UserManager.VerifyTwoFactorTokenAsync(TUser! user, string! tokenProvider, string! token) -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.Identity.UserManager.VerifyUserTokenAsync(TUser! user, string! tokenProvider, string! purpose, string! token) -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.Identity.UserValidator.ValidateAsync(Microsoft.AspNetCore.Identity.UserManager! manager, TUser! user) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Identity.AuthenticatorTokenProvider.AuthenticatorTokenProvider() -> void -Microsoft.AspNetCore.Identity.ClaimsIdentityOptions -Microsoft.AspNetCore.Identity.ClaimsIdentityOptions.ClaimsIdentityOptions() -> void -Microsoft.AspNetCore.Identity.DefaultPersonalDataProtector -Microsoft.AspNetCore.Identity.DefaultUserConfirmation.DefaultUserConfirmation() -> void -Microsoft.AspNetCore.Identity.EmailTokenProvider.EmailTokenProvider() -> void -Microsoft.AspNetCore.Identity.IdentityBuilder -Microsoft.AspNetCore.Identity.IdentityError -Microsoft.AspNetCore.Identity.IdentityError.IdentityError() -> void -Microsoft.AspNetCore.Identity.IdentityErrorDescriber -Microsoft.AspNetCore.Identity.IdentityErrorDescriber.IdentityErrorDescriber() -> void -Microsoft.AspNetCore.Identity.IdentityOptions -Microsoft.AspNetCore.Identity.IdentityOptions.IdentityOptions() -> void -Microsoft.AspNetCore.Identity.IdentityResult -Microsoft.AspNetCore.Identity.IdentityResult.IdentityResult() -> void -Microsoft.AspNetCore.Identity.IdentityResult.Succeeded.get -> bool -Microsoft.AspNetCore.Identity.IdentityResult.Succeeded.set -> void -Microsoft.AspNetCore.Identity.ILookupNormalizer -Microsoft.AspNetCore.Identity.ILookupProtector -Microsoft.AspNetCore.Identity.ILookupProtectorKeyRing -Microsoft.AspNetCore.Identity.IPersonalDataProtector -Microsoft.AspNetCore.Identity.LockoutOptions -Microsoft.AspNetCore.Identity.LockoutOptions.AllowedForNewUsers.get -> bool -Microsoft.AspNetCore.Identity.LockoutOptions.AllowedForNewUsers.set -> void -Microsoft.AspNetCore.Identity.LockoutOptions.DefaultLockoutTimeSpan.get -> System.TimeSpan -Microsoft.AspNetCore.Identity.LockoutOptions.DefaultLockoutTimeSpan.set -> void -Microsoft.AspNetCore.Identity.LockoutOptions.LockoutOptions() -> void -Microsoft.AspNetCore.Identity.LockoutOptions.MaxFailedAccessAttempts.get -> int -Microsoft.AspNetCore.Identity.LockoutOptions.MaxFailedAccessAttempts.set -> void -Microsoft.AspNetCore.Identity.PasswordHasherCompatibilityMode -Microsoft.AspNetCore.Identity.PasswordHasherCompatibilityMode.IdentityV2 = 0 -> Microsoft.AspNetCore.Identity.PasswordHasherCompatibilityMode -Microsoft.AspNetCore.Identity.PasswordHasherCompatibilityMode.IdentityV3 = 1 -> Microsoft.AspNetCore.Identity.PasswordHasherCompatibilityMode -Microsoft.AspNetCore.Identity.PasswordHasherOptions -Microsoft.AspNetCore.Identity.PasswordHasherOptions.CompatibilityMode.get -> Microsoft.AspNetCore.Identity.PasswordHasherCompatibilityMode -Microsoft.AspNetCore.Identity.PasswordHasherOptions.CompatibilityMode.set -> void -Microsoft.AspNetCore.Identity.PasswordHasherOptions.IterationCount.get -> int -Microsoft.AspNetCore.Identity.PasswordHasherOptions.IterationCount.set -> void -Microsoft.AspNetCore.Identity.PasswordHasherOptions.PasswordHasherOptions() -> void -Microsoft.AspNetCore.Identity.PasswordOptions -Microsoft.AspNetCore.Identity.PasswordOptions.PasswordOptions() -> void -Microsoft.AspNetCore.Identity.PasswordOptions.RequireDigit.get -> bool -Microsoft.AspNetCore.Identity.PasswordOptions.RequireDigit.set -> void -Microsoft.AspNetCore.Identity.PasswordOptions.RequiredLength.get -> int -Microsoft.AspNetCore.Identity.PasswordOptions.RequiredLength.set -> void -Microsoft.AspNetCore.Identity.PasswordOptions.RequiredUniqueChars.get -> int -Microsoft.AspNetCore.Identity.PasswordOptions.RequiredUniqueChars.set -> void -Microsoft.AspNetCore.Identity.PasswordOptions.RequireLowercase.get -> bool -Microsoft.AspNetCore.Identity.PasswordOptions.RequireLowercase.set -> void -Microsoft.AspNetCore.Identity.PasswordOptions.RequireNonAlphanumeric.get -> bool -Microsoft.AspNetCore.Identity.PasswordOptions.RequireNonAlphanumeric.set -> void -Microsoft.AspNetCore.Identity.PasswordOptions.RequireUppercase.get -> bool -Microsoft.AspNetCore.Identity.PasswordOptions.RequireUppercase.set -> void -Microsoft.AspNetCore.Identity.PasswordVerificationResult -Microsoft.AspNetCore.Identity.PasswordVerificationResult.Failed = 0 -> Microsoft.AspNetCore.Identity.PasswordVerificationResult -Microsoft.AspNetCore.Identity.PasswordVerificationResult.Success = 1 -> Microsoft.AspNetCore.Identity.PasswordVerificationResult -Microsoft.AspNetCore.Identity.PasswordVerificationResult.SuccessRehashNeeded = 2 -> Microsoft.AspNetCore.Identity.PasswordVerificationResult -Microsoft.AspNetCore.Identity.PersonalDataAttribute -Microsoft.AspNetCore.Identity.PersonalDataAttribute.PersonalDataAttribute() -> void -Microsoft.AspNetCore.Identity.PhoneNumberTokenProvider.PhoneNumberTokenProvider() -> void -Microsoft.AspNetCore.Identity.ProtectedPersonalDataAttribute -Microsoft.AspNetCore.Identity.ProtectedPersonalDataAttribute.ProtectedPersonalDataAttribute() -> void -Microsoft.AspNetCore.Identity.RoleManager.Dispose() -> void -Microsoft.AspNetCore.Identity.RoleManager.ThrowIfDisposed() -> void -Microsoft.AspNetCore.Identity.SignInOptions -Microsoft.AspNetCore.Identity.SignInOptions.RequireConfirmedAccount.get -> bool -Microsoft.AspNetCore.Identity.SignInOptions.RequireConfirmedAccount.set -> void -Microsoft.AspNetCore.Identity.SignInOptions.RequireConfirmedEmail.get -> bool -Microsoft.AspNetCore.Identity.SignInOptions.RequireConfirmedEmail.set -> void -Microsoft.AspNetCore.Identity.SignInOptions.RequireConfirmedPhoneNumber.get -> bool -Microsoft.AspNetCore.Identity.SignInOptions.RequireConfirmedPhoneNumber.set -> void -Microsoft.AspNetCore.Identity.SignInOptions.SignInOptions() -> void -Microsoft.AspNetCore.Identity.SignInResult -Microsoft.AspNetCore.Identity.SignInResult.IsLockedOut.get -> bool -Microsoft.AspNetCore.Identity.SignInResult.IsLockedOut.set -> void -Microsoft.AspNetCore.Identity.SignInResult.IsNotAllowed.get -> bool -Microsoft.AspNetCore.Identity.SignInResult.IsNotAllowed.set -> void -Microsoft.AspNetCore.Identity.SignInResult.RequiresTwoFactor.get -> bool -Microsoft.AspNetCore.Identity.SignInResult.RequiresTwoFactor.set -> void -Microsoft.AspNetCore.Identity.SignInResult.SignInResult() -> void -Microsoft.AspNetCore.Identity.SignInResult.Succeeded.get -> bool -Microsoft.AspNetCore.Identity.SignInResult.Succeeded.set -> void -Microsoft.AspNetCore.Identity.StoreOptions -Microsoft.AspNetCore.Identity.StoreOptions.MaxLengthForKeys.get -> int -Microsoft.AspNetCore.Identity.StoreOptions.MaxLengthForKeys.set -> void -Microsoft.AspNetCore.Identity.StoreOptions.ProtectPersonalData.get -> bool -Microsoft.AspNetCore.Identity.StoreOptions.ProtectPersonalData.set -> void -Microsoft.AspNetCore.Identity.StoreOptions.StoreOptions() -> void -Microsoft.AspNetCore.Identity.TokenOptions -Microsoft.AspNetCore.Identity.TokenOptions.TokenOptions() -> void -Microsoft.AspNetCore.Identity.TokenProviderDescriptor -Microsoft.AspNetCore.Identity.TotpSecurityStampBasedTokenProvider.TotpSecurityStampBasedTokenProvider() -> void -Microsoft.AspNetCore.Identity.UpperInvariantLookupNormalizer -Microsoft.AspNetCore.Identity.UpperInvariantLookupNormalizer.UpperInvariantLookupNormalizer() -> void -Microsoft.AspNetCore.Identity.UserLoginInfo -Microsoft.AspNetCore.Identity.UserManager.Dispose() -> void -Microsoft.AspNetCore.Identity.UserManager.ThrowIfDisposed() -> void -Microsoft.AspNetCore.Identity.UserOptions -Microsoft.AspNetCore.Identity.UserOptions.RequireUniqueEmail.get -> bool -Microsoft.AspNetCore.Identity.UserOptions.RequireUniqueEmail.set -> void -Microsoft.AspNetCore.Identity.UserOptions.UserOptions() -> void -Microsoft.Extensions.DependencyInjection.IdentityServiceCollectionExtensions -System.Security.Claims.PrincipalExtensions -virtual Microsoft.AspNetCore.Identity.PasswordValidator.IsDigit(char c) -> bool -virtual Microsoft.AspNetCore.Identity.PasswordValidator.IsLetterOrDigit(char c) -> bool -virtual Microsoft.AspNetCore.Identity.PasswordValidator.IsLower(char c) -> bool -virtual Microsoft.AspNetCore.Identity.PasswordValidator.IsUpper(char c) -> bool -virtual Microsoft.AspNetCore.Identity.RoleManager.CancellationToken.get -> System.Threading.CancellationToken -virtual Microsoft.AspNetCore.Identity.RoleManager.Dispose(bool disposing) -> void -virtual Microsoft.AspNetCore.Identity.RoleManager.SupportsQueryableRoles.get -> bool -virtual Microsoft.AspNetCore.Identity.RoleManager.SupportsRoleClaims.get -> bool -virtual Microsoft.AspNetCore.Identity.UserManager.CancellationToken.get -> System.Threading.CancellationToken -virtual Microsoft.AspNetCore.Identity.UserManager.Dispose(bool disposing) -> void virtual Microsoft.AspNetCore.Identity.UserManager.SupportsQueryableUsers.get -> bool virtual Microsoft.AspNetCore.Identity.UserManager.SupportsUserAuthenticationTokens.get -> bool virtual Microsoft.AspNetCore.Identity.UserManager.SupportsUserAuthenticatorKey.get -> bool @@ -538,3 +526,15 @@ virtual Microsoft.AspNetCore.Identity.UserManager.SupportsUserRole.get -> virtual Microsoft.AspNetCore.Identity.UserManager.SupportsUserSecurityStamp.get -> bool virtual Microsoft.AspNetCore.Identity.UserManager.SupportsUserTwoFactor.get -> bool virtual Microsoft.AspNetCore.Identity.UserManager.SupportsUserTwoFactorRecoveryCodes.get -> bool +virtual Microsoft.AspNetCore.Identity.UserManager.UpdateAsync(TUser! user) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.UserManager.UpdateNormalizedEmailAsync(TUser! user) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.UserManager.UpdateNormalizedUserNameAsync(TUser! user) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.UserManager.UpdatePasswordHash(TUser! user, string! newPassword, bool validatePassword) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.UserManager.UpdateSecurityStampAsync(TUser! user) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.UserManager.UpdateUserAsync(TUser! user) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.UserManager.Users.get -> System.Linq.IQueryable! +virtual Microsoft.AspNetCore.Identity.UserManager.VerifyChangePhoneNumberTokenAsync(TUser! user, string! token, string! phoneNumber) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.UserManager.VerifyPasswordAsync(Microsoft.AspNetCore.Identity.IUserPasswordStore! store, TUser! user, string! password) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.UserManager.VerifyTwoFactorTokenAsync(TUser! user, string! tokenProvider, string! token) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.UserManager.VerifyUserTokenAsync(TUser! user, string! tokenProvider, string! purpose, string! token) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.UserValidator.ValidateAsync(Microsoft.AspNetCore.Identity.UserManager! manager, TUser! user) -> System.Threading.Tasks.Task! diff --git a/src/Identity/Extensions.Stores/src/PublicAPI.Shipped.txt b/src/Identity/Extensions.Stores/src/PublicAPI.Shipped.txt index 33d7a4a29caa..dfc33a990254 100644 --- a/src/Identity/Extensions.Stores/src/PublicAPI.Shipped.txt +++ b/src/Identity/Extensions.Stores/src/PublicAPI.Shipped.txt @@ -36,24 +36,39 @@ abstract Microsoft.AspNetCore.Identity.UserStoreBase.GetUsersInRoleAsync(string! normalizedRoleName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task!>! abstract Microsoft.AspNetCore.Identity.UserStoreBase.IsInRoleAsync(TUser! user, string! normalizedRoleName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! abstract Microsoft.AspNetCore.Identity.UserStoreBase.RemoveFromRoleAsync(TUser! user, string! normalizedRoleName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Identity.IdentityRole +Microsoft.AspNetCore.Identity.IdentityRole.IdentityRole() -> void Microsoft.AspNetCore.Identity.IdentityRole.IdentityRole(string! roleName) -> void Microsoft.AspNetCore.Identity.IdentityRole +Microsoft.AspNetCore.Identity.IdentityRole.IdentityRole() -> void Microsoft.AspNetCore.Identity.IdentityRole.IdentityRole(string! roleName) -> void Microsoft.AspNetCore.Identity.IdentityRoleClaim +Microsoft.AspNetCore.Identity.IdentityRoleClaim.IdentityRoleClaim() -> void +Microsoft.AspNetCore.Identity.IdentityUser +Microsoft.AspNetCore.Identity.IdentityUser.IdentityUser() -> void Microsoft.AspNetCore.Identity.IdentityUser.IdentityUser(string! userName) -> void Microsoft.AspNetCore.Identity.IdentityUser +Microsoft.AspNetCore.Identity.IdentityUser.IdentityUser() -> void Microsoft.AspNetCore.Identity.IdentityUser.IdentityUser(string! userName) -> void Microsoft.AspNetCore.Identity.IdentityUserClaim +Microsoft.AspNetCore.Identity.IdentityUserClaim.IdentityUserClaim() -> void Microsoft.AspNetCore.Identity.IdentityUserLogin +Microsoft.AspNetCore.Identity.IdentityUserLogin.IdentityUserLogin() -> void Microsoft.AspNetCore.Identity.IdentityUserRole +Microsoft.AspNetCore.Identity.IdentityUserRole.IdentityUserRole() -> void Microsoft.AspNetCore.Identity.IdentityUserToken +Microsoft.AspNetCore.Identity.IdentityUserToken.IdentityUserToken() -> void Microsoft.AspNetCore.Identity.RoleStoreBase +Microsoft.AspNetCore.Identity.RoleStoreBase.Dispose() -> void Microsoft.AspNetCore.Identity.RoleStoreBase.ErrorDescriber.get -> Microsoft.AspNetCore.Identity.IdentityErrorDescriber! Microsoft.AspNetCore.Identity.RoleStoreBase.ErrorDescriber.set -> void Microsoft.AspNetCore.Identity.RoleStoreBase.RoleStoreBase(Microsoft.AspNetCore.Identity.IdentityErrorDescriber! describer) -> void +Microsoft.AspNetCore.Identity.RoleStoreBase.ThrowIfDisposed() -> void Microsoft.AspNetCore.Identity.UserStoreBase +Microsoft.AspNetCore.Identity.UserStoreBase.Dispose() -> void Microsoft.AspNetCore.Identity.UserStoreBase.ErrorDescriber.get -> Microsoft.AspNetCore.Identity.IdentityErrorDescriber! Microsoft.AspNetCore.Identity.UserStoreBase.ErrorDescriber.set -> void +Microsoft.AspNetCore.Identity.UserStoreBase.ThrowIfDisposed() -> void Microsoft.AspNetCore.Identity.UserStoreBase.UserStoreBase(Microsoft.AspNetCore.Identity.IdentityErrorDescriber! describer) -> void Microsoft.AspNetCore.Identity.UserStoreBase Microsoft.AspNetCore.Identity.UserStoreBase.UserStoreBase(Microsoft.AspNetCore.Identity.IdentityErrorDescriber! describer) -> void @@ -71,16 +86,26 @@ virtual Microsoft.AspNetCore.Identity.IdentityRoleClaim.ClaimType.get -> s virtual Microsoft.AspNetCore.Identity.IdentityRoleClaim.ClaimType.set -> void virtual Microsoft.AspNetCore.Identity.IdentityRoleClaim.ClaimValue.get -> string? virtual Microsoft.AspNetCore.Identity.IdentityRoleClaim.ClaimValue.set -> void +virtual Microsoft.AspNetCore.Identity.IdentityRoleClaim.Id.get -> int +virtual Microsoft.AspNetCore.Identity.IdentityRoleClaim.Id.set -> void virtual Microsoft.AspNetCore.Identity.IdentityRoleClaim.InitializeFromClaim(System.Security.Claims.Claim? other) -> void virtual Microsoft.AspNetCore.Identity.IdentityRoleClaim.RoleId.get -> TKey virtual Microsoft.AspNetCore.Identity.IdentityRoleClaim.RoleId.set -> void virtual Microsoft.AspNetCore.Identity.IdentityRoleClaim.ToClaim() -> System.Security.Claims.Claim! +virtual Microsoft.AspNetCore.Identity.IdentityUser.AccessFailedCount.get -> int +virtual Microsoft.AspNetCore.Identity.IdentityUser.AccessFailedCount.set -> void virtual Microsoft.AspNetCore.Identity.IdentityUser.ConcurrencyStamp.get -> string? virtual Microsoft.AspNetCore.Identity.IdentityUser.ConcurrencyStamp.set -> void virtual Microsoft.AspNetCore.Identity.IdentityUser.Email.get -> string? virtual Microsoft.AspNetCore.Identity.IdentityUser.Email.set -> void +virtual Microsoft.AspNetCore.Identity.IdentityUser.EmailConfirmed.get -> bool +virtual Microsoft.AspNetCore.Identity.IdentityUser.EmailConfirmed.set -> void virtual Microsoft.AspNetCore.Identity.IdentityUser.Id.get -> TKey virtual Microsoft.AspNetCore.Identity.IdentityUser.Id.set -> void +virtual Microsoft.AspNetCore.Identity.IdentityUser.LockoutEnabled.get -> bool +virtual Microsoft.AspNetCore.Identity.IdentityUser.LockoutEnabled.set -> void +virtual Microsoft.AspNetCore.Identity.IdentityUser.LockoutEnd.get -> System.DateTimeOffset? +virtual Microsoft.AspNetCore.Identity.IdentityUser.LockoutEnd.set -> void virtual Microsoft.AspNetCore.Identity.IdentityUser.NormalizedEmail.get -> string? virtual Microsoft.AspNetCore.Identity.IdentityUser.NormalizedEmail.set -> void virtual Microsoft.AspNetCore.Identity.IdentityUser.NormalizedUserName.get -> string? @@ -89,14 +114,20 @@ virtual Microsoft.AspNetCore.Identity.IdentityUser.PasswordHash.get -> str virtual Microsoft.AspNetCore.Identity.IdentityUser.PasswordHash.set -> void virtual Microsoft.AspNetCore.Identity.IdentityUser.PhoneNumber.get -> string? virtual Microsoft.AspNetCore.Identity.IdentityUser.PhoneNumber.set -> void +virtual Microsoft.AspNetCore.Identity.IdentityUser.PhoneNumberConfirmed.get -> bool +virtual Microsoft.AspNetCore.Identity.IdentityUser.PhoneNumberConfirmed.set -> void virtual Microsoft.AspNetCore.Identity.IdentityUser.SecurityStamp.get -> string? virtual Microsoft.AspNetCore.Identity.IdentityUser.SecurityStamp.set -> void +virtual Microsoft.AspNetCore.Identity.IdentityUser.TwoFactorEnabled.get -> bool +virtual Microsoft.AspNetCore.Identity.IdentityUser.TwoFactorEnabled.set -> void virtual Microsoft.AspNetCore.Identity.IdentityUser.UserName.get -> string? virtual Microsoft.AspNetCore.Identity.IdentityUser.UserName.set -> void virtual Microsoft.AspNetCore.Identity.IdentityUserClaim.ClaimType.get -> string? virtual Microsoft.AspNetCore.Identity.IdentityUserClaim.ClaimType.set -> void virtual Microsoft.AspNetCore.Identity.IdentityUserClaim.ClaimValue.get -> string? virtual Microsoft.AspNetCore.Identity.IdentityUserClaim.ClaimValue.set -> void +virtual Microsoft.AspNetCore.Identity.IdentityUserClaim.Id.get -> int +virtual Microsoft.AspNetCore.Identity.IdentityUserClaim.Id.set -> void virtual Microsoft.AspNetCore.Identity.IdentityUserClaim.InitializeFromClaim(System.Security.Claims.Claim! claim) -> void virtual Microsoft.AspNetCore.Identity.IdentityUserClaim.ToClaim() -> System.Security.Claims.Claim! virtual Microsoft.AspNetCore.Identity.IdentityUserClaim.UserId.get -> TKey @@ -173,34 +204,3 @@ virtual Microsoft.AspNetCore.Identity.UserStoreBase.SetTwoFactorEnabledAsync(TUser! user, bool enabled, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.UserStoreBase.SetUserNameAsync(TUser! user, string? userName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.UserStoreBase.CreateUserRole(TUser! user, TRole! role) -> TUserRole! -Microsoft.AspNetCore.Identity.IdentityRole -Microsoft.AspNetCore.Identity.IdentityRole.IdentityRole() -> void -Microsoft.AspNetCore.Identity.IdentityRole.IdentityRole() -> void -Microsoft.AspNetCore.Identity.IdentityRoleClaim.IdentityRoleClaim() -> void -Microsoft.AspNetCore.Identity.IdentityUser -Microsoft.AspNetCore.Identity.IdentityUser.IdentityUser() -> void -Microsoft.AspNetCore.Identity.IdentityUser.IdentityUser() -> void -Microsoft.AspNetCore.Identity.IdentityUserClaim.IdentityUserClaim() -> void -Microsoft.AspNetCore.Identity.IdentityUserLogin.IdentityUserLogin() -> void -Microsoft.AspNetCore.Identity.IdentityUserRole.IdentityUserRole() -> void -Microsoft.AspNetCore.Identity.IdentityUserToken.IdentityUserToken() -> void -Microsoft.AspNetCore.Identity.RoleStoreBase.Dispose() -> void -Microsoft.AspNetCore.Identity.RoleStoreBase.ThrowIfDisposed() -> void -Microsoft.AspNetCore.Identity.UserStoreBase.Dispose() -> void -Microsoft.AspNetCore.Identity.UserStoreBase.ThrowIfDisposed() -> void -virtual Microsoft.AspNetCore.Identity.IdentityRoleClaim.Id.get -> int -virtual Microsoft.AspNetCore.Identity.IdentityRoleClaim.Id.set -> void -virtual Microsoft.AspNetCore.Identity.IdentityUser.AccessFailedCount.get -> int -virtual Microsoft.AspNetCore.Identity.IdentityUser.AccessFailedCount.set -> void -virtual Microsoft.AspNetCore.Identity.IdentityUser.EmailConfirmed.get -> bool -virtual Microsoft.AspNetCore.Identity.IdentityUser.EmailConfirmed.set -> void -virtual Microsoft.AspNetCore.Identity.IdentityUser.LockoutEnabled.get -> bool -virtual Microsoft.AspNetCore.Identity.IdentityUser.LockoutEnabled.set -> void -virtual Microsoft.AspNetCore.Identity.IdentityUser.LockoutEnd.get -> System.DateTimeOffset? -virtual Microsoft.AspNetCore.Identity.IdentityUser.LockoutEnd.set -> void -virtual Microsoft.AspNetCore.Identity.IdentityUser.PhoneNumberConfirmed.get -> bool -virtual Microsoft.AspNetCore.Identity.IdentityUser.PhoneNumberConfirmed.set -> void -virtual Microsoft.AspNetCore.Identity.IdentityUser.TwoFactorEnabled.get -> bool -virtual Microsoft.AspNetCore.Identity.IdentityUser.TwoFactorEnabled.set -> void -virtual Microsoft.AspNetCore.Identity.IdentityUserClaim.Id.get -> int -virtual Microsoft.AspNetCore.Identity.IdentityUserClaim.Id.set -> void diff --git a/src/Identity/UI/src/PublicAPI.Shipped.txt b/src/Identity/UI/src/PublicAPI.Shipped.txt index fe17b7df87ca..c8a3a5289a2b 100644 --- a/src/Identity/UI/src/PublicAPI.Shipped.txt +++ b/src/Identity/UI/src/PublicAPI.Shipped.txt @@ -1,297 +1,542 @@ #nullable enable +Microsoft.AspNetCore.Identity.IdentityBuilderUIExtensions +Microsoft.AspNetCore.Identity.UI.LoggerEventIds +Microsoft.AspNetCore.Identity.UI.Services.IEmailSender Microsoft.AspNetCore.Identity.UI.Services.IEmailSender.SendEmailAsync(string! email, string! subject, string! htmlMessage) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Identity.UI.UIFrameworkAttribute Microsoft.AspNetCore.Identity.UI.UIFrameworkAttribute.UIFramework.get -> string! Microsoft.AspNetCore.Identity.UI.UIFrameworkAttribute.UIFrameworkAttribute(string! uiFramework) -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.AccessDeniedModel +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.AccessDeniedModel.AccessDeniedModel() -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.AccessDeniedModel.OnGet() -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ConfirmEmailChangeModel +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ConfirmEmailChangeModel.ConfirmEmailChangeModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ConfirmEmailChangeModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ConfirmEmailChangeModel.StatusMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ConfirmEmailModel +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ConfirmEmailModel.ConfirmEmailModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ConfirmEmailModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ConfirmEmailModel.StatusMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.ErrorMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.ErrorMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.ExternalLoginModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.InputModel! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.InputModel Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.InputModel.Email.get -> string! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.InputModel.Email.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.InputModel.InputModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.ProviderDisplayName.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.ProviderDisplayName.set -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.ReturnUrl.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.ReturnUrl.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ForgotPasswordConfirmation +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ForgotPasswordConfirmation.ForgotPasswordConfirmation() -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ForgotPasswordConfirmation.OnGet() -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ForgotPasswordModel +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ForgotPasswordModel.ForgotPasswordModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ForgotPasswordModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ForgotPasswordModel.InputModel! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ForgotPasswordModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ForgotPasswordModel.InputModel Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ForgotPasswordModel.InputModel.Email.get -> string! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ForgotPasswordModel.InputModel.Email.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ForgotPasswordModel.InputModel.InputModel() -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LockoutModel +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LockoutModel.LockoutModel() -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LockoutModel.OnGet() -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.ErrorMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.ErrorMessage.set -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.ExternalLogins.get -> System.Collections.Generic.IList? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.ExternalLogins.set -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.InputModel! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.InputModel Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.InputModel.Email.get -> string! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.InputModel.Email.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.InputModel.InputModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.InputModel.Password.get -> string! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.InputModel.Password.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.InputModel.RememberMe.get -> bool +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.InputModel.RememberMe.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.LoginModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.ReturnUrl.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.ReturnUrl.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.InputModel! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.InputModel +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.InputModel.InputModel() -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.InputModel.RememberMachine.get -> bool +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.InputModel.RememberMachine.set -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.InputModel.TwoFactorCode.get -> string! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.InputModel.TwoFactorCode.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.LoginWith2faModel() -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.RememberMe.get -> bool +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.RememberMe.set -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.ReturnUrl.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.ReturnUrl.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWithRecoveryCodeModel Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWithRecoveryCodeModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWithRecoveryCodeModel.InputModel! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWithRecoveryCodeModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWithRecoveryCodeModel.InputModel +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWithRecoveryCodeModel.InputModel.InputModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWithRecoveryCodeModel.InputModel.RecoveryCode.get -> string! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWithRecoveryCodeModel.InputModel.RecoveryCode.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWithRecoveryCodeModel.LoginWithRecoveryCodeModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWithRecoveryCodeModel.ReturnUrl.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWithRecoveryCodeModel.ReturnUrl.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LogoutModel +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LogoutModel.LogoutModel() -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LogoutModel.OnGet() -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterConfirmationModel +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterConfirmationModel.DisplayConfirmAccountLink.get -> bool +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterConfirmationModel.DisplayConfirmAccountLink.set -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterConfirmationModel.Email.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterConfirmationModel.Email.set -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterConfirmationModel.EmailConfirmationUrl.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterConfirmationModel.EmailConfirmationUrl.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterConfirmationModel.RegisterConfirmationModel() -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterModel Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterModel.ExternalLogins.get -> System.Collections.Generic.IList? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterModel.ExternalLogins.set -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterModel.InputModel! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterModel.InputModel Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterModel.InputModel.ConfirmPassword.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterModel.InputModel.ConfirmPassword.set -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterModel.InputModel.Email.get -> string! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterModel.InputModel.Email.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterModel.InputModel.InputModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterModel.InputModel.Password.get -> string! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterModel.InputModel.Password.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterModel.RegisterModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterModel.ReturnUrl.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterModel.ReturnUrl.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResendEmailConfirmationModel Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResendEmailConfirmationModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResendEmailConfirmationModel.InputModel! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResendEmailConfirmationModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResendEmailConfirmationModel.InputModel Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResendEmailConfirmationModel.InputModel.Email.get -> string! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResendEmailConfirmationModel.InputModel.Email.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResendEmailConfirmationModel.InputModel.InputModel() -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResendEmailConfirmationModel.ResendEmailConfirmationModel() -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordConfirmationModel +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordConfirmationModel.OnGet() -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordConfirmationModel.ResetPasswordConfirmationModel() -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordModel Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordModel.InputModel! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordModel.InputModel Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordModel.InputModel.Code.get -> string! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordModel.InputModel.Code.set -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordModel.InputModel.ConfirmPassword.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordModel.InputModel.ConfirmPassword.set -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordModel.InputModel.Email.get -> string! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordModel.InputModel.Email.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordModel.InputModel.InputModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordModel.InputModel.Password.get -> string! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordModel.InputModel.Password.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordModel.ResetPasswordModel() -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ChangePasswordModel +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ChangePasswordModel.ChangePasswordModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ChangePasswordModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ChangePasswordModel.InputModel! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ChangePasswordModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ChangePasswordModel.InputModel Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ChangePasswordModel.InputModel.ConfirmPassword.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ChangePasswordModel.InputModel.ConfirmPassword.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ChangePasswordModel.InputModel.InputModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ChangePasswordModel.InputModel.NewPassword.get -> string! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ChangePasswordModel.InputModel.NewPassword.set -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ChangePasswordModel.InputModel.OldPassword.get -> string! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ChangePasswordModel.InputModel.OldPassword.set -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ChangePasswordModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ChangePasswordModel.StatusMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.DeletePersonalDataModel +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.DeletePersonalDataModel.DeletePersonalDataModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.DeletePersonalDataModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.DeletePersonalDataModel.InputModel! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.DeletePersonalDataModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.DeletePersonalDataModel.InputModel +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.DeletePersonalDataModel.InputModel.InputModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.DeletePersonalDataModel.InputModel.Password.get -> string! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.DeletePersonalDataModel.InputModel.Password.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.DeletePersonalDataModel.RequirePassword.get -> bool +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.DeletePersonalDataModel.RequirePassword.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.Disable2faModel +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.Disable2faModel.Disable2faModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.Disable2faModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.Disable2faModel.StatusMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.DownloadPersonalDataModel +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.DownloadPersonalDataModel.DownloadPersonalDataModel() -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EmailModel Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EmailModel.Email.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EmailModel.Email.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EmailModel.EmailModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EmailModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EmailModel.InputModel! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EmailModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EmailModel.InputModel +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EmailModel.InputModel.InputModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EmailModel.InputModel.NewEmail.get -> string! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EmailModel.InputModel.NewEmail.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EmailModel.IsEmailConfirmed.get -> bool +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EmailModel.IsEmailConfirmed.set -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EmailModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EmailModel.StatusMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EnableAuthenticatorModel Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EnableAuthenticatorModel.AuthenticatorUri.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EnableAuthenticatorModel.AuthenticatorUri.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EnableAuthenticatorModel.EnableAuthenticatorModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EnableAuthenticatorModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EnableAuthenticatorModel.InputModel! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EnableAuthenticatorModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EnableAuthenticatorModel.InputModel Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EnableAuthenticatorModel.InputModel.Code.get -> string! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EnableAuthenticatorModel.InputModel.Code.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EnableAuthenticatorModel.InputModel.InputModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EnableAuthenticatorModel.RecoveryCodes.get -> string![]? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EnableAuthenticatorModel.RecoveryCodes.set -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EnableAuthenticatorModel.SharedKey.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EnableAuthenticatorModel.SharedKey.set -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EnableAuthenticatorModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EnableAuthenticatorModel.StatusMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ExternalLoginsModel Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ExternalLoginsModel.CurrentLogins.get -> System.Collections.Generic.IList? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ExternalLoginsModel.CurrentLogins.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ExternalLoginsModel.ExternalLoginsModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ExternalLoginsModel.OtherLogins.get -> System.Collections.Generic.IList? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ExternalLoginsModel.OtherLogins.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ExternalLoginsModel.ShowRemoveButton.get -> bool +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ExternalLoginsModel.ShowRemoveButton.set -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ExternalLoginsModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ExternalLoginsModel.StatusMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.GenerateRecoveryCodesModel +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.GenerateRecoveryCodesModel.GenerateRecoveryCodesModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.GenerateRecoveryCodesModel.RecoveryCodes.get -> string![]? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.GenerateRecoveryCodesModel.RecoveryCodes.set -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.GenerateRecoveryCodesModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.GenerateRecoveryCodesModel.StatusMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.IndexModel +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.IndexModel.IndexModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.IndexModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.IndexModel.InputModel! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.IndexModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.IndexModel.InputModel +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.IndexModel.InputModel.InputModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.IndexModel.InputModel.PhoneNumber.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.IndexModel.InputModel.PhoneNumber.set -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.IndexModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.IndexModel.StatusMessage.set -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.IndexModel.Username.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.IndexModel.Username.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ManageNavPages +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.PersonalDataModel +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.PersonalDataModel.PersonalDataModel() -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ResetAuthenticatorModel +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ResetAuthenticatorModel.ResetAuthenticatorModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ResetAuthenticatorModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ResetAuthenticatorModel.StatusMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.SetPasswordModel Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.SetPasswordModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.SetPasswordModel.InputModel! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.SetPasswordModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.SetPasswordModel.InputModel Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.SetPasswordModel.InputModel.ConfirmPassword.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.SetPasswordModel.InputModel.ConfirmPassword.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.SetPasswordModel.InputModel.InputModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.SetPasswordModel.InputModel.NewPassword.get -> string! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.SetPasswordModel.InputModel.NewPassword.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.SetPasswordModel.SetPasswordModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.SetPasswordModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.SetPasswordModel.StatusMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ShowRecoveryCodesModel Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ShowRecoveryCodesModel.OnGet() -> Microsoft.AspNetCore.Mvc.IActionResult! Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ShowRecoveryCodesModel.RecoveryCodes.get -> string![]? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ShowRecoveryCodesModel.RecoveryCodes.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ShowRecoveryCodesModel.ShowRecoveryCodesModel() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ShowRecoveryCodesModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ShowRecoveryCodesModel.StatusMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.HasAuthenticator.get -> bool +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.HasAuthenticator.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.Is2faEnabled.get -> bool +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.Is2faEnabled.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.IsMachineRemembered.get -> bool +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.IsMachineRemembered.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.RecoveryCodesLeft.get -> int +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.RecoveryCodesLeft.set -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.StatusMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.TwoFactorAuthenticationModel() -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Internal.ErrorModel +Microsoft.AspNetCore.Identity.UI.V4.Pages.Internal.ErrorModel.ErrorModel() -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Internal.ErrorModel.OnGet() -> void Microsoft.AspNetCore.Identity.UI.V4.Pages.Internal.ErrorModel.RequestId.get -> string? Microsoft.AspNetCore.Identity.UI.V4.Pages.Internal.ErrorModel.RequestId.set -> void +Microsoft.AspNetCore.Identity.UI.V4.Pages.Internal.ErrorModel.ShowRequestId.get -> bool +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.AccessDeniedModel +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.AccessDeniedModel.AccessDeniedModel() -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.AccessDeniedModel.OnGet() -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ConfirmEmailChangeModel +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ConfirmEmailChangeModel.ConfirmEmailChangeModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ConfirmEmailChangeModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ConfirmEmailChangeModel.StatusMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ConfirmEmailModel +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ConfirmEmailModel.ConfirmEmailModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ConfirmEmailModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ConfirmEmailModel.StatusMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ExternalLoginModel Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ExternalLoginModel.ErrorMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ExternalLoginModel.ErrorMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ExternalLoginModel.ExternalLoginModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ExternalLoginModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ExternalLoginModel.InputModel! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ExternalLoginModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ExternalLoginModel.InputModel Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ExternalLoginModel.InputModel.Email.get -> string! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ExternalLoginModel.InputModel.Email.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ExternalLoginModel.InputModel.InputModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ExternalLoginModel.ProviderDisplayName.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ExternalLoginModel.ProviderDisplayName.set -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ExternalLoginModel.ReturnUrl.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ExternalLoginModel.ReturnUrl.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ForgotPasswordConfirmation +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ForgotPasswordConfirmation.ForgotPasswordConfirmation() -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ForgotPasswordConfirmation.OnGet() -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ForgotPasswordModel +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ForgotPasswordModel.ForgotPasswordModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ForgotPasswordModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ForgotPasswordModel.InputModel! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ForgotPasswordModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ForgotPasswordModel.InputModel Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ForgotPasswordModel.InputModel.Email.get -> string! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ForgotPasswordModel.InputModel.Email.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ForgotPasswordModel.InputModel.InputModel() -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LockoutModel +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LockoutModel.LockoutModel() -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LockoutModel.OnGet() -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel.ErrorMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel.ErrorMessage.set -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel.ExternalLogins.get -> System.Collections.Generic.IList? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel.ExternalLogins.set -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel.InputModel! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel.InputModel Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel.InputModel.Email.get -> string! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel.InputModel.Email.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel.InputModel.InputModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel.InputModel.Password.get -> string! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel.InputModel.Password.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel.InputModel.RememberMe.get -> bool +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel.InputModel.RememberMe.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel.LoginModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel.ReturnUrl.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel.ReturnUrl.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWith2faModel Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWith2faModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWith2faModel.InputModel! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWith2faModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWith2faModel.InputModel +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWith2faModel.InputModel.InputModel() -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWith2faModel.InputModel.RememberMachine.get -> bool +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWith2faModel.InputModel.RememberMachine.set -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWith2faModel.InputModel.TwoFactorCode.get -> string! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWith2faModel.InputModel.TwoFactorCode.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWith2faModel.LoginWith2faModel() -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWith2faModel.RememberMe.get -> bool +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWith2faModel.RememberMe.set -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWith2faModel.ReturnUrl.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWith2faModel.ReturnUrl.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWithRecoveryCodeModel Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWithRecoveryCodeModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWithRecoveryCodeModel.InputModel! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWithRecoveryCodeModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWithRecoveryCodeModel.InputModel +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWithRecoveryCodeModel.InputModel.InputModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWithRecoveryCodeModel.InputModel.RecoveryCode.get -> string! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWithRecoveryCodeModel.InputModel.RecoveryCode.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWithRecoveryCodeModel.LoginWithRecoveryCodeModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWithRecoveryCodeModel.ReturnUrl.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWithRecoveryCodeModel.ReturnUrl.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LogoutModel +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LogoutModel.LogoutModel() -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LogoutModel.OnGet() -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterConfirmationModel +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterConfirmationModel.DisplayConfirmAccountLink.get -> bool +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterConfirmationModel.DisplayConfirmAccountLink.set -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterConfirmationModel.Email.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterConfirmationModel.Email.set -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterConfirmationModel.EmailConfirmationUrl.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterConfirmationModel.EmailConfirmationUrl.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterConfirmationModel.RegisterConfirmationModel() -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterModel Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterModel.ExternalLogins.get -> System.Collections.Generic.IList? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterModel.ExternalLogins.set -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterModel.InputModel! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterModel.InputModel Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterModel.InputModel.ConfirmPassword.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterModel.InputModel.ConfirmPassword.set -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterModel.InputModel.Email.get -> string! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterModel.InputModel.Email.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterModel.InputModel.InputModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterModel.InputModel.Password.get -> string! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterModel.InputModel.Password.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterModel.RegisterModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterModel.ReturnUrl.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterModel.ReturnUrl.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResendEmailConfirmationModel Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResendEmailConfirmationModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResendEmailConfirmationModel.InputModel! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResendEmailConfirmationModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResendEmailConfirmationModel.InputModel Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResendEmailConfirmationModel.InputModel.Email.get -> string! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResendEmailConfirmationModel.InputModel.Email.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResendEmailConfirmationModel.InputModel.InputModel() -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResendEmailConfirmationModel.ResendEmailConfirmationModel() -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordConfirmationModel +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordConfirmationModel.OnGet() -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordConfirmationModel.ResetPasswordConfirmationModel() -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordModel Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordModel.InputModel! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordModel.InputModel Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordModel.InputModel.Code.get -> string! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordModel.InputModel.Code.set -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordModel.InputModel.ConfirmPassword.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordModel.InputModel.ConfirmPassword.set -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordModel.InputModel.Email.get -> string! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordModel.InputModel.Email.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordModel.InputModel.InputModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordModel.InputModel.Password.get -> string! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordModel.InputModel.Password.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordModel.ResetPasswordModel() -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ChangePasswordModel +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ChangePasswordModel.ChangePasswordModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ChangePasswordModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ChangePasswordModel.InputModel! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ChangePasswordModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ChangePasswordModel.InputModel Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ChangePasswordModel.InputModel.ConfirmPassword.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ChangePasswordModel.InputModel.ConfirmPassword.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ChangePasswordModel.InputModel.InputModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ChangePasswordModel.InputModel.NewPassword.get -> string! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ChangePasswordModel.InputModel.NewPassword.set -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ChangePasswordModel.InputModel.OldPassword.get -> string! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ChangePasswordModel.InputModel.OldPassword.set -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ChangePasswordModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ChangePasswordModel.StatusMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.DeletePersonalDataModel +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.DeletePersonalDataModel.DeletePersonalDataModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.DeletePersonalDataModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.DeletePersonalDataModel.InputModel! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.DeletePersonalDataModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.DeletePersonalDataModel.InputModel +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.DeletePersonalDataModel.InputModel.InputModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.DeletePersonalDataModel.InputModel.Password.get -> string! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.DeletePersonalDataModel.InputModel.Password.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.DeletePersonalDataModel.RequirePassword.get -> bool +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.DeletePersonalDataModel.RequirePassword.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.Disable2faModel +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.Disable2faModel.Disable2faModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.Disable2faModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.Disable2faModel.StatusMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.DownloadPersonalDataModel +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.DownloadPersonalDataModel.DownloadPersonalDataModel() -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EmailModel Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EmailModel.Email.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EmailModel.Email.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EmailModel.EmailModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EmailModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EmailModel.InputModel! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EmailModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EmailModel.InputModel +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EmailModel.InputModel.InputModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EmailModel.InputModel.NewEmail.get -> string! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EmailModel.InputModel.NewEmail.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EmailModel.IsEmailConfirmed.get -> bool +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EmailModel.IsEmailConfirmed.set -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EmailModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EmailModel.StatusMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EnableAuthenticatorModel Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EnableAuthenticatorModel.AuthenticatorUri.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EnableAuthenticatorModel.AuthenticatorUri.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EnableAuthenticatorModel.EnableAuthenticatorModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EnableAuthenticatorModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EnableAuthenticatorModel.InputModel! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EnableAuthenticatorModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EnableAuthenticatorModel.InputModel Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EnableAuthenticatorModel.InputModel.Code.get -> string! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EnableAuthenticatorModel.InputModel.Code.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EnableAuthenticatorModel.InputModel.InputModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EnableAuthenticatorModel.RecoveryCodes.get -> string![]? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EnableAuthenticatorModel.RecoveryCodes.set -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EnableAuthenticatorModel.SharedKey.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EnableAuthenticatorModel.SharedKey.set -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EnableAuthenticatorModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EnableAuthenticatorModel.StatusMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ExternalLoginsModel Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ExternalLoginsModel.CurrentLogins.get -> System.Collections.Generic.IList? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ExternalLoginsModel.CurrentLogins.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ExternalLoginsModel.ExternalLoginsModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ExternalLoginsModel.OtherLogins.get -> System.Collections.Generic.IList? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ExternalLoginsModel.OtherLogins.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ExternalLoginsModel.ShowRemoveButton.get -> bool +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ExternalLoginsModel.ShowRemoveButton.set -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ExternalLoginsModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ExternalLoginsModel.StatusMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.GenerateRecoveryCodesModel +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.GenerateRecoveryCodesModel.GenerateRecoveryCodesModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.GenerateRecoveryCodesModel.RecoveryCodes.get -> string![]? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.GenerateRecoveryCodesModel.RecoveryCodes.set -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.GenerateRecoveryCodesModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.GenerateRecoveryCodesModel.StatusMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.IndexModel +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.IndexModel.IndexModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.IndexModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.IndexModel.InputModel! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.IndexModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.IndexModel.InputModel +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.IndexModel.InputModel.InputModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.IndexModel.InputModel.PhoneNumber.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.IndexModel.InputModel.PhoneNumber.set -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.IndexModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.IndexModel.StatusMessage.set -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.IndexModel.Username.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.IndexModel.Username.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ManageNavPages +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.PersonalDataModel +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.PersonalDataModel.PersonalDataModel() -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ResetAuthenticatorModel +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ResetAuthenticatorModel.ResetAuthenticatorModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ResetAuthenticatorModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ResetAuthenticatorModel.StatusMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.SetPasswordModel Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.SetPasswordModel.Input.get -> Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.SetPasswordModel.InputModel! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.SetPasswordModel.Input.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.SetPasswordModel.InputModel Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.SetPasswordModel.InputModel.ConfirmPassword.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.SetPasswordModel.InputModel.ConfirmPassword.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.SetPasswordModel.InputModel.InputModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.SetPasswordModel.InputModel.NewPassword.get -> string! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.SetPasswordModel.InputModel.NewPassword.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.SetPasswordModel.SetPasswordModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.SetPasswordModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.SetPasswordModel.StatusMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ShowRecoveryCodesModel Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ShowRecoveryCodesModel.OnGet() -> Microsoft.AspNetCore.Mvc.IActionResult! Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ShowRecoveryCodesModel.RecoveryCodes.get -> string![]? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ShowRecoveryCodesModel.RecoveryCodes.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ShowRecoveryCodesModel.ShowRecoveryCodesModel() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ShowRecoveryCodesModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ShowRecoveryCodesModel.StatusMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.HasAuthenticator.get -> bool +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.HasAuthenticator.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.Is2faEnabled.get -> bool +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.Is2faEnabled.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.IsMachineRemembered.get -> bool +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.IsMachineRemembered.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.RecoveryCodesLeft.get -> int +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.RecoveryCodesLeft.set -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.StatusMessage.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.StatusMessage.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.TwoFactorAuthenticationModel() -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Internal.ErrorModel +Microsoft.AspNetCore.Identity.UI.V5.Pages.Internal.ErrorModel.ErrorModel() -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Internal.ErrorModel.OnGet() -> void Microsoft.AspNetCore.Identity.UI.V5.Pages.Internal.ErrorModel.RequestId.get -> string? Microsoft.AspNetCore.Identity.UI.V5.Pages.Internal.ErrorModel.RequestId.set -> void +Microsoft.AspNetCore.Identity.UI.V5.Pages.Internal.ErrorModel.ShowRequestId.get -> bool +Microsoft.Extensions.DependencyInjection.IdentityServiceCollectionUIExtensions static Microsoft.AspNetCore.Identity.IdentityBuilderUIExtensions.AddDefaultUI(this Microsoft.AspNetCore.Identity.IdentityBuilder! builder) -> Microsoft.AspNetCore.Identity.IdentityBuilder! static Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ManageNavPages.AriaCurrent(Microsoft.AspNetCore.Mvc.Rendering.ViewContext! viewContext, string! page) -> string? static Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ManageNavPages.ChangePassword.get -> string! @@ -347,23 +592,41 @@ static Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ManageN static Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ManageNavPages.TwoFactorAuthenticationNavClass(Microsoft.AspNetCore.Mvc.Rendering.ViewContext! viewContext) -> string? static Microsoft.Extensions.DependencyInjection.IdentityServiceCollectionUIExtensions.AddDefaultIdentity(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.AspNetCore.Identity.IdentityBuilder! static Microsoft.Extensions.DependencyInjection.IdentityServiceCollectionUIExtensions.AddDefaultIdentity(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action! configureOptions) -> Microsoft.AspNetCore.Identity.IdentityBuilder! -virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ConfirmEmailChangeModel.OnGetAsync(string! userId, string! email, string! code) -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ConfirmEmailModel.OnGetAsync(string! userId, string! code) -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.OnGet() -> Microsoft.AspNetCore.Mvc.IActionResult! -virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.OnGetCallbackAsync(string? returnUrl = null, string? remoteError = null) -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.OnPost(string! provider, string? returnUrl = null) -> Microsoft.AspNetCore.Mvc.IActionResult! -virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.OnPostConfirmationAsync(string? returnUrl = null) -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ForgotPasswordModel.OnPostAsync() -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.OnGetAsync(string? returnUrl = null) -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.OnPostAsync(string? returnUrl = null) -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.OnGetAsync(bool rememberMe, string? returnUrl = null) -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.OnPostAsync(bool rememberMe, string? returnUrl = null) -> System.Threading.Tasks.Task! +static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.AuthenticationAppKeyReset -> Microsoft.Extensions.Logging.EventId +static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.InvalidAuthenticatorCode -> Microsoft.Extensions.Logging.EventId +static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.InvalidRecoveryCode -> Microsoft.Extensions.Logging.EventId +static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.PasswordChanged -> Microsoft.Extensions.Logging.EventId +static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.PersonalDataRequested -> Microsoft.Extensions.Logging.EventId +static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.TwoFADisabled -> Microsoft.Extensions.Logging.EventId +static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.TwoFAEnabled -> Microsoft.Extensions.Logging.EventId +static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.TwoFARecoveryGenerated -> Microsoft.Extensions.Logging.EventId +static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.UserCreated -> Microsoft.Extensions.Logging.EventId +static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.UserCreatedByExternalProvider -> Microsoft.Extensions.Logging.EventId +static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.UserDeleted -> Microsoft.Extensions.Logging.EventId +static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.UserLockout -> Microsoft.Extensions.Logging.EventId +static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.UserLoggedInByExternalProvider -> Microsoft.Extensions.Logging.EventId +static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.UserLoggedOut -> Microsoft.Extensions.Logging.EventId +static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.UserLogin -> Microsoft.Extensions.Logging.EventId +static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.UserLoginWith2FA -> Microsoft.Extensions.Logging.EventId +static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.UserLoginWithRecoveryCode -> Microsoft.Extensions.Logging.EventId +virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ConfirmEmailChangeModel.OnGetAsync(string! userId, string! email, string! code) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ConfirmEmailModel.OnGetAsync(string! userId, string! code) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.OnGet() -> Microsoft.AspNetCore.Mvc.IActionResult! +virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.OnGetCallbackAsync(string? returnUrl = null, string? remoteError = null) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.OnPost(string! provider, string? returnUrl = null) -> Microsoft.AspNetCore.Mvc.IActionResult! +virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.OnPostConfirmationAsync(string? returnUrl = null) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ForgotPasswordModel.OnPostAsync() -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.OnGetAsync(string? returnUrl = null) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.OnPostAsync(string? returnUrl = null) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.OnGetAsync(bool rememberMe, string? returnUrl = null) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.OnPostAsync(bool rememberMe, string? returnUrl = null) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWithRecoveryCodeModel.OnGetAsync(string? returnUrl = null) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWithRecoveryCodeModel.OnPostAsync(string? returnUrl = null) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LogoutModel.OnPost(string? returnUrl = null) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterConfirmationModel.OnGetAsync(string! email, string? returnUrl = null) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterModel.OnGetAsync(string? returnUrl = null) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterModel.OnPostAsync(string? returnUrl = null) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResendEmailConfirmationModel.OnGet() -> void virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResendEmailConfirmationModel.OnPostAsync() -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordModel.OnGet(string? code = null) -> Microsoft.AspNetCore.Mvc.IActionResult! virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordModel.OnPostAsync() -> System.Threading.Tasks.Task! @@ -412,6 +675,7 @@ virtual Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LogoutModel.O virtual Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterConfirmationModel.OnGetAsync(string! email, string? returnUrl = null) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterModel.OnGetAsync(string? returnUrl = null) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterModel.OnPostAsync(string? returnUrl = null) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResendEmailConfirmationModel.OnGet() -> void virtual Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResendEmailConfirmationModel.OnPostAsync() -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordModel.OnGet(string? code = null) -> Microsoft.AspNetCore.Mvc.IActionResult! virtual Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordModel.OnPostAsync() -> System.Threading.Tasks.Task! @@ -443,267 +707,3 @@ virtual Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.SetPas virtual Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.SetPasswordModel.OnPostAsync() -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.OnGetAsync() -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.OnPostAsync() -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Identity.IdentityBuilderUIExtensions -Microsoft.AspNetCore.Identity.UI.LoggerEventIds -Microsoft.AspNetCore.Identity.UI.Services.IEmailSender -Microsoft.AspNetCore.Identity.UI.UIFrameworkAttribute -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.AccessDeniedModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.AccessDeniedModel.AccessDeniedModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.AccessDeniedModel.OnGet() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ConfirmEmailChangeModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ConfirmEmailChangeModel.ConfirmEmailChangeModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ConfirmEmailModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ConfirmEmailModel.ConfirmEmailModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.ExternalLoginModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.InputModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ExternalLoginModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ForgotPasswordConfirmation -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ForgotPasswordConfirmation.ForgotPasswordConfirmation() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ForgotPasswordConfirmation.OnGet() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ForgotPasswordModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ForgotPasswordModel.ForgotPasswordModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ForgotPasswordModel.InputModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ForgotPasswordModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LockoutModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LockoutModel.LockoutModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LockoutModel.OnGet() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.InputModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.InputModel.RememberMe.get -> bool -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.InputModel.RememberMe.set -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginModel.LoginModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.InputModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.InputModel.RememberMachine.get -> bool -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.InputModel.RememberMachine.set -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.LoginWith2faModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.RememberMe.get -> bool -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWith2faModel.RememberMe.set -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWithRecoveryCodeModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWithRecoveryCodeModel.InputModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWithRecoveryCodeModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LoginWithRecoveryCodeModel.LoginWithRecoveryCodeModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LogoutModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LogoutModel.LogoutModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.LogoutModel.OnGet() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterConfirmationModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterConfirmationModel.DisplayConfirmAccountLink.get -> bool -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterConfirmationModel.DisplayConfirmAccountLink.set -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterConfirmationModel.RegisterConfirmationModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterModel.InputModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.RegisterModel.RegisterModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResendEmailConfirmationModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResendEmailConfirmationModel.InputModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResendEmailConfirmationModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResendEmailConfirmationModel.ResendEmailConfirmationModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordConfirmationModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordConfirmationModel.OnGet() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordConfirmationModel.ResetPasswordConfirmationModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordModel.InputModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResetPasswordModel.ResetPasswordModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ChangePasswordModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ChangePasswordModel.ChangePasswordModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ChangePasswordModel.InputModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ChangePasswordModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.DeletePersonalDataModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.DeletePersonalDataModel.DeletePersonalDataModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.DeletePersonalDataModel.InputModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.DeletePersonalDataModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.DeletePersonalDataModel.RequirePassword.get -> bool -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.DeletePersonalDataModel.RequirePassword.set -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.Disable2faModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.Disable2faModel.Disable2faModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.DownloadPersonalDataModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.DownloadPersonalDataModel.DownloadPersonalDataModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EmailModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EmailModel.EmailModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EmailModel.InputModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EmailModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EmailModel.IsEmailConfirmed.get -> bool -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EmailModel.IsEmailConfirmed.set -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EnableAuthenticatorModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EnableAuthenticatorModel.EnableAuthenticatorModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EnableAuthenticatorModel.InputModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.EnableAuthenticatorModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ExternalLoginsModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ExternalLoginsModel.ExternalLoginsModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ExternalLoginsModel.ShowRemoveButton.get -> bool -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ExternalLoginsModel.ShowRemoveButton.set -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.GenerateRecoveryCodesModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.GenerateRecoveryCodesModel.GenerateRecoveryCodesModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.IndexModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.IndexModel.IndexModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.IndexModel.InputModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.IndexModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ManageNavPages -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.PersonalDataModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.PersonalDataModel.PersonalDataModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ResetAuthenticatorModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ResetAuthenticatorModel.ResetAuthenticatorModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.SetPasswordModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.SetPasswordModel.InputModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.SetPasswordModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.SetPasswordModel.SetPasswordModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ShowRecoveryCodesModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.ShowRecoveryCodesModel.ShowRecoveryCodesModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.HasAuthenticator.get -> bool -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.HasAuthenticator.set -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.Is2faEnabled.get -> bool -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.Is2faEnabled.set -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.IsMachineRemembered.get -> bool -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.IsMachineRemembered.set -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.RecoveryCodesLeft.get -> int -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.RecoveryCodesLeft.set -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.TwoFactorAuthenticationModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Internal.ErrorModel -Microsoft.AspNetCore.Identity.UI.V4.Pages.Internal.ErrorModel.ErrorModel() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Internal.ErrorModel.OnGet() -> void -Microsoft.AspNetCore.Identity.UI.V4.Pages.Internal.ErrorModel.ShowRequestId.get -> bool -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.AccessDeniedModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.AccessDeniedModel.AccessDeniedModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.AccessDeniedModel.OnGet() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ConfirmEmailChangeModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ConfirmEmailChangeModel.ConfirmEmailChangeModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ConfirmEmailModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ConfirmEmailModel.ConfirmEmailModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ExternalLoginModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ExternalLoginModel.ExternalLoginModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ExternalLoginModel.InputModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ExternalLoginModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ForgotPasswordConfirmation -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ForgotPasswordConfirmation.ForgotPasswordConfirmation() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ForgotPasswordConfirmation.OnGet() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ForgotPasswordModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ForgotPasswordModel.ForgotPasswordModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ForgotPasswordModel.InputModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ForgotPasswordModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LockoutModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LockoutModel.LockoutModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LockoutModel.OnGet() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel.InputModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel.InputModel.RememberMe.get -> bool -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel.InputModel.RememberMe.set -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginModel.LoginModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWith2faModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWith2faModel.InputModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWith2faModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWith2faModel.InputModel.RememberMachine.get -> bool -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWith2faModel.InputModel.RememberMachine.set -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWith2faModel.LoginWith2faModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWith2faModel.RememberMe.get -> bool -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWith2faModel.RememberMe.set -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWithRecoveryCodeModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWithRecoveryCodeModel.InputModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWithRecoveryCodeModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LoginWithRecoveryCodeModel.LoginWithRecoveryCodeModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LogoutModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LogoutModel.LogoutModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.LogoutModel.OnGet() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterConfirmationModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterConfirmationModel.DisplayConfirmAccountLink.get -> bool -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterConfirmationModel.DisplayConfirmAccountLink.set -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterConfirmationModel.RegisterConfirmationModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterModel.InputModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.RegisterModel.RegisterModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResendEmailConfirmationModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResendEmailConfirmationModel.InputModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResendEmailConfirmationModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResendEmailConfirmationModel.ResendEmailConfirmationModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordConfirmationModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordConfirmationModel.OnGet() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordConfirmationModel.ResetPasswordConfirmationModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordModel.InputModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResetPasswordModel.ResetPasswordModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ChangePasswordModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ChangePasswordModel.ChangePasswordModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ChangePasswordModel.InputModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ChangePasswordModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.DeletePersonalDataModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.DeletePersonalDataModel.DeletePersonalDataModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.DeletePersonalDataModel.InputModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.DeletePersonalDataModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.DeletePersonalDataModel.RequirePassword.get -> bool -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.DeletePersonalDataModel.RequirePassword.set -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.Disable2faModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.Disable2faModel.Disable2faModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.DownloadPersonalDataModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.DownloadPersonalDataModel.DownloadPersonalDataModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EmailModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EmailModel.EmailModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EmailModel.InputModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EmailModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EmailModel.IsEmailConfirmed.get -> bool -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EmailModel.IsEmailConfirmed.set -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EnableAuthenticatorModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EnableAuthenticatorModel.EnableAuthenticatorModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EnableAuthenticatorModel.InputModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.EnableAuthenticatorModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ExternalLoginsModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ExternalLoginsModel.ExternalLoginsModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ExternalLoginsModel.ShowRemoveButton.get -> bool -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ExternalLoginsModel.ShowRemoveButton.set -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.GenerateRecoveryCodesModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.GenerateRecoveryCodesModel.GenerateRecoveryCodesModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.IndexModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.IndexModel.IndexModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.IndexModel.InputModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.IndexModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ManageNavPages -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.PersonalDataModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.PersonalDataModel.PersonalDataModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ResetAuthenticatorModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ResetAuthenticatorModel.ResetAuthenticatorModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.SetPasswordModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.SetPasswordModel.InputModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.SetPasswordModel.InputModel.InputModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.SetPasswordModel.SetPasswordModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ShowRecoveryCodesModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.ShowRecoveryCodesModel.ShowRecoveryCodesModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.HasAuthenticator.get -> bool -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.HasAuthenticator.set -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.Is2faEnabled.get -> bool -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.Is2faEnabled.set -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.IsMachineRemembered.get -> bool -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.IsMachineRemembered.set -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.RecoveryCodesLeft.get -> int -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.RecoveryCodesLeft.set -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Manage.Internal.TwoFactorAuthenticationModel.TwoFactorAuthenticationModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Internal.ErrorModel -Microsoft.AspNetCore.Identity.UI.V5.Pages.Internal.ErrorModel.ErrorModel() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Internal.ErrorModel.OnGet() -> void -Microsoft.AspNetCore.Identity.UI.V5.Pages.Internal.ErrorModel.ShowRequestId.get -> bool -Microsoft.Extensions.DependencyInjection.IdentityServiceCollectionUIExtensions -static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.AuthenticationAppKeyReset -> Microsoft.Extensions.Logging.EventId -static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.InvalidAuthenticatorCode -> Microsoft.Extensions.Logging.EventId -static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.InvalidRecoveryCode -> Microsoft.Extensions.Logging.EventId -static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.PasswordChanged -> Microsoft.Extensions.Logging.EventId -static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.PersonalDataRequested -> Microsoft.Extensions.Logging.EventId -static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.TwoFADisabled -> Microsoft.Extensions.Logging.EventId -static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.TwoFAEnabled -> Microsoft.Extensions.Logging.EventId -static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.TwoFARecoveryGenerated -> Microsoft.Extensions.Logging.EventId -static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.UserCreated -> Microsoft.Extensions.Logging.EventId -static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.UserCreatedByExternalProvider -> Microsoft.Extensions.Logging.EventId -static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.UserDeleted -> Microsoft.Extensions.Logging.EventId -static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.UserLockout -> Microsoft.Extensions.Logging.EventId -static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.UserLoggedInByExternalProvider -> Microsoft.Extensions.Logging.EventId -static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.UserLoggedOut -> Microsoft.Extensions.Logging.EventId -static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.UserLogin -> Microsoft.Extensions.Logging.EventId -static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.UserLoginWith2FA -> Microsoft.Extensions.Logging.EventId -static readonly Microsoft.AspNetCore.Identity.UI.LoggerEventIds.UserLoginWithRecoveryCode -> Microsoft.Extensions.Logging.EventId -virtual Microsoft.AspNetCore.Identity.UI.V4.Pages.Account.Internal.ResendEmailConfirmationModel.OnGet() -> void -virtual Microsoft.AspNetCore.Identity.UI.V5.Pages.Account.Internal.ResendEmailConfirmationModel.OnGet() -> void diff --git a/src/JSInterop/Microsoft.JSInterop/src/PublicAPI.Shipped.txt b/src/JSInterop/Microsoft.JSInterop/src/PublicAPI.Shipped.txt index a0fba9ac06d6..526b0d8f43d8 100644 --- a/src/JSInterop/Microsoft.JSInterop/src/PublicAPI.Shipped.txt +++ b/src/JSInterop/Microsoft.JSInterop/src/PublicAPI.Shipped.txt @@ -1,9 +1,9 @@ #nullable enable -Microsoft.JSInterop.DotNetObjectReference abstract Microsoft.JSInterop.JSInProcessRuntime.InvokeJS(string! identifier, string? argsJson, Microsoft.JSInterop.JSCallResultType resultType, long targetInstanceId) -> string? abstract Microsoft.JSInterop.JSRuntime.BeginInvokeJS(long taskId, string! identifier, string? argsJson, Microsoft.JSInterop.JSCallResultType resultType, long targetInstanceId) -> void abstract Microsoft.JSInterop.JSRuntime.EndInvokeDotNet(Microsoft.JSInterop.Infrastructure.DotNetInvocationInfo invocationInfo, in Microsoft.JSInterop.Infrastructure.DotNetInvocationResult invocationResult) -> void Microsoft.JSInterop.DotNetObjectReference +Microsoft.JSInterop.DotNetObjectReference Microsoft.JSInterop.DotNetObjectReference.Dispose() -> void Microsoft.JSInterop.DotNetObjectReference.Value.get -> TValue! Microsoft.JSInterop.DotNetStreamReference @@ -50,9 +50,9 @@ Microsoft.JSInterop.Implementation.JSStreamReference Microsoft.JSInterop.Implementation.JSStreamReference.Length.get -> long Microsoft.JSInterop.Infrastructure.DotNetDispatcher Microsoft.JSInterop.Infrastructure.DotNetInvocationInfo -Microsoft.JSInterop.Infrastructure.DotNetInvocationInfo.DotNetInvocationInfo() -> void Microsoft.JSInterop.Infrastructure.DotNetInvocationInfo.AssemblyName.get -> string? Microsoft.JSInterop.Infrastructure.DotNetInvocationInfo.CallId.get -> string? +Microsoft.JSInterop.Infrastructure.DotNetInvocationInfo.DotNetInvocationInfo() -> void Microsoft.JSInterop.Infrastructure.DotNetInvocationInfo.DotNetInvocationInfo(string? assemblyName, string! methodIdentifier, long dotNetObjectId, string? callId) -> void Microsoft.JSInterop.Infrastructure.DotNetInvocationInfo.DotNetObjectId.get -> long Microsoft.JSInterop.Infrastructure.DotNetInvocationInfo.MethodIdentifier.get -> string! diff --git a/src/Localization/Localization/src/PublicAPI.Shipped.txt b/src/Localization/Localization/src/PublicAPI.Shipped.txt index 1c2bbe79107e..3b917b8b381b 100644 --- a/src/Localization/Localization/src/PublicAPI.Shipped.txt +++ b/src/Localization/Localization/src/PublicAPI.Shipped.txt @@ -1,5 +1,4 @@ #nullable enable -Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.ResourceManagerStringLocalizerFactory(Microsoft.Extensions.Options.IOptions! localizationOptions, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void Microsoft.Extensions.DependencyInjection.LocalizationServiceCollectionExtensions Microsoft.Extensions.Localization.IResourceNamesCache Microsoft.Extensions.Localization.IResourceNamesCache.GetOrAdd(string! name, System.Func?>! valueFactory) -> System.Collections.Generic.IList? @@ -17,6 +16,7 @@ Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.ResourceManager Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.Create(string! baseName, string! location) -> Microsoft.Extensions.Localization.IStringLocalizer! Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.Create(System.Type! resourceSource) -> Microsoft.Extensions.Localization.IStringLocalizer! +Microsoft.Extensions.Localization.ResourceManagerStringLocalizerFactory.ResourceManagerStringLocalizerFactory(Microsoft.Extensions.Options.IOptions! localizationOptions, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void Microsoft.Extensions.Localization.ResourceNamesCache Microsoft.Extensions.Localization.ResourceNamesCache.GetOrAdd(string! name, System.Func?>! valueFactory) -> System.Collections.Generic.IList? Microsoft.Extensions.Localization.ResourceNamesCache.ResourceNamesCache() -> void diff --git a/src/Middleware/CORS/src/PublicAPI.Shipped.txt b/src/Middleware/CORS/src/PublicAPI.Shipped.txt index e1a368079c4d..0d10acd163d6 100644 --- a/src/Middleware/CORS/src/PublicAPI.Shipped.txt +++ b/src/Middleware/CORS/src/PublicAPI.Shipped.txt @@ -31,10 +31,8 @@ ~Microsoft.AspNetCore.Cors.Infrastructure.CorsResult.AllowedExposedHeaders.get -> System.Collections.Generic.IList ~Microsoft.AspNetCore.Cors.Infrastructure.CorsResult.AllowedHeaders.get -> System.Collections.Generic.IList ~Microsoft.AspNetCore.Cors.Infrastructure.CorsResult.AllowedMethods.get -> System.Collections.Generic.IList -Microsoft.AspNetCore.Cors.Infrastructure.CorsService.CorsService(Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void ~Microsoft.AspNetCore.Cors.Infrastructure.CorsService.EvaluatePolicy(Microsoft.AspNetCore.Http.HttpContext context, Microsoft.AspNetCore.Cors.Infrastructure.CorsPolicy policy) -> Microsoft.AspNetCore.Cors.Infrastructure.CorsResult ~Microsoft.AspNetCore.Cors.Infrastructure.CorsService.EvaluatePolicy(Microsoft.AspNetCore.Http.HttpContext context, string policyName) -> Microsoft.AspNetCore.Cors.Infrastructure.CorsResult -Microsoft.AspNetCore.Cors.Infrastructure.DefaultCorsPolicyProvider.DefaultCorsPolicyProvider(Microsoft.Extensions.Options.IOptions! options) -> void ~Microsoft.AspNetCore.Cors.Infrastructure.DefaultCorsPolicyProvider.GetPolicyAsync(Microsoft.AspNetCore.Http.HttpContext context, string policyName) -> System.Threading.Tasks.Task ~Microsoft.AspNetCore.Cors.Infrastructure.ICorsPolicyMetadata.Policy.get -> Microsoft.AspNetCore.Cors.Infrastructure.CorsPolicy ~Microsoft.AspNetCore.Cors.Infrastructure.ICorsPolicyProvider.GetPolicyAsync(Microsoft.AspNetCore.Http.HttpContext context, string policyName) -> System.Threading.Tasks.Task @@ -139,9 +137,11 @@ Microsoft.AspNetCore.Cors.Infrastructure.CorsResult.SupportsCredentials.set -> v Microsoft.AspNetCore.Cors.Infrastructure.CorsResult.VaryByOrigin.get -> bool Microsoft.AspNetCore.Cors.Infrastructure.CorsResult.VaryByOrigin.set -> void Microsoft.AspNetCore.Cors.Infrastructure.CorsService +Microsoft.AspNetCore.Cors.Infrastructure.CorsService.CorsService(Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void Microsoft.AspNetCore.Cors.Infrastructure.CorsService.EvaluatePolicy(Microsoft.AspNetCore.Http.HttpContext! context, Microsoft.AspNetCore.Cors.Infrastructure.CorsPolicy! policy) -> Microsoft.AspNetCore.Cors.Infrastructure.CorsResult! Microsoft.AspNetCore.Cors.Infrastructure.CorsService.EvaluatePolicy(Microsoft.AspNetCore.Http.HttpContext! context, string! policyName) -> Microsoft.AspNetCore.Cors.Infrastructure.CorsResult! Microsoft.AspNetCore.Cors.Infrastructure.DefaultCorsPolicyProvider +Microsoft.AspNetCore.Cors.Infrastructure.DefaultCorsPolicyProvider.DefaultCorsPolicyProvider(Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.Cors.Infrastructure.DefaultCorsPolicyProvider.GetPolicyAsync(Microsoft.AspNetCore.Http.HttpContext! context, string? policyName) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Cors.Infrastructure.ICorsPolicyMetadata Microsoft.AspNetCore.Cors.Infrastructure.ICorsPolicyMetadata.Policy.get -> Microsoft.AspNetCore.Cors.Infrastructure.CorsPolicy! diff --git a/src/Middleware/CORS/src/PublicAPI.Unshipped.txt b/src/Middleware/CORS/src/PublicAPI.Unshipped.txt index 815c92006af7..7dc5c58110bf 100644 --- a/src/Middleware/CORS/src/PublicAPI.Unshipped.txt +++ b/src/Middleware/CORS/src/PublicAPI.Unshipped.txt @@ -1 +1 @@ -#nullable enable \ No newline at end of file +#nullable enable diff --git a/src/Middleware/ConcurrencyLimiter/src/PublicAPI.Shipped.txt b/src/Middleware/ConcurrencyLimiter/src/PublicAPI.Shipped.txt index 300e9d0222ca..cc188c5a2d4d 100644 --- a/src/Middleware/ConcurrencyLimiter/src/PublicAPI.Shipped.txt +++ b/src/Middleware/ConcurrencyLimiter/src/PublicAPI.Shipped.txt @@ -1,7 +1,7 @@ #nullable enable -Microsoft.AspNetCore.ConcurrencyLimiter.ConcurrencyLimiterMiddleware.ConcurrencyLimiterMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.AspNetCore.ConcurrencyLimiter.IQueuePolicy! queue, Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.Builder.ConcurrencyLimiterExtensions Microsoft.AspNetCore.ConcurrencyLimiter.ConcurrencyLimiterMiddleware +Microsoft.AspNetCore.ConcurrencyLimiter.ConcurrencyLimiterMiddleware.ConcurrencyLimiterMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.AspNetCore.ConcurrencyLimiter.IQueuePolicy! queue, Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.ConcurrencyLimiter.ConcurrencyLimiterMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext! context) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.ConcurrencyLimiter.ConcurrencyLimiterOptions Microsoft.AspNetCore.ConcurrencyLimiter.ConcurrencyLimiterOptions.ConcurrencyLimiterOptions() -> void diff --git a/src/Middleware/Diagnostics.Abstractions/src/PublicAPI.Shipped.txt b/src/Middleware/Diagnostics.Abstractions/src/PublicAPI.Shipped.txt index ee749dc522b7..03397f346c10 100644 --- a/src/Middleware/Diagnostics.Abstractions/src/PublicAPI.Shipped.txt +++ b/src/Middleware/Diagnostics.Abstractions/src/PublicAPI.Shipped.txt @@ -52,9 +52,11 @@ Microsoft.AspNetCore.Diagnostics.IStatusCodePagesFeature Microsoft.AspNetCore.Diagnostics.IStatusCodePagesFeature.Enabled.get -> bool Microsoft.AspNetCore.Diagnostics.IStatusCodePagesFeature.Enabled.set -> void Microsoft.AspNetCore.Diagnostics.IStatusCodeReExecuteFeature +Microsoft.AspNetCore.Diagnostics.IStatusCodeReExecuteFeature.Endpoint.get -> Microsoft.AspNetCore.Http.Endpoint? Microsoft.AspNetCore.Diagnostics.IStatusCodeReExecuteFeature.OriginalPath.get -> string! Microsoft.AspNetCore.Diagnostics.IStatusCodeReExecuteFeature.OriginalPath.set -> void Microsoft.AspNetCore.Diagnostics.IStatusCodeReExecuteFeature.OriginalPathBase.get -> string! Microsoft.AspNetCore.Diagnostics.IStatusCodeReExecuteFeature.OriginalPathBase.set -> void Microsoft.AspNetCore.Diagnostics.IStatusCodeReExecuteFeature.OriginalQueryString.get -> string? Microsoft.AspNetCore.Diagnostics.IStatusCodeReExecuteFeature.OriginalQueryString.set -> void +Microsoft.AspNetCore.Diagnostics.IStatusCodeReExecuteFeature.RouteValues.get -> Microsoft.AspNetCore.Routing.RouteValueDictionary? diff --git a/src/Middleware/Diagnostics.Abstractions/src/PublicAPI.Unshipped.txt b/src/Middleware/Diagnostics.Abstractions/src/PublicAPI.Unshipped.txt index 80c888a86d7e..7dc5c58110bf 100644 --- a/src/Middleware/Diagnostics.Abstractions/src/PublicAPI.Unshipped.txt +++ b/src/Middleware/Diagnostics.Abstractions/src/PublicAPI.Unshipped.txt @@ -1,3 +1 @@ #nullable enable -Microsoft.AspNetCore.Diagnostics.IStatusCodeReExecuteFeature.Endpoint.get -> Microsoft.AspNetCore.Http.Endpoint? -Microsoft.AspNetCore.Diagnostics.IStatusCodeReExecuteFeature.RouteValues.get -> Microsoft.AspNetCore.Routing.RouteValueDictionary? diff --git a/src/Middleware/Diagnostics.EntityFrameworkCore/src/PublicAPI.Shipped.txt b/src/Middleware/Diagnostics.EntityFrameworkCore/src/PublicAPI.Shipped.txt index b3836054a8bf..89ab48c160c6 100644 --- a/src/Middleware/Diagnostics.EntityFrameworkCore/src/PublicAPI.Shipped.txt +++ b/src/Middleware/Diagnostics.EntityFrameworkCore/src/PublicAPI.Shipped.txt @@ -1,7 +1,4 @@ #nullable enable -Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.DatabaseDeveloperPageExceptionFilter.DatabaseDeveloperPageExceptionFilter(Microsoft.Extensions.Logging.ILogger! logger, Microsoft.Extensions.Options.IOptions! options) -> void -Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.DatabaseErrorPageMiddleware.DatabaseErrorPageMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.Extensions.Options.IOptions! options) -> void -Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.MigrationsEndPointMiddleware.MigrationsEndPointMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Logging.ILogger! logger, Microsoft.Extensions.Options.IOptions! options) -> void ~static Microsoft.AspNetCore.Builder.DatabaseErrorPageExtensions.UseDatabaseErrorPage(this Microsoft.AspNetCore.Builder.IApplicationBuilder app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder ~static Microsoft.AspNetCore.Builder.DatabaseErrorPageExtensions.UseDatabaseErrorPage(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, Microsoft.AspNetCore.Builder.DatabaseErrorPageOptions options) -> Microsoft.AspNetCore.Builder.IApplicationBuilder ~static Microsoft.AspNetCore.Builder.MigrationsEndPointExtensions.UseMigrationsEndPoint(this Microsoft.AspNetCore.Builder.IApplicationBuilder app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder @@ -15,9 +12,12 @@ Microsoft.AspNetCore.Builder.MigrationsEndPointExtensions Microsoft.AspNetCore.Builder.MigrationsEndPointOptions Microsoft.AspNetCore.Builder.MigrationsEndPointOptions.MigrationsEndPointOptions() -> void Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.DatabaseDeveloperPageExceptionFilter +Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.DatabaseDeveloperPageExceptionFilter.DatabaseDeveloperPageExceptionFilter(Microsoft.Extensions.Logging.ILogger! logger, Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.DatabaseDeveloperPageExceptionFilter.HandleExceptionAsync(Microsoft.AspNetCore.Diagnostics.ErrorContext! errorContext, System.Func! next) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.DatabaseErrorPageMiddleware +Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.DatabaseErrorPageMiddleware.DatabaseErrorPageMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.MigrationsEndPointMiddleware +Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.MigrationsEndPointMiddleware.MigrationsEndPointMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Logging.ILogger! logger, Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.Extensions.DependencyInjection.DatabaseDeveloperPageExceptionFilterServiceExtensions static Microsoft.AspNetCore.Builder.DatabaseErrorPageExtensions.UseDatabaseErrorPage(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.DatabaseErrorPageExtensions.UseDatabaseErrorPage(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, Microsoft.AspNetCore.Builder.DatabaseErrorPageOptions! options) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! diff --git a/src/Middleware/Diagnostics/src/PublicAPI.Shipped.txt b/src/Middleware/Diagnostics/src/PublicAPI.Shipped.txt index c73ebb5c8f4d..df3ef29a4e76 100644 --- a/src/Middleware/Diagnostics/src/PublicAPI.Shipped.txt +++ b/src/Middleware/Diagnostics/src/PublicAPI.Shipped.txt @@ -1,8 +1,4 @@ #nullable enable -Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.DeveloperExceptionPageMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.AspNetCore.Hosting.IWebHostEnvironment! hostingEnvironment, System.Diagnostics.DiagnosticSource! diagnosticSource, System.Collections.Generic.IEnumerable! filters) -> void -Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddleware.ExceptionHandlerMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.Extensions.Options.IOptions! options, System.Diagnostics.DiagnosticListener! diagnosticListener) -> void -Microsoft.AspNetCore.Diagnostics.StatusCodePagesMiddleware.StatusCodePagesMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options) -> void -Microsoft.AspNetCore.Diagnostics.WelcomePageMiddleware.WelcomePageMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.Builder.DeveloperExceptionPageExtensions Microsoft.AspNetCore.Builder.DeveloperExceptionPageOptions Microsoft.AspNetCore.Builder.DeveloperExceptionPageOptions.DeveloperExceptionPageOptions() -> void @@ -30,6 +26,7 @@ Microsoft.AspNetCore.Builder.WelcomePageOptions.Path.get -> Microsoft.AspNetCore Microsoft.AspNetCore.Builder.WelcomePageOptions.Path.set -> void Microsoft.AspNetCore.Builder.WelcomePageOptions.WelcomePageOptions() -> void Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware +Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.DeveloperExceptionPageMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.AspNetCore.Hosting.IWebHostEnvironment! hostingEnvironment, System.Diagnostics.DiagnosticSource! diagnosticSource, System.Collections.Generic.IEnumerable! filters) -> void Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext! context) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Diagnostics.ExceptionHandlerFeature Microsoft.AspNetCore.Diagnostics.ExceptionHandlerFeature.Endpoint.get -> Microsoft.AspNetCore.Http.Endpoint? @@ -42,6 +39,7 @@ Microsoft.AspNetCore.Diagnostics.ExceptionHandlerFeature.Path.set -> void Microsoft.AspNetCore.Diagnostics.ExceptionHandlerFeature.RouteValues.get -> Microsoft.AspNetCore.Routing.RouteValueDictionary? Microsoft.AspNetCore.Diagnostics.ExceptionHandlerFeature.RouteValues.set -> void Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddleware +Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddleware.ExceptionHandlerMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.Extensions.Options.IOptions! options, System.Diagnostics.DiagnosticListener! diagnosticListener) -> void Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext! context) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Diagnostics.StatusCodeContext Microsoft.AspNetCore.Diagnostics.StatusCodeContext.HttpContext.get -> Microsoft.AspNetCore.Http.HttpContext! @@ -54,33 +52,39 @@ Microsoft.AspNetCore.Diagnostics.StatusCodePagesFeature.Enabled.set -> void Microsoft.AspNetCore.Diagnostics.StatusCodePagesFeature.StatusCodePagesFeature() -> void Microsoft.AspNetCore.Diagnostics.StatusCodePagesMiddleware Microsoft.AspNetCore.Diagnostics.StatusCodePagesMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext! context) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Diagnostics.StatusCodePagesMiddleware.StatusCodePagesMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.Diagnostics.StatusCodeReExecuteFeature +Microsoft.AspNetCore.Diagnostics.StatusCodeReExecuteFeature.Endpoint.get -> Microsoft.AspNetCore.Http.Endpoint? +Microsoft.AspNetCore.Diagnostics.StatusCodeReExecuteFeature.Endpoint.set -> void Microsoft.AspNetCore.Diagnostics.StatusCodeReExecuteFeature.OriginalPath.get -> string! Microsoft.AspNetCore.Diagnostics.StatusCodeReExecuteFeature.OriginalPath.set -> void Microsoft.AspNetCore.Diagnostics.StatusCodeReExecuteFeature.OriginalPathBase.get -> string! Microsoft.AspNetCore.Diagnostics.StatusCodeReExecuteFeature.OriginalPathBase.set -> void Microsoft.AspNetCore.Diagnostics.StatusCodeReExecuteFeature.OriginalQueryString.get -> string? Microsoft.AspNetCore.Diagnostics.StatusCodeReExecuteFeature.OriginalQueryString.set -> void +Microsoft.AspNetCore.Diagnostics.StatusCodeReExecuteFeature.RouteValues.get -> Microsoft.AspNetCore.Routing.RouteValueDictionary? +Microsoft.AspNetCore.Diagnostics.StatusCodeReExecuteFeature.RouteValues.set -> void Microsoft.AspNetCore.Diagnostics.StatusCodeReExecuteFeature.StatusCodeReExecuteFeature() -> void Microsoft.AspNetCore.Diagnostics.WelcomePageMiddleware Microsoft.AspNetCore.Diagnostics.WelcomePageMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext! context) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Diagnostics.WelcomePageMiddleware.WelcomePageMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.Extensions.DependencyInjection.ExceptionHandlerServiceCollectionExtensions -static Microsoft.AspNetCore.Builder.DeveloperExceptionPageExtensions.UseDeveloperExceptionPage(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, Microsoft.AspNetCore.Builder.DeveloperExceptionPageOptions! options) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.DeveloperExceptionPageExtensions.UseDeveloperExceptionPage(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! +static Microsoft.AspNetCore.Builder.DeveloperExceptionPageExtensions.UseDeveloperExceptionPage(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, Microsoft.AspNetCore.Builder.DeveloperExceptionPageOptions! options) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! +static Microsoft.AspNetCore.Builder.ExceptionHandlerExtensions.UseExceptionHandler(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.ExceptionHandlerExtensions.UseExceptionHandler(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, Microsoft.AspNetCore.Builder.ExceptionHandlerOptions! options) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.ExceptionHandlerExtensions.UseExceptionHandler(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, string! errorHandlingPath) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.ExceptionHandlerExtensions.UseExceptionHandler(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, System.Action! configure) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! -static Microsoft.AspNetCore.Builder.ExceptionHandlerExtensions.UseExceptionHandler(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! +static Microsoft.AspNetCore.Builder.StatusCodePagesExtensions.UseStatusCodePages(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.StatusCodePagesExtensions.UseStatusCodePages(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, Microsoft.AspNetCore.Builder.StatusCodePagesOptions! options) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.StatusCodePagesExtensions.UseStatusCodePages(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, string! contentType, string! bodyFormat) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.StatusCodePagesExtensions.UseStatusCodePages(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, System.Action! configuration) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.StatusCodePagesExtensions.UseStatusCodePages(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, System.Func! handler) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! -static Microsoft.AspNetCore.Builder.StatusCodePagesExtensions.UseStatusCodePages(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.StatusCodePagesExtensions.UseStatusCodePagesWithRedirects(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, string! locationFormat) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.StatusCodePagesExtensions.UseStatusCodePagesWithReExecute(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, string! pathFormat, string? queryFormat = null) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! +static Microsoft.AspNetCore.Builder.WelcomePageExtensions.UseWelcomePage(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.WelcomePageExtensions.UseWelcomePage(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, Microsoft.AspNetCore.Builder.WelcomePageOptions! options) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.WelcomePageExtensions.UseWelcomePage(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, Microsoft.AspNetCore.Http.PathString path) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.WelcomePageExtensions.UseWelcomePage(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, string! path) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! -static Microsoft.AspNetCore.Builder.WelcomePageExtensions.UseWelcomePage(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.Extensions.DependencyInjection.ExceptionHandlerServiceCollectionExtensions.AddExceptionHandler(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action! configureOptions) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! static Microsoft.Extensions.DependencyInjection.ExceptionHandlerServiceCollectionExtensions.AddExceptionHandler(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action! configureOptions) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! diff --git a/src/Middleware/Diagnostics/src/PublicAPI.Unshipped.txt b/src/Middleware/Diagnostics/src/PublicAPI.Unshipped.txt index eb10f3ac155a..7dc5c58110bf 100644 --- a/src/Middleware/Diagnostics/src/PublicAPI.Unshipped.txt +++ b/src/Middleware/Diagnostics/src/PublicAPI.Unshipped.txt @@ -1,5 +1 @@ #nullable enable -Microsoft.AspNetCore.Diagnostics.StatusCodeReExecuteFeature.Endpoint.get -> Microsoft.AspNetCore.Http.Endpoint? -Microsoft.AspNetCore.Diagnostics.StatusCodeReExecuteFeature.Endpoint.set -> void -Microsoft.AspNetCore.Diagnostics.StatusCodeReExecuteFeature.RouteValues.get -> Microsoft.AspNetCore.Routing.RouteValueDictionary? -Microsoft.AspNetCore.Diagnostics.StatusCodeReExecuteFeature.RouteValues.set -> void diff --git a/src/Middleware/HeaderPropagation/src/PublicAPI.Shipped.txt b/src/Middleware/HeaderPropagation/src/PublicAPI.Shipped.txt index 3d927f90c095..25cad17b0130 100644 --- a/src/Middleware/HeaderPropagation/src/PublicAPI.Shipped.txt +++ b/src/Middleware/HeaderPropagation/src/PublicAPI.Shipped.txt @@ -16,7 +16,6 @@ ~Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationMessageHandlerEntry.OutboundHeaderName.get -> string ~Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationMessageHandlerEntryCollection.Add(string capturedHeaderName, string outboundHeaderName) -> void ~Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationMessageHandlerEntryCollection.Add(string headerName) -> void -Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationMiddleware.HeaderPropagationMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options, Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationValues! values) -> void ~Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext context) -> System.Threading.Tasks.Task ~override Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationMessageHandler.SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task ~static Microsoft.AspNetCore.Builder.HeaderPropagationApplicationBuilderExtensions.UseHeaderPropagation(this Microsoft.AspNetCore.Builder.IApplicationBuilder app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder @@ -26,8 +25,8 @@ Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationMiddleware.HeaderPropaga ~static Microsoft.Extensions.DependencyInjection.HeaderPropagationServiceCollectionExtensions.AddHeaderPropagation(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Action configureOptions) -> Microsoft.Extensions.DependencyInjection.IServiceCollection Microsoft.AspNetCore.Builder.HeaderPropagationApplicationBuilderExtensions Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationContext -Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationContext.HeaderPropagationContext() -> void Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationContext.HeaderName.get -> string! +Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationContext.HeaderPropagationContext() -> void Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationContext.HeaderPropagationContext(Microsoft.AspNetCore.Http.HttpContext! httpContext, string! headerName, Microsoft.Extensions.Primitives.StringValues headerValue) -> void Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationContext.HeaderValue.get -> Microsoft.Extensions.Primitives.StringValues Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationContext.HttpContext.get -> Microsoft.AspNetCore.Http.HttpContext! @@ -57,6 +56,7 @@ Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationMessageHandlerOptions.He Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationMessageHandlerOptions.Headers.get -> Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationMessageHandlerEntryCollection! Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationMessageHandlerOptions.Headers.set -> void Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationMiddleware +Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationMiddleware.HeaderPropagationMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options, Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationValues! values) -> void Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext! context) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationOptions Microsoft.AspNetCore.HeaderPropagation.HeaderPropagationOptions.HeaderPropagationOptions() -> void diff --git a/src/Middleware/HealthChecks/src/PublicAPI.Shipped.txt b/src/Middleware/HealthChecks/src/PublicAPI.Shipped.txt index 073ef6120057..8160d1ee3307 100644 --- a/src/Middleware/HealthChecks/src/PublicAPI.Shipped.txt +++ b/src/Middleware/HealthChecks/src/PublicAPI.Shipped.txt @@ -1,5 +1,4 @@ #nullable enable -Microsoft.AspNetCore.Diagnostics.HealthChecks.HealthCheckMiddleware.HealthCheckMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! healthCheckOptions, Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckService! healthCheckService) -> void ~Microsoft.AspNetCore.Diagnostics.HealthChecks.HealthCheckMiddleware.InvokeAsync(Microsoft.AspNetCore.Http.HttpContext httpContext) -> System.Threading.Tasks.Task ~static Microsoft.AspNetCore.Builder.HealthCheckApplicationBuilderExtensions.UseHealthChecks(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, Microsoft.AspNetCore.Http.PathString path) -> Microsoft.AspNetCore.Builder.IApplicationBuilder ~static Microsoft.AspNetCore.Builder.HealthCheckApplicationBuilderExtensions.UseHealthChecks(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, Microsoft.AspNetCore.Http.PathString path, int port) -> Microsoft.AspNetCore.Builder.IApplicationBuilder @@ -12,6 +11,7 @@ Microsoft.AspNetCore.Diagnostics.HealthChecks.HealthCheckMiddleware.HealthCheckM Microsoft.AspNetCore.Builder.HealthCheckApplicationBuilderExtensions Microsoft.AspNetCore.Builder.HealthCheckEndpointRouteBuilderExtensions Microsoft.AspNetCore.Diagnostics.HealthChecks.HealthCheckMiddleware +Microsoft.AspNetCore.Diagnostics.HealthChecks.HealthCheckMiddleware.HealthCheckMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! healthCheckOptions, Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckService! healthCheckService) -> void Microsoft.AspNetCore.Diagnostics.HealthChecks.HealthCheckMiddleware.InvokeAsync(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Diagnostics.HealthChecks.HealthCheckOptions Microsoft.AspNetCore.Diagnostics.HealthChecks.HealthCheckOptions.AllowCachingResponses.get -> bool diff --git a/src/Middleware/HttpLogging/src/PublicAPI.Shipped.txt b/src/Middleware/HttpLogging/src/PublicAPI.Shipped.txt index 27a1cc693a13..3d1a57715e16 100644 --- a/src/Middleware/HttpLogging/src/PublicAPI.Shipped.txt +++ b/src/Middleware/HttpLogging/src/PublicAPI.Shipped.txt @@ -38,6 +38,7 @@ Microsoft.AspNetCore.HttpLogging.MediaTypeOptions.AddText(string! contentType) - Microsoft.AspNetCore.HttpLogging.MediaTypeOptions.AddText(string! contentType, System.Text.Encoding! encoding) -> void Microsoft.AspNetCore.HttpLogging.MediaTypeOptions.Clear() -> void Microsoft.AspNetCore.HttpLogging.W3CLoggerOptions +Microsoft.AspNetCore.HttpLogging.W3CLoggerOptions.AdditionalRequestHeaders.get -> System.Collections.Generic.ISet! Microsoft.AspNetCore.HttpLogging.W3CLoggerOptions.FileName.get -> string! Microsoft.AspNetCore.HttpLogging.W3CLoggerOptions.FileName.set -> void Microsoft.AspNetCore.HttpLogging.W3CLoggerOptions.FileSizeLimit.get -> int? diff --git a/src/Middleware/HttpLogging/src/PublicAPI.Unshipped.txt b/src/Middleware/HttpLogging/src/PublicAPI.Unshipped.txt index 3f0003737c4b..7dc5c58110bf 100644 --- a/src/Middleware/HttpLogging/src/PublicAPI.Unshipped.txt +++ b/src/Middleware/HttpLogging/src/PublicAPI.Unshipped.txt @@ -1,2 +1 @@ #nullable enable -Microsoft.AspNetCore.HttpLogging.W3CLoggerOptions.AdditionalRequestHeaders.get -> System.Collections.Generic.ISet! diff --git a/src/Middleware/HttpOverrides/src/PublicAPI.Shipped.txt b/src/Middleware/HttpOverrides/src/PublicAPI.Shipped.txt index e46020e38ba2..6885f2a777e2 100644 --- a/src/Middleware/HttpOverrides/src/PublicAPI.Shipped.txt +++ b/src/Middleware/HttpOverrides/src/PublicAPI.Shipped.txt @@ -1,11 +1,8 @@ #nullable enable -Microsoft.AspNetCore.HttpOverrides.CertificateForwardingMiddleware.CertificateForwardingMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.Extensions.Options.IOptions! options) -> void ~Microsoft.AspNetCore.HttpOverrides.CertificateForwardingMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext httpContext) -> System.Threading.Tasks.Task ~Microsoft.AspNetCore.HttpOverrides.CertificateForwardingOptions.HeaderConverter -> System.Func ~Microsoft.AspNetCore.HttpOverrides.ForwardedHeadersMiddleware.ApplyForwarders(Microsoft.AspNetCore.Http.HttpContext context) -> void -Microsoft.AspNetCore.HttpOverrides.ForwardedHeadersMiddleware.ForwardedHeadersMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.Extensions.Options.IOptions! options) -> void ~Microsoft.AspNetCore.HttpOverrides.ForwardedHeadersMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext context) -> System.Threading.Tasks.Task -Microsoft.AspNetCore.HttpOverrides.HttpMethodOverrideMiddleware.HttpMethodOverrideMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options) -> void ~Microsoft.AspNetCore.HttpOverrides.HttpMethodOverrideMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext context) -> System.Threading.Tasks.Task ~Microsoft.AspNetCore.HttpOverrides.IPNetwork.Contains(System.Net.IPAddress address) -> bool ~Microsoft.AspNetCore.HttpOverrides.IPNetwork.IPNetwork(System.Net.IPAddress prefix, int prefixLength) -> void @@ -54,6 +51,7 @@ Microsoft.AspNetCore.Builder.HttpMethodOverrideOptions.FormFieldName.get -> stri Microsoft.AspNetCore.Builder.HttpMethodOverrideOptions.FormFieldName.set -> void Microsoft.AspNetCore.Builder.HttpMethodOverrideOptions.HttpMethodOverrideOptions() -> void Microsoft.AspNetCore.HttpOverrides.CertificateForwardingMiddleware +Microsoft.AspNetCore.HttpOverrides.CertificateForwardingMiddleware.CertificateForwardingMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.HttpOverrides.CertificateForwardingMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.HttpOverrides.CertificateForwardingOptions Microsoft.AspNetCore.HttpOverrides.CertificateForwardingOptions.CertificateForwardingOptions() -> void @@ -69,8 +67,10 @@ Microsoft.AspNetCore.HttpOverrides.ForwardedHeaders.XForwardedProto = 4 -> Micro Microsoft.AspNetCore.HttpOverrides.ForwardedHeadersDefaults Microsoft.AspNetCore.HttpOverrides.ForwardedHeadersMiddleware Microsoft.AspNetCore.HttpOverrides.ForwardedHeadersMiddleware.ApplyForwarders(Microsoft.AspNetCore.Http.HttpContext! context) -> void +Microsoft.AspNetCore.HttpOverrides.ForwardedHeadersMiddleware.ForwardedHeadersMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.HttpOverrides.ForwardedHeadersMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext! context) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.HttpOverrides.HttpMethodOverrideMiddleware +Microsoft.AspNetCore.HttpOverrides.HttpMethodOverrideMiddleware.HttpMethodOverrideMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.HttpOverrides.HttpMethodOverrideMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext! context) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.HttpOverrides.IPNetwork Microsoft.AspNetCore.HttpOverrides.IPNetwork.Contains(System.Net.IPAddress! address) -> bool diff --git a/src/Middleware/HttpsPolicy/src/PublicAPI.Shipped.txt b/src/Middleware/HttpsPolicy/src/PublicAPI.Shipped.txt index 2864766cbe7b..36a534c88579 100644 --- a/src/Middleware/HttpsPolicy/src/PublicAPI.Shipped.txt +++ b/src/Middleware/HttpsPolicy/src/PublicAPI.Shipped.txt @@ -1,10 +1,6 @@ #nullable enable -Microsoft.AspNetCore.HttpsPolicy.HstsMiddleware.HstsMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options) -> void -Microsoft.AspNetCore.HttpsPolicy.HstsMiddleware.HstsMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void ~Microsoft.AspNetCore.HttpsPolicy.HstsMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext context) -> System.Threading.Tasks.Task ~Microsoft.AspNetCore.HttpsPolicy.HstsOptions.ExcludedHosts.get -> System.Collections.Generic.IList -Microsoft.AspNetCore.HttpsPolicy.HttpsRedirectionMiddleware.HttpsRedirectionMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Configuration.IConfiguration! config, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void -Microsoft.AspNetCore.HttpsPolicy.HttpsRedirectionMiddleware.HttpsRedirectionMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Configuration.IConfiguration! config, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.AspNetCore.Hosting.Server.Features.IServerAddressesFeature! serverAddressesFeature) -> void ~Microsoft.AspNetCore.HttpsPolicy.HttpsRedirectionMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext context) -> System.Threading.Tasks.Task ~static Microsoft.AspNetCore.Builder.HstsBuilderExtensions.UseHsts(this Microsoft.AspNetCore.Builder.IApplicationBuilder app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder ~static Microsoft.AspNetCore.Builder.HstsServicesExtensions.AddHsts(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Action configureOptions) -> Microsoft.Extensions.DependencyInjection.IServiceCollection @@ -15,6 +11,8 @@ Microsoft.AspNetCore.Builder.HstsServicesExtensions Microsoft.AspNetCore.Builder.HttpsPolicyBuilderExtensions Microsoft.AspNetCore.Builder.HttpsRedirectionServicesExtensions Microsoft.AspNetCore.HttpsPolicy.HstsMiddleware +Microsoft.AspNetCore.HttpsPolicy.HstsMiddleware.HstsMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options) -> void +Microsoft.AspNetCore.HttpsPolicy.HstsMiddleware.HstsMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void Microsoft.AspNetCore.HttpsPolicy.HstsMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext! context) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.HttpsPolicy.HstsOptions Microsoft.AspNetCore.HttpsPolicy.HstsOptions.ExcludedHosts.get -> System.Collections.Generic.IList! @@ -26,6 +24,8 @@ Microsoft.AspNetCore.HttpsPolicy.HstsOptions.MaxAge.set -> void Microsoft.AspNetCore.HttpsPolicy.HstsOptions.Preload.get -> bool Microsoft.AspNetCore.HttpsPolicy.HstsOptions.Preload.set -> void Microsoft.AspNetCore.HttpsPolicy.HttpsRedirectionMiddleware +Microsoft.AspNetCore.HttpsPolicy.HttpsRedirectionMiddleware.HttpsRedirectionMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Configuration.IConfiguration! config, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void +Microsoft.AspNetCore.HttpsPolicy.HttpsRedirectionMiddleware.HttpsRedirectionMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Configuration.IConfiguration! config, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.AspNetCore.Hosting.Server.Features.IServerAddressesFeature! serverAddressesFeature) -> void Microsoft.AspNetCore.HttpsPolicy.HttpsRedirectionMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext! context) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.HttpsPolicy.HttpsRedirectionOptions Microsoft.AspNetCore.HttpsPolicy.HttpsRedirectionOptions.HttpsPort.get -> int? diff --git a/src/Middleware/Localization/src/PublicAPI.Shipped.txt b/src/Middleware/Localization/src/PublicAPI.Shipped.txt index d6439fd4a9c6..d33ef8681f7c 100644 --- a/src/Middleware/Localization/src/PublicAPI.Shipped.txt +++ b/src/Middleware/Localization/src/PublicAPI.Shipped.txt @@ -21,7 +21,6 @@ ~Microsoft.AspNetCore.Localization.RequestCultureFeature.RequestCulture.get -> Microsoft.AspNetCore.Localization.RequestCulture ~Microsoft.AspNetCore.Localization.RequestCultureFeature.RequestCultureFeature(Microsoft.AspNetCore.Localization.RequestCulture requestCulture, Microsoft.AspNetCore.Localization.IRequestCultureProvider provider) -> void ~Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext context) -> System.Threading.Tasks.Task -Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.RequestLocalizationMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void ~override Microsoft.AspNetCore.Localization.AcceptLanguageHeaderRequestCultureProvider.DetermineProviderCultureResult(Microsoft.AspNetCore.Http.HttpContext httpContext) -> System.Threading.Tasks.Task ~override Microsoft.AspNetCore.Localization.CookieRequestCultureProvider.DetermineProviderCultureResult(Microsoft.AspNetCore.Http.HttpContext httpContext) -> System.Threading.Tasks.Task ~override Microsoft.AspNetCore.Localization.CustomRequestCultureProvider.DetermineProviderCultureResult(Microsoft.AspNetCore.Http.HttpContext httpContext) -> System.Threading.Tasks.Task @@ -104,6 +103,7 @@ Microsoft.AspNetCore.Localization.RequestCultureProvider.Options.set -> void Microsoft.AspNetCore.Localization.RequestCultureProvider.RequestCultureProvider() -> void Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext! context) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.RequestLocalizationMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void Microsoft.Extensions.DependencyInjection.RequestLocalizationServiceCollectionExtensions override Microsoft.AspNetCore.Localization.AcceptLanguageHeaderRequestCultureProvider.DetermineProviderCultureResult(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! override Microsoft.AspNetCore.Localization.CookieRequestCultureProvider.DetermineProviderCultureResult(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! diff --git a/src/Middleware/OutputCaching/src/PublicAPI.Shipped.txt b/src/Middleware/OutputCaching/src/PublicAPI.Shipped.txt index 7dc5c58110bf..b22188c3c386 100644 --- a/src/Middleware/OutputCaching/src/PublicAPI.Shipped.txt +++ b/src/Middleware/OutputCaching/src/PublicAPI.Shipped.txt @@ -1 +1,107 @@ #nullable enable +Microsoft.AspNetCore.Builder.OutputCacheApplicationBuilderExtensions +Microsoft.AspNetCore.OutputCaching.CacheVaryByRules +Microsoft.AspNetCore.OutputCaching.CacheVaryByRules.CacheKeyPrefix.get -> string? +Microsoft.AspNetCore.OutputCaching.CacheVaryByRules.CacheKeyPrefix.set -> void +Microsoft.AspNetCore.OutputCaching.CacheVaryByRules.CacheVaryByRules() -> void +Microsoft.AspNetCore.OutputCaching.CacheVaryByRules.HeaderNames.get -> Microsoft.Extensions.Primitives.StringValues +Microsoft.AspNetCore.OutputCaching.CacheVaryByRules.HeaderNames.set -> void +Microsoft.AspNetCore.OutputCaching.CacheVaryByRules.QueryKeys.get -> Microsoft.Extensions.Primitives.StringValues +Microsoft.AspNetCore.OutputCaching.CacheVaryByRules.QueryKeys.set -> void +Microsoft.AspNetCore.OutputCaching.CacheVaryByRules.RouteValueNames.get -> Microsoft.Extensions.Primitives.StringValues +Microsoft.AspNetCore.OutputCaching.CacheVaryByRules.RouteValueNames.set -> void +Microsoft.AspNetCore.OutputCaching.CacheVaryByRules.VaryByHost.get -> bool +Microsoft.AspNetCore.OutputCaching.CacheVaryByRules.VaryByHost.set -> void +Microsoft.AspNetCore.OutputCaching.CacheVaryByRules.VaryByValues.get -> System.Collections.Generic.IDictionary! +Microsoft.AspNetCore.OutputCaching.IOutputCacheFeature +Microsoft.AspNetCore.OutputCaching.IOutputCacheFeature.Context.get -> Microsoft.AspNetCore.OutputCaching.OutputCacheContext! +Microsoft.AspNetCore.OutputCaching.IOutputCachePolicy +Microsoft.AspNetCore.OutputCaching.IOutputCachePolicy.CacheRequestAsync(Microsoft.AspNetCore.OutputCaching.OutputCacheContext! context, System.Threading.CancellationToken cancellation) -> System.Threading.Tasks.ValueTask +Microsoft.AspNetCore.OutputCaching.IOutputCachePolicy.ServeFromCacheAsync(Microsoft.AspNetCore.OutputCaching.OutputCacheContext! context, System.Threading.CancellationToken cancellation) -> System.Threading.Tasks.ValueTask +Microsoft.AspNetCore.OutputCaching.IOutputCachePolicy.ServeResponseAsync(Microsoft.AspNetCore.OutputCaching.OutputCacheContext! context, System.Threading.CancellationToken cancellation) -> System.Threading.Tasks.ValueTask +Microsoft.AspNetCore.OutputCaching.IOutputCacheStore +Microsoft.AspNetCore.OutputCaching.IOutputCacheStore.EvictByTagAsync(string! tag, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask +Microsoft.AspNetCore.OutputCaching.IOutputCacheStore.GetAsync(string! key, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask +Microsoft.AspNetCore.OutputCaching.IOutputCacheStore.SetAsync(string! key, byte[]! value, string![]? tags, System.TimeSpan validFor, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask +Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute +Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.Duration.get -> int +Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.Duration.init -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.NoStore.get -> bool +Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.NoStore.init -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.OutputCacheAttribute() -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.PolicyName.get -> string? +Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.PolicyName.init -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.VaryByHeaderNames.get -> string![]? +Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.VaryByHeaderNames.init -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.VaryByQueryKeys.get -> string![]? +Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.VaryByQueryKeys.init -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.VaryByRouteValueNames.get -> string![]? +Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.VaryByRouteValueNames.init -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheContext +Microsoft.AspNetCore.OutputCaching.OutputCacheContext.AllowCacheLookup.get -> bool +Microsoft.AspNetCore.OutputCaching.OutputCacheContext.AllowCacheLookup.set -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheContext.AllowCacheStorage.get -> bool +Microsoft.AspNetCore.OutputCaching.OutputCacheContext.AllowCacheStorage.set -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheContext.AllowLocking.get -> bool +Microsoft.AspNetCore.OutputCaching.OutputCacheContext.AllowLocking.set -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheContext.CacheVaryByRules.get -> Microsoft.AspNetCore.OutputCaching.CacheVaryByRules! +Microsoft.AspNetCore.OutputCaching.OutputCacheContext.EnableOutputCaching.get -> bool +Microsoft.AspNetCore.OutputCaching.OutputCacheContext.EnableOutputCaching.set -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheContext.HttpContext.get -> Microsoft.AspNetCore.Http.HttpContext! +Microsoft.AspNetCore.OutputCaching.OutputCacheContext.HttpContext.init -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheContext.OutputCacheContext() -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheContext.ResponseExpirationTimeSpan.get -> System.TimeSpan? +Microsoft.AspNetCore.OutputCaching.OutputCacheContext.ResponseExpirationTimeSpan.set -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheContext.ResponseTime.get -> System.DateTimeOffset? +Microsoft.AspNetCore.OutputCaching.OutputCacheContext.ResponseTime.set -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheContext.Tags.get -> System.Collections.Generic.HashSet! +Microsoft.AspNetCore.OutputCaching.OutputCacheOptions +Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.AddBasePolicy(Microsoft.AspNetCore.OutputCaching.IOutputCachePolicy! policy) -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.AddBasePolicy(System.Action! build) -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.AddBasePolicy(System.Action! build, bool excludeDefaultPolicy) -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.AddPolicy(string! name, Microsoft.AspNetCore.OutputCaching.IOutputCachePolicy! policy) -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.AddPolicy(string! name, System.Action! build) -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.AddPolicy(string! name, System.Action! build, bool excludeDefaultPolicy) -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.ApplicationServices.get -> System.IServiceProvider! +Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.DefaultExpirationTimeSpan.get -> System.TimeSpan +Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.DefaultExpirationTimeSpan.set -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.MaximumBodySize.get -> long +Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.MaximumBodySize.set -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.OutputCacheOptions() -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.SizeLimit.get -> long +Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.SizeLimit.set -> void +Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.UseCaseSensitivePaths.get -> bool +Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.UseCaseSensitivePaths.set -> void +Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder +Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.AddPolicy(System.Type! policyType) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! +Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.AddPolicy() -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! +Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.Cache() -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! +Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.Expire(System.TimeSpan expiration) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! +Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.NoCache() -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! +Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.SetCacheKeyPrefix(string! keyPrefix) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! +Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.SetCacheKeyPrefix(System.Func! keyPrefix) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! +Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.SetCacheKeyPrefix(System.Func>! keyPrefix) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! +Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.SetLocking(bool enabled) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! +Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.SetVaryByHeader(string! headerName, params string![]! headerNames) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! +Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.SetVaryByHeader(string![]! headerNames) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! +Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.SetVaryByHost(bool enabled) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! +Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.SetVaryByQuery(string! queryKey, params string![]! queryKeys) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! +Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.SetVaryByQuery(string![]! queryKeys) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! +Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.SetVaryByRouteValue(string! routeValueName, params string![]! routeValueNames) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! +Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.SetVaryByRouteValue(string![]! routeValueNames) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! +Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.Tag(params string![]! tags) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! +Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.VaryByValue(string! key, string! value) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! +Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.VaryByValue(System.Func>! varyBy) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! +Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.VaryByValue(System.Func>>! varyBy) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! +Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.With(System.Func! predicate) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! +Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.With(System.Func>! predicate) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! +Microsoft.Extensions.DependencyInjection.OutputCacheConventionBuilderExtensions +Microsoft.Extensions.DependencyInjection.OutputCacheServiceCollectionExtensions +static Microsoft.AspNetCore.Builder.OutputCacheApplicationBuilderExtensions.UseOutputCache(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! +static Microsoft.Extensions.DependencyInjection.OutputCacheConventionBuilderExtensions.CacheOutput(this TBuilder builder) -> TBuilder +static Microsoft.Extensions.DependencyInjection.OutputCacheConventionBuilderExtensions.CacheOutput(this TBuilder builder, Microsoft.AspNetCore.OutputCaching.IOutputCachePolicy! policy) -> TBuilder +static Microsoft.Extensions.DependencyInjection.OutputCacheConventionBuilderExtensions.CacheOutput(this TBuilder builder, string! policyName) -> TBuilder +static Microsoft.Extensions.DependencyInjection.OutputCacheConventionBuilderExtensions.CacheOutput(this TBuilder builder, System.Action! policy) -> TBuilder +static Microsoft.Extensions.DependencyInjection.OutputCacheConventionBuilderExtensions.CacheOutput(this TBuilder builder, System.Action! policy, bool excludeDefaultPolicy) -> TBuilder +static Microsoft.Extensions.DependencyInjection.OutputCacheServiceCollectionExtensions.AddOutputCache(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +static Microsoft.Extensions.DependencyInjection.OutputCacheServiceCollectionExtensions.AddOutputCache(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action! configureOptions) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! diff --git a/src/Middleware/OutputCaching/src/PublicAPI.Unshipped.txt b/src/Middleware/OutputCaching/src/PublicAPI.Unshipped.txt index 7dd76cae6dcc..7dc5c58110bf 100644 --- a/src/Middleware/OutputCaching/src/PublicAPI.Unshipped.txt +++ b/src/Middleware/OutputCaching/src/PublicAPI.Unshipped.txt @@ -1,107 +1 @@ #nullable enable -Microsoft.AspNetCore.Builder.OutputCacheApplicationBuilderExtensions -Microsoft.AspNetCore.OutputCaching.CacheVaryByRules -Microsoft.AspNetCore.OutputCaching.CacheVaryByRules.CacheKeyPrefix.get -> string? -Microsoft.AspNetCore.OutputCaching.CacheVaryByRules.CacheKeyPrefix.set -> void -Microsoft.AspNetCore.OutputCaching.CacheVaryByRules.CacheVaryByRules() -> void -Microsoft.AspNetCore.OutputCaching.CacheVaryByRules.HeaderNames.get -> Microsoft.Extensions.Primitives.StringValues -Microsoft.AspNetCore.OutputCaching.CacheVaryByRules.HeaderNames.set -> void -Microsoft.AspNetCore.OutputCaching.CacheVaryByRules.QueryKeys.get -> Microsoft.Extensions.Primitives.StringValues -Microsoft.AspNetCore.OutputCaching.CacheVaryByRules.QueryKeys.set -> void -Microsoft.AspNetCore.OutputCaching.CacheVaryByRules.RouteValueNames.get -> Microsoft.Extensions.Primitives.StringValues -Microsoft.AspNetCore.OutputCaching.CacheVaryByRules.RouteValueNames.set -> void -Microsoft.AspNetCore.OutputCaching.CacheVaryByRules.VaryByHost.get -> bool -Microsoft.AspNetCore.OutputCaching.CacheVaryByRules.VaryByHost.set -> void -Microsoft.AspNetCore.OutputCaching.CacheVaryByRules.VaryByValues.get -> System.Collections.Generic.IDictionary! -Microsoft.AspNetCore.OutputCaching.IOutputCacheFeature -Microsoft.AspNetCore.OutputCaching.IOutputCacheFeature.Context.get -> Microsoft.AspNetCore.OutputCaching.OutputCacheContext! -Microsoft.AspNetCore.OutputCaching.IOutputCachePolicy.CacheRequestAsync(Microsoft.AspNetCore.OutputCaching.OutputCacheContext! context, System.Threading.CancellationToken cancellation) -> System.Threading.Tasks.ValueTask -Microsoft.AspNetCore.OutputCaching.IOutputCachePolicy.ServeFromCacheAsync(Microsoft.AspNetCore.OutputCaching.OutputCacheContext! context, System.Threading.CancellationToken cancellation) -> System.Threading.Tasks.ValueTask -Microsoft.AspNetCore.OutputCaching.IOutputCachePolicy.ServeResponseAsync(Microsoft.AspNetCore.OutputCaching.OutputCacheContext! context, System.Threading.CancellationToken cancellation) -> System.Threading.Tasks.ValueTask -Microsoft.AspNetCore.OutputCaching.IOutputCacheStore -Microsoft.AspNetCore.OutputCaching.IOutputCacheStore.EvictByTagAsync(string! tag, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask -Microsoft.AspNetCore.OutputCaching.IOutputCachePolicy -Microsoft.AspNetCore.OutputCaching.IOutputCacheStore.GetAsync(string! key, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask -Microsoft.AspNetCore.OutputCaching.IOutputCacheStore.SetAsync(string! key, byte[]! value, string![]? tags, System.TimeSpan validFor, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask -Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute -Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.Duration.get -> int -Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.Duration.init -> void -Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.NoStore.get -> bool -Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.NoStore.init -> void -Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.OutputCacheAttribute() -> void -Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.PolicyName.get -> string? -Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.PolicyName.init -> void -Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.VaryByHeaderNames.get -> string![]? -Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.VaryByHeaderNames.init -> void -Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.VaryByQueryKeys.get -> string![]? -Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.VaryByQueryKeys.init -> void -Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.VaryByRouteValueNames.get -> string![]? -Microsoft.AspNetCore.OutputCaching.OutputCacheAttribute.VaryByRouteValueNames.init -> void -Microsoft.AspNetCore.OutputCaching.OutputCacheContext.EnableOutputCaching.get -> bool -Microsoft.AspNetCore.OutputCaching.OutputCacheContext.EnableOutputCaching.set -> void -Microsoft.AspNetCore.OutputCaching.OutputCacheContext.HttpContext.init -> void -Microsoft.AspNetCore.OutputCaching.OutputCacheContext.OutputCacheContext() -> void -Microsoft.AspNetCore.OutputCaching.OutputCacheContext.ResponseTime.set -> void -Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.AddBasePolicy(Microsoft.AspNetCore.OutputCaching.IOutputCachePolicy! policy) -> void -Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.AddBasePolicy(System.Action! build) -> void -Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.AddBasePolicy(System.Action! build, bool excludeDefaultPolicy) -> void -Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.AddPolicy(string! name, Microsoft.AspNetCore.OutputCaching.IOutputCachePolicy! policy) -> void -Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.AddPolicy(string! name, System.Action! build) -> void -Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.AddPolicy(string! name, System.Action! build, bool excludeDefaultPolicy) -> void -Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder -Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.AddPolicy(System.Type! policyType) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! -Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.AddPolicy() -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! -Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.Cache() -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! -Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.Expire(System.TimeSpan expiration) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! -Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.NoCache() -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! -Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.SetCacheKeyPrefix(string! keyPrefix) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! -Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.SetCacheKeyPrefix(System.Func! keyPrefix) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! -Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.SetCacheKeyPrefix(System.Func>! keyPrefix) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! -Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.SetLocking(bool enabled) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! -Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.SetVaryByHeader(string! headerName, params string![]! headerNames) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! -Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.SetVaryByHeader(string![]! headerNames) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! -Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.SetVaryByHost(bool enabled) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! -Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.SetVaryByQuery(string! queryKey, params string![]! queryKeys) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! -Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.SetVaryByQuery(string![]! queryKeys) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! -Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.SetVaryByRouteValue(string! routeValueName, params string![]! routeValueNames) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! -Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.SetVaryByRouteValue(string![]! routeValueNames) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! -Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.Tag(params string![]! tags) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! -Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.VaryByValue(string! key, string! value) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! -Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.VaryByValue(System.Func>! varyBy) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! -Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.VaryByValue(System.Func>>! varyBy) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! -Microsoft.AspNetCore.OutputCaching.OutputCacheContext -Microsoft.AspNetCore.OutputCaching.OutputCacheContext.AllowCacheLookup.get -> bool -Microsoft.AspNetCore.OutputCaching.OutputCacheContext.AllowCacheLookup.set -> void -Microsoft.AspNetCore.OutputCaching.OutputCacheContext.AllowCacheStorage.get -> bool -Microsoft.AspNetCore.OutputCaching.OutputCacheContext.AllowCacheStorage.set -> void -Microsoft.AspNetCore.OutputCaching.OutputCacheContext.AllowLocking.get -> bool -Microsoft.AspNetCore.OutputCaching.OutputCacheContext.AllowLocking.set -> void -Microsoft.AspNetCore.OutputCaching.OutputCacheContext.ResponseExpirationTimeSpan.get -> System.TimeSpan? -Microsoft.AspNetCore.OutputCaching.OutputCacheContext.ResponseExpirationTimeSpan.set -> void -Microsoft.AspNetCore.OutputCaching.OutputCacheContext.ResponseTime.get -> System.DateTimeOffset? -Microsoft.AspNetCore.OutputCaching.OutputCacheOptions -Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.ApplicationServices.get -> System.IServiceProvider! -Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.DefaultExpirationTimeSpan.get -> System.TimeSpan -Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.DefaultExpirationTimeSpan.set -> void -Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.MaximumBodySize.get -> long -Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.MaximumBodySize.set -> void -Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.OutputCacheOptions() -> void -Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.SizeLimit.get -> long -Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.SizeLimit.set -> void -Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.UseCaseSensitivePaths.get -> bool -Microsoft.AspNetCore.OutputCaching.OutputCacheOptions.UseCaseSensitivePaths.set -> void -Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.With(System.Func! predicate) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! -Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder.With(System.Func>! predicate) -> Microsoft.AspNetCore.OutputCaching.OutputCachePolicyBuilder! -Microsoft.Extensions.DependencyInjection.OutputCacheConventionBuilderExtensions -Microsoft.Extensions.DependencyInjection.OutputCacheServiceCollectionExtensions -static Microsoft.AspNetCore.Builder.OutputCacheApplicationBuilderExtensions.UseOutputCache(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! -static Microsoft.Extensions.DependencyInjection.OutputCacheConventionBuilderExtensions.CacheOutput(this TBuilder builder) -> TBuilder -static Microsoft.Extensions.DependencyInjection.OutputCacheConventionBuilderExtensions.CacheOutput(this TBuilder builder, Microsoft.AspNetCore.OutputCaching.IOutputCachePolicy! policy) -> TBuilder -static Microsoft.Extensions.DependencyInjection.OutputCacheConventionBuilderExtensions.CacheOutput(this TBuilder builder, string! policyName) -> TBuilder -static Microsoft.Extensions.DependencyInjection.OutputCacheConventionBuilderExtensions.CacheOutput(this TBuilder builder, System.Action! policy) -> TBuilder -static Microsoft.Extensions.DependencyInjection.OutputCacheConventionBuilderExtensions.CacheOutput(this TBuilder builder, System.Action! policy, bool excludeDefaultPolicy) -> TBuilder -static Microsoft.Extensions.DependencyInjection.OutputCacheServiceCollectionExtensions.AddOutputCache(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! -static Microsoft.Extensions.DependencyInjection.OutputCacheServiceCollectionExtensions.AddOutputCache(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action! configureOptions) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! -Microsoft.AspNetCore.OutputCaching.OutputCacheContext.CacheVaryByRules.get -> Microsoft.AspNetCore.OutputCaching.CacheVaryByRules! -Microsoft.AspNetCore.OutputCaching.OutputCacheContext.HttpContext.get -> Microsoft.AspNetCore.Http.HttpContext! -Microsoft.AspNetCore.OutputCaching.OutputCacheContext.Tags.get -> System.Collections.Generic.HashSet! diff --git a/src/Middleware/RateLimiting/src/PublicAPI.Shipped.txt b/src/Middleware/RateLimiting/src/PublicAPI.Shipped.txt index ab058de62d44..f7d3b893664d 100644 --- a/src/Middleware/RateLimiting/src/PublicAPI.Shipped.txt +++ b/src/Middleware/RateLimiting/src/PublicAPI.Shipped.txt @@ -1 +1,40 @@ -#nullable enable +#nullable enable +Microsoft.AspNetCore.Builder.RateLimiterApplicationBuilderExtensions +Microsoft.AspNetCore.Builder.RateLimiterEndpointConventionBuilderExtensions +Microsoft.AspNetCore.Builder.RateLimiterServiceCollectionExtensions +Microsoft.AspNetCore.RateLimiting.DisableRateLimitingAttribute +Microsoft.AspNetCore.RateLimiting.DisableRateLimitingAttribute.DisableRateLimitingAttribute() -> void +Microsoft.AspNetCore.RateLimiting.EnableRateLimitingAttribute +Microsoft.AspNetCore.RateLimiting.EnableRateLimitingAttribute.EnableRateLimitingAttribute(string! policyName) -> void +Microsoft.AspNetCore.RateLimiting.EnableRateLimitingAttribute.PolicyName.get -> string? +Microsoft.AspNetCore.RateLimiting.IRateLimiterPolicy +Microsoft.AspNetCore.RateLimiting.IRateLimiterPolicy.GetPartition(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.RateLimiting.RateLimitPartition +Microsoft.AspNetCore.RateLimiting.IRateLimiterPolicy.OnRejected.get -> System.Func? +Microsoft.AspNetCore.RateLimiting.OnRejectedContext +Microsoft.AspNetCore.RateLimiting.OnRejectedContext.HttpContext.get -> Microsoft.AspNetCore.Http.HttpContext! +Microsoft.AspNetCore.RateLimiting.OnRejectedContext.HttpContext.init -> void +Microsoft.AspNetCore.RateLimiting.OnRejectedContext.Lease.get -> System.Threading.RateLimiting.RateLimitLease! +Microsoft.AspNetCore.RateLimiting.OnRejectedContext.Lease.init -> void +Microsoft.AspNetCore.RateLimiting.OnRejectedContext.OnRejectedContext() -> void +Microsoft.AspNetCore.RateLimiting.RateLimiterOptions +Microsoft.AspNetCore.RateLimiting.RateLimiterOptions.AddPolicy(string! policyName) -> Microsoft.AspNetCore.RateLimiting.RateLimiterOptions! +Microsoft.AspNetCore.RateLimiting.RateLimiterOptions.AddPolicy(string! policyName, Microsoft.AspNetCore.RateLimiting.IRateLimiterPolicy! policy) -> Microsoft.AspNetCore.RateLimiting.RateLimiterOptions! +Microsoft.AspNetCore.RateLimiting.RateLimiterOptions.AddPolicy(string! policyName, System.Func>! partitioner) -> Microsoft.AspNetCore.RateLimiting.RateLimiterOptions! +Microsoft.AspNetCore.RateLimiting.RateLimiterOptions.GlobalLimiter.get -> System.Threading.RateLimiting.PartitionedRateLimiter? +Microsoft.AspNetCore.RateLimiting.RateLimiterOptions.GlobalLimiter.set -> void +Microsoft.AspNetCore.RateLimiting.RateLimiterOptions.OnRejected.get -> System.Func? +Microsoft.AspNetCore.RateLimiting.RateLimiterOptions.OnRejected.set -> void +Microsoft.AspNetCore.RateLimiting.RateLimiterOptions.RateLimiterOptions() -> void +Microsoft.AspNetCore.RateLimiting.RateLimiterOptions.RejectionStatusCode.get -> int +Microsoft.AspNetCore.RateLimiting.RateLimiterOptions.RejectionStatusCode.set -> void +Microsoft.AspNetCore.RateLimiting.RateLimiterOptionsExtensions +static Microsoft.AspNetCore.Builder.RateLimiterApplicationBuilderExtensions.UseRateLimiter(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! +static Microsoft.AspNetCore.Builder.RateLimiterApplicationBuilderExtensions.UseRateLimiter(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, Microsoft.AspNetCore.RateLimiting.RateLimiterOptions! options) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! +static Microsoft.AspNetCore.Builder.RateLimiterEndpointConventionBuilderExtensions.DisableRateLimiting(this TBuilder builder) -> TBuilder +static Microsoft.AspNetCore.Builder.RateLimiterEndpointConventionBuilderExtensions.RequireRateLimiting(this TBuilder builder, Microsoft.AspNetCore.RateLimiting.IRateLimiterPolicy! policy) -> TBuilder +static Microsoft.AspNetCore.Builder.RateLimiterEndpointConventionBuilderExtensions.RequireRateLimiting(this TBuilder builder, string! policyName) -> TBuilder +static Microsoft.AspNetCore.Builder.RateLimiterServiceCollectionExtensions.AddRateLimiter(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action! configureOptions) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +static Microsoft.AspNetCore.RateLimiting.RateLimiterOptionsExtensions.AddConcurrencyLimiter(this Microsoft.AspNetCore.RateLimiting.RateLimiterOptions! options, string! policyName, System.Action! configureOptions) -> Microsoft.AspNetCore.RateLimiting.RateLimiterOptions! +static Microsoft.AspNetCore.RateLimiting.RateLimiterOptionsExtensions.AddFixedWindowLimiter(this Microsoft.AspNetCore.RateLimiting.RateLimiterOptions! options, string! policyName, System.Action! configureOptions) -> Microsoft.AspNetCore.RateLimiting.RateLimiterOptions! +static Microsoft.AspNetCore.RateLimiting.RateLimiterOptionsExtensions.AddSlidingWindowLimiter(this Microsoft.AspNetCore.RateLimiting.RateLimiterOptions! options, string! policyName, System.Action! configureOptions) -> Microsoft.AspNetCore.RateLimiting.RateLimiterOptions! +static Microsoft.AspNetCore.RateLimiting.RateLimiterOptionsExtensions.AddTokenBucketLimiter(this Microsoft.AspNetCore.RateLimiting.RateLimiterOptions! options, string! policyName, System.Action! configureOptions) -> Microsoft.AspNetCore.RateLimiting.RateLimiterOptions! diff --git a/src/Middleware/RateLimiting/src/PublicAPI.Unshipped.txt b/src/Middleware/RateLimiting/src/PublicAPI.Unshipped.txt index 9e18f7083b21..7dc5c58110bf 100644 --- a/src/Middleware/RateLimiting/src/PublicAPI.Unshipped.txt +++ b/src/Middleware/RateLimiting/src/PublicAPI.Unshipped.txt @@ -1,39 +1 @@ -Microsoft.AspNetCore.Builder.RateLimiterApplicationBuilderExtensions -Microsoft.AspNetCore.Builder.RateLimiterEndpointConventionBuilderExtensions -Microsoft.AspNetCore.Builder.RateLimiterServiceCollectionExtensions -Microsoft.AspNetCore.RateLimiting.DisableRateLimitingAttribute -Microsoft.AspNetCore.RateLimiting.DisableRateLimitingAttribute.DisableRateLimitingAttribute() -> void -Microsoft.AspNetCore.RateLimiting.EnableRateLimitingAttribute -Microsoft.AspNetCore.RateLimiting.EnableRateLimitingAttribute.EnableRateLimitingAttribute(string! policyName) -> void -Microsoft.AspNetCore.RateLimiting.EnableRateLimitingAttribute.PolicyName.get -> string? -Microsoft.AspNetCore.RateLimiting.IRateLimiterPolicy -Microsoft.AspNetCore.RateLimiting.IRateLimiterPolicy.GetPartition(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.RateLimiting.RateLimitPartition -Microsoft.AspNetCore.RateLimiting.IRateLimiterPolicy.OnRejected.get -> System.Func? -Microsoft.AspNetCore.RateLimiting.OnRejectedContext -Microsoft.AspNetCore.RateLimiting.OnRejectedContext.HttpContext.get -> Microsoft.AspNetCore.Http.HttpContext! -Microsoft.AspNetCore.RateLimiting.OnRejectedContext.HttpContext.init -> void -Microsoft.AspNetCore.RateLimiting.OnRejectedContext.Lease.get -> System.Threading.RateLimiting.RateLimitLease! -Microsoft.AspNetCore.RateLimiting.OnRejectedContext.Lease.init -> void -Microsoft.AspNetCore.RateLimiting.OnRejectedContext.OnRejectedContext() -> void -Microsoft.AspNetCore.RateLimiting.RateLimiterOptions -Microsoft.AspNetCore.RateLimiting.RateLimiterOptions.AddPolicy(string! policyName) -> Microsoft.AspNetCore.RateLimiting.RateLimiterOptions! -Microsoft.AspNetCore.RateLimiting.RateLimiterOptions.AddPolicy(string! policyName, Microsoft.AspNetCore.RateLimiting.IRateLimiterPolicy! policy) -> Microsoft.AspNetCore.RateLimiting.RateLimiterOptions! -Microsoft.AspNetCore.RateLimiting.RateLimiterOptions.AddPolicy(string! policyName, System.Func>! partitioner) -> Microsoft.AspNetCore.RateLimiting.RateLimiterOptions! -Microsoft.AspNetCore.RateLimiting.RateLimiterOptions.GlobalLimiter.get -> System.Threading.RateLimiting.PartitionedRateLimiter? -Microsoft.AspNetCore.RateLimiting.RateLimiterOptions.GlobalLimiter.set -> void -Microsoft.AspNetCore.RateLimiting.RateLimiterOptions.OnRejected.get -> System.Func? -Microsoft.AspNetCore.RateLimiting.RateLimiterOptions.OnRejected.set -> void -Microsoft.AspNetCore.RateLimiting.RateLimiterOptions.RateLimiterOptions() -> void -Microsoft.AspNetCore.RateLimiting.RateLimiterOptions.RejectionStatusCode.get -> int -Microsoft.AspNetCore.RateLimiting.RateLimiterOptions.RejectionStatusCode.set -> void -Microsoft.AspNetCore.RateLimiting.RateLimiterOptionsExtensions -static Microsoft.AspNetCore.Builder.RateLimiterApplicationBuilderExtensions.UseRateLimiter(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! -static Microsoft.AspNetCore.Builder.RateLimiterApplicationBuilderExtensions.UseRateLimiter(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, Microsoft.AspNetCore.RateLimiting.RateLimiterOptions! options) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! -static Microsoft.AspNetCore.Builder.RateLimiterEndpointConventionBuilderExtensions.DisableRateLimiting(this TBuilder builder) -> TBuilder -static Microsoft.AspNetCore.Builder.RateLimiterEndpointConventionBuilderExtensions.RequireRateLimiting(this TBuilder builder, Microsoft.AspNetCore.RateLimiting.IRateLimiterPolicy! policy) -> TBuilder -static Microsoft.AspNetCore.Builder.RateLimiterEndpointConventionBuilderExtensions.RequireRateLimiting(this TBuilder builder, string! policyName) -> TBuilder -static Microsoft.AspNetCore.Builder.RateLimiterServiceCollectionExtensions.AddRateLimiter(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action! configureOptions) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! -static Microsoft.AspNetCore.RateLimiting.RateLimiterOptionsExtensions.AddConcurrencyLimiter(this Microsoft.AspNetCore.RateLimiting.RateLimiterOptions! options, string! policyName, System.Action! configureOptions) -> Microsoft.AspNetCore.RateLimiting.RateLimiterOptions! -static Microsoft.AspNetCore.RateLimiting.RateLimiterOptionsExtensions.AddFixedWindowLimiter(this Microsoft.AspNetCore.RateLimiting.RateLimiterOptions! options, string! policyName, System.Action! configureOptions) -> Microsoft.AspNetCore.RateLimiting.RateLimiterOptions! -static Microsoft.AspNetCore.RateLimiting.RateLimiterOptionsExtensions.AddSlidingWindowLimiter(this Microsoft.AspNetCore.RateLimiting.RateLimiterOptions! options, string! policyName, System.Action! configureOptions) -> Microsoft.AspNetCore.RateLimiting.RateLimiterOptions! -static Microsoft.AspNetCore.RateLimiting.RateLimiterOptionsExtensions.AddTokenBucketLimiter(this Microsoft.AspNetCore.RateLimiting.RateLimiterOptions! options, string! policyName, System.Action! configureOptions) -> Microsoft.AspNetCore.RateLimiting.RateLimiterOptions! +#nullable enable diff --git a/src/Middleware/RequestDecompression/src/PublicAPI.Shipped.txt b/src/Middleware/RequestDecompression/src/PublicAPI.Shipped.txt index ab058de62d44..14f9b5dc496a 100644 --- a/src/Middleware/RequestDecompression/src/PublicAPI.Shipped.txt +++ b/src/Middleware/RequestDecompression/src/PublicAPI.Shipped.txt @@ -1 +1,13 @@ -#nullable enable +#nullable enable +Microsoft.AspNetCore.Builder.RequestDecompressionBuilderExtensions +Microsoft.AspNetCore.RequestDecompression.IDecompressionProvider +Microsoft.AspNetCore.RequestDecompression.IDecompressionProvider.GetDecompressionStream(System.IO.Stream! stream) -> System.IO.Stream! +Microsoft.AspNetCore.RequestDecompression.IRequestDecompressionProvider +Microsoft.AspNetCore.RequestDecompression.IRequestDecompressionProvider.GetDecompressionStream(Microsoft.AspNetCore.Http.HttpContext! context) -> System.IO.Stream? +Microsoft.AspNetCore.RequestDecompression.RequestDecompressionOptions +Microsoft.AspNetCore.RequestDecompression.RequestDecompressionOptions.DecompressionProviders.get -> System.Collections.Generic.IDictionary! +Microsoft.AspNetCore.RequestDecompression.RequestDecompressionOptions.RequestDecompressionOptions() -> void +Microsoft.Extensions.DependencyInjection.RequestDecompressionServiceExtensions +static Microsoft.AspNetCore.Builder.RequestDecompressionBuilderExtensions.UseRequestDecompression(this Microsoft.AspNetCore.Builder.IApplicationBuilder! builder) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! +static Microsoft.Extensions.DependencyInjection.RequestDecompressionServiceExtensions.AddRequestDecompression(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +static Microsoft.Extensions.DependencyInjection.RequestDecompressionServiceExtensions.AddRequestDecompression(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action! configureOptions) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! diff --git a/src/Middleware/RequestDecompression/src/PublicAPI.Unshipped.txt b/src/Middleware/RequestDecompression/src/PublicAPI.Unshipped.txt index 14f9b5dc496a..7dc5c58110bf 100644 --- a/src/Middleware/RequestDecompression/src/PublicAPI.Unshipped.txt +++ b/src/Middleware/RequestDecompression/src/PublicAPI.Unshipped.txt @@ -1,13 +1 @@ #nullable enable -Microsoft.AspNetCore.Builder.RequestDecompressionBuilderExtensions -Microsoft.AspNetCore.RequestDecompression.IDecompressionProvider -Microsoft.AspNetCore.RequestDecompression.IDecompressionProvider.GetDecompressionStream(System.IO.Stream! stream) -> System.IO.Stream! -Microsoft.AspNetCore.RequestDecompression.IRequestDecompressionProvider -Microsoft.AspNetCore.RequestDecompression.IRequestDecompressionProvider.GetDecompressionStream(Microsoft.AspNetCore.Http.HttpContext! context) -> System.IO.Stream? -Microsoft.AspNetCore.RequestDecompression.RequestDecompressionOptions -Microsoft.AspNetCore.RequestDecompression.RequestDecompressionOptions.DecompressionProviders.get -> System.Collections.Generic.IDictionary! -Microsoft.AspNetCore.RequestDecompression.RequestDecompressionOptions.RequestDecompressionOptions() -> void -Microsoft.Extensions.DependencyInjection.RequestDecompressionServiceExtensions -static Microsoft.AspNetCore.Builder.RequestDecompressionBuilderExtensions.UseRequestDecompression(this Microsoft.AspNetCore.Builder.IApplicationBuilder! builder) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! -static Microsoft.Extensions.DependencyInjection.RequestDecompressionServiceExtensions.AddRequestDecompression(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! -static Microsoft.Extensions.DependencyInjection.RequestDecompressionServiceExtensions.AddRequestDecompression(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action! configureOptions) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! diff --git a/src/Middleware/ResponseCaching/src/PublicAPI.Shipped.txt b/src/Middleware/ResponseCaching/src/PublicAPI.Shipped.txt index 7aff9ed07479..27583d45a25f 100644 --- a/src/Middleware/ResponseCaching/src/PublicAPI.Shipped.txt +++ b/src/Middleware/ResponseCaching/src/PublicAPI.Shipped.txt @@ -1,6 +1,5 @@ #nullable enable ~Microsoft.AspNetCore.ResponseCaching.ResponseCachingMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext httpContext) -> System.Threading.Tasks.Task -Microsoft.AspNetCore.ResponseCaching.ResponseCachingMiddleware.ResponseCachingMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.Extensions.ObjectPool.ObjectPoolProvider! poolProvider) -> void ~static Microsoft.AspNetCore.Builder.ResponseCachingExtensions.UseResponseCaching(this Microsoft.AspNetCore.Builder.IApplicationBuilder app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder ~static Microsoft.Extensions.DependencyInjection.ResponseCachingServicesExtensions.AddResponseCaching(this Microsoft.Extensions.DependencyInjection.IServiceCollection services) -> Microsoft.Extensions.DependencyInjection.IServiceCollection ~static Microsoft.Extensions.DependencyInjection.ResponseCachingServicesExtensions.AddResponseCaching(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Action configureOptions) -> Microsoft.Extensions.DependencyInjection.IServiceCollection @@ -11,6 +10,7 @@ Microsoft.AspNetCore.ResponseCaching.ResponseCachingFeature.VaryByQueryKeys.get Microsoft.AspNetCore.ResponseCaching.ResponseCachingFeature.VaryByQueryKeys.set -> void Microsoft.AspNetCore.ResponseCaching.ResponseCachingMiddleware Microsoft.AspNetCore.ResponseCaching.ResponseCachingMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.ResponseCaching.ResponseCachingMiddleware.ResponseCachingMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.Extensions.ObjectPool.ObjectPoolProvider! poolProvider) -> void Microsoft.AspNetCore.ResponseCaching.ResponseCachingOptions Microsoft.AspNetCore.ResponseCaching.ResponseCachingOptions.MaximumBodySize.get -> long Microsoft.AspNetCore.ResponseCaching.ResponseCachingOptions.MaximumBodySize.set -> void diff --git a/src/Middleware/ResponseCompression/src/PublicAPI.Shipped.txt b/src/Middleware/ResponseCompression/src/PublicAPI.Shipped.txt index 3ce3d104ee0d..de516050f2a7 100644 --- a/src/Middleware/ResponseCompression/src/PublicAPI.Shipped.txt +++ b/src/Middleware/ResponseCompression/src/PublicAPI.Shipped.txt @@ -1,10 +1,8 @@ #nullable enable -Microsoft.AspNetCore.ResponseCompression.BrotliCompressionProvider.BrotliCompressionProvider(Microsoft.Extensions.Options.IOptions! options) -> void ~Microsoft.AspNetCore.ResponseCompression.BrotliCompressionProvider.CreateStream(System.IO.Stream outputStream) -> System.IO.Stream ~Microsoft.AspNetCore.ResponseCompression.BrotliCompressionProvider.EncodingName.get -> string ~Microsoft.AspNetCore.ResponseCompression.GzipCompressionProvider.CreateStream(System.IO.Stream outputStream) -> System.IO.Stream ~Microsoft.AspNetCore.ResponseCompression.GzipCompressionProvider.EncodingName.get -> string -Microsoft.AspNetCore.ResponseCompression.GzipCompressionProvider.GzipCompressionProvider(Microsoft.Extensions.Options.IOptions! options) -> void ~Microsoft.AspNetCore.ResponseCompression.ICompressionProvider.CreateStream(System.IO.Stream outputStream) -> System.IO.Stream ~Microsoft.AspNetCore.ResponseCompression.ICompressionProvider.EncodingName.get -> string ~Microsoft.AspNetCore.ResponseCompression.IResponseCompressionProvider.CheckRequestAcceptsCompression(Microsoft.AspNetCore.Http.HttpContext context) -> bool @@ -14,7 +12,6 @@ Microsoft.AspNetCore.ResponseCompression.GzipCompressionProvider.GzipCompression ~Microsoft.AspNetCore.ResponseCompression.ResponseCompressionMiddleware.ResponseCompressionMiddleware(Microsoft.AspNetCore.Http.RequestDelegate next, Microsoft.AspNetCore.ResponseCompression.IResponseCompressionProvider provider) -> void ~Microsoft.AspNetCore.ResponseCompression.ResponseCompressionOptions.Providers.get -> Microsoft.AspNetCore.ResponseCompression.CompressionProviderCollection ~Microsoft.AspNetCore.ResponseCompression.ResponseCompressionProvider.CheckRequestAcceptsCompression(Microsoft.AspNetCore.Http.HttpContext context) -> bool -Microsoft.AspNetCore.ResponseCompression.ResponseCompressionProvider.ResponseCompressionProvider(System.IServiceProvider! services, Microsoft.Extensions.Options.IOptions! options) -> void ~static Microsoft.AspNetCore.Builder.ResponseCompressionBuilderExtensions.UseResponseCompression(this Microsoft.AspNetCore.Builder.IApplicationBuilder builder) -> Microsoft.AspNetCore.Builder.IApplicationBuilder ~static Microsoft.AspNetCore.Builder.ResponseCompressionServicesExtensions.AddResponseCompression(this Microsoft.Extensions.DependencyInjection.IServiceCollection services) -> Microsoft.Extensions.DependencyInjection.IServiceCollection ~static Microsoft.AspNetCore.Builder.ResponseCompressionServicesExtensions.AddResponseCompression(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Action configureOptions) -> Microsoft.Extensions.DependencyInjection.IServiceCollection @@ -24,6 +21,7 @@ Microsoft.AspNetCore.ResponseCompression.ResponseCompressionProvider.ResponseCom Microsoft.AspNetCore.Builder.ResponseCompressionBuilderExtensions Microsoft.AspNetCore.Builder.ResponseCompressionServicesExtensions Microsoft.AspNetCore.ResponseCompression.BrotliCompressionProvider +Microsoft.AspNetCore.ResponseCompression.BrotliCompressionProvider.BrotliCompressionProvider(Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.ResponseCompression.BrotliCompressionProvider.CreateStream(System.IO.Stream! outputStream) -> System.IO.Stream! Microsoft.AspNetCore.ResponseCompression.BrotliCompressionProvider.EncodingName.get -> string! Microsoft.AspNetCore.ResponseCompression.BrotliCompressionProvider.SupportsFlush.get -> bool @@ -38,6 +36,7 @@ Microsoft.AspNetCore.ResponseCompression.CompressionProviderCollection.Compressi Microsoft.AspNetCore.ResponseCompression.GzipCompressionProvider Microsoft.AspNetCore.ResponseCompression.GzipCompressionProvider.CreateStream(System.IO.Stream! outputStream) -> System.IO.Stream! Microsoft.AspNetCore.ResponseCompression.GzipCompressionProvider.EncodingName.get -> string! +Microsoft.AspNetCore.ResponseCompression.GzipCompressionProvider.GzipCompressionProvider(Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.ResponseCompression.GzipCompressionProvider.SupportsFlush.get -> bool Microsoft.AspNetCore.ResponseCompression.GzipCompressionProviderOptions Microsoft.AspNetCore.ResponseCompression.GzipCompressionProviderOptions.GzipCompressionProviderOptions() -> void @@ -67,6 +66,7 @@ Microsoft.AspNetCore.ResponseCompression.ResponseCompressionOptions.Providers.ge Microsoft.AspNetCore.ResponseCompression.ResponseCompressionOptions.ResponseCompressionOptions() -> void Microsoft.AspNetCore.ResponseCompression.ResponseCompressionProvider Microsoft.AspNetCore.ResponseCompression.ResponseCompressionProvider.CheckRequestAcceptsCompression(Microsoft.AspNetCore.Http.HttpContext! context) -> bool +Microsoft.AspNetCore.ResponseCompression.ResponseCompressionProvider.ResponseCompressionProvider(System.IServiceProvider! services, Microsoft.Extensions.Options.IOptions! options) -> void static Microsoft.AspNetCore.Builder.ResponseCompressionBuilderExtensions.UseResponseCompression(this Microsoft.AspNetCore.Builder.IApplicationBuilder! builder) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.ResponseCompressionServicesExtensions.AddResponseCompression(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! static Microsoft.AspNetCore.Builder.ResponseCompressionServicesExtensions.AddResponseCompression(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action! configureOptions) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! diff --git a/src/Middleware/Rewrite/src/PublicAPI.Shipped.txt b/src/Middleware/Rewrite/src/PublicAPI.Shipped.txt index e882a98db7e9..ab9f4a2ca59d 100644 --- a/src/Middleware/Rewrite/src/PublicAPI.Shipped.txt +++ b/src/Middleware/Rewrite/src/PublicAPI.Shipped.txt @@ -1,5 +1,4 @@ #nullable enable -Microsoft.AspNetCore.Rewrite.RewriteMiddleware.RewriteMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.AspNetCore.Hosting.IWebHostEnvironment! hostingEnvironment, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.Builder.RewriteBuilderExtensions Microsoft.AspNetCore.Rewrite.ApacheModRewriteOptionsExtensions Microsoft.AspNetCore.Rewrite.IISUrlRewriteOptionsExtensions @@ -17,6 +16,7 @@ Microsoft.AspNetCore.Rewrite.RewriteContext.StaticFileProvider.get -> Microsoft. Microsoft.AspNetCore.Rewrite.RewriteContext.StaticFileProvider.set -> void Microsoft.AspNetCore.Rewrite.RewriteMiddleware Microsoft.AspNetCore.Rewrite.RewriteMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext! context) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Rewrite.RewriteMiddleware.RewriteMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.AspNetCore.Hosting.IWebHostEnvironment! hostingEnvironment, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.Rewrite.RewriteOptions Microsoft.AspNetCore.Rewrite.RewriteOptions.RewriteOptions() -> void Microsoft.AspNetCore.Rewrite.RewriteOptions.Rules.get -> System.Collections.Generic.IList! @@ -27,30 +27,30 @@ Microsoft.AspNetCore.Rewrite.RuleResult Microsoft.AspNetCore.Rewrite.RuleResult.ContinueRules = 0 -> Microsoft.AspNetCore.Rewrite.RuleResult Microsoft.AspNetCore.Rewrite.RuleResult.EndResponse = 1 -> Microsoft.AspNetCore.Rewrite.RuleResult Microsoft.AspNetCore.Rewrite.RuleResult.SkipRemainingRules = 2 -> Microsoft.AspNetCore.Rewrite.RuleResult -static Microsoft.AspNetCore.Builder.RewriteBuilderExtensions.UseRewriter(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, Microsoft.AspNetCore.Rewrite.RewriteOptions! options) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.RewriteBuilderExtensions.UseRewriter(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! +static Microsoft.AspNetCore.Builder.RewriteBuilderExtensions.UseRewriter(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, Microsoft.AspNetCore.Rewrite.RewriteOptions! options) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Rewrite.ApacheModRewriteOptionsExtensions.AddApacheModRewrite(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, Microsoft.Extensions.FileProviders.IFileProvider! fileProvider, string! filePath) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! static Microsoft.AspNetCore.Rewrite.ApacheModRewriteOptionsExtensions.AddApacheModRewrite(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, System.IO.TextReader! reader) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! static Microsoft.AspNetCore.Rewrite.IISUrlRewriteOptionsExtensions.AddIISUrlRewrite(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, Microsoft.Extensions.FileProviders.IFileProvider! fileProvider, string! filePath, bool alwaysUseManagedServerVariables = false) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! static Microsoft.AspNetCore.Rewrite.IISUrlRewriteOptionsExtensions.AddIISUrlRewrite(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, System.IO.TextReader! reader, bool alwaysUseManagedServerVariables = false) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.Add(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, Microsoft.AspNetCore.Rewrite.IRule! rule) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.Add(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, System.Action! applyRule) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! -static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirect(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, string! regex, string! replacement, int statusCode) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirect(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, string! regex, string! replacement) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! -static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirectToHttps(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, int statusCode, int? sslPort) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! -static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirectToHttps(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, int statusCode) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! +static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirect(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, string! regex, string! replacement, int statusCode) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirectToHttps(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! +static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirectToHttps(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, int statusCode) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! +static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirectToHttps(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, int statusCode, int? sslPort) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirectToHttpsPermanent(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! -static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirectToNonWww(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, int statusCode, params string![]! domains) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! +static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirectToNonWww(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirectToNonWww(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, int statusCode) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! +static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirectToNonWww(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, int statusCode, params string![]! domains) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirectToNonWww(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, params string![]! domains) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! -static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirectToNonWww(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! -static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirectToNonWwwPermanent(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, params string![]! domains) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirectToNonWwwPermanent(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! -static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirectToWww(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, int statusCode, params string![]! domains) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! +static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirectToNonWwwPermanent(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, params string![]! domains) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! +static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirectToWww(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirectToWww(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, int statusCode) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! +static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirectToWww(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, int statusCode, params string![]! domains) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirectToWww(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, params string![]! domains) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! -static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirectToWww(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! -static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirectToWwwPermanent(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, params string![]! domains) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirectToWwwPermanent(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! +static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRedirectToWwwPermanent(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, params string![]! domains) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! static Microsoft.AspNetCore.Rewrite.RewriteOptionsExtensions.AddRewrite(this Microsoft.AspNetCore.Rewrite.RewriteOptions! options, string! regex, string! replacement, bool skipRemainingRules) -> Microsoft.AspNetCore.Rewrite.RewriteOptions! diff --git a/src/Middleware/Session/src/PublicAPI.Shipped.txt b/src/Middleware/Session/src/PublicAPI.Shipped.txt index 74958723ea74..b26425090d8d 100644 --- a/src/Middleware/Session/src/PublicAPI.Shipped.txt +++ b/src/Middleware/Session/src/PublicAPI.Shipped.txt @@ -11,7 +11,6 @@ ~Microsoft.AspNetCore.Session.DistributedSessionStore.DistributedSessionStore(Microsoft.Extensions.Caching.Distributed.IDistributedCache cache, Microsoft.Extensions.Logging.ILoggerFactory loggerFactory) -> void ~Microsoft.AspNetCore.Session.ISessionStore.Create(string sessionKey, System.TimeSpan idleTimeout, System.TimeSpan ioTimeout, System.Func tryEstablishSession, bool isNewSessionKey) -> Microsoft.AspNetCore.Http.ISession ~Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext context) -> System.Threading.Tasks.Task -Microsoft.AspNetCore.Session.SessionMiddleware.SessionMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.AspNetCore.DataProtection.IDataProtectionProvider! dataProtectionProvider, Microsoft.AspNetCore.Session.ISessionStore! sessionStore, Microsoft.Extensions.Options.IOptions! options) -> void ~static Microsoft.AspNetCore.Builder.SessionMiddlewareExtensions.UseSession(this Microsoft.AspNetCore.Builder.IApplicationBuilder app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder ~static Microsoft.AspNetCore.Builder.SessionMiddlewareExtensions.UseSession(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, Microsoft.AspNetCore.Builder.SessionOptions options) -> Microsoft.AspNetCore.Builder.IApplicationBuilder ~static Microsoft.Extensions.DependencyInjection.SessionServiceCollectionExtensions.AddSession(this Microsoft.Extensions.DependencyInjection.IServiceCollection services) -> Microsoft.Extensions.DependencyInjection.IServiceCollection @@ -50,6 +49,7 @@ Microsoft.AspNetCore.Session.SessionFeature.Session.set -> void Microsoft.AspNetCore.Session.SessionFeature.SessionFeature() -> void Microsoft.AspNetCore.Session.SessionMiddleware Microsoft.AspNetCore.Session.SessionMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext! context) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Session.SessionMiddleware.SessionMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.AspNetCore.DataProtection.IDataProtectionProvider! dataProtectionProvider, Microsoft.AspNetCore.Session.ISessionStore! sessionStore, Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.Extensions.DependencyInjection.SessionServiceCollectionExtensions static Microsoft.AspNetCore.Builder.SessionMiddlewareExtensions.UseSession(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.SessionMiddlewareExtensions.UseSession(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, Microsoft.AspNetCore.Builder.SessionOptions! options) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! diff --git a/src/Middleware/Spa/SpaServices.Extensions/src/PublicAPI.Shipped.txt b/src/Middleware/Spa/SpaServices.Extensions/src/PublicAPI.Shipped.txt index 6072ba1b0d03..a3cd98080a8f 100644 --- a/src/Middleware/Spa/SpaServices.Extensions/src/PublicAPI.Shipped.txt +++ b/src/Middleware/Spa/SpaServices.Extensions/src/PublicAPI.Shipped.txt @@ -49,5 +49,5 @@ static Microsoft.AspNetCore.Builder.SpaProxyingExtensions.UseProxyToSpaDevelopme static Microsoft.AspNetCore.SpaServices.AngularCli.AngularCliMiddlewareExtensions.UseAngularCliServer(this Microsoft.AspNetCore.SpaServices.ISpaBuilder! spaBuilder, string! npmScript) -> void static Microsoft.AspNetCore.SpaServices.ReactDevelopmentServer.ReactDevelopmentServerMiddlewareExtensions.UseReactDevelopmentServer(this Microsoft.AspNetCore.SpaServices.ISpaBuilder! spaBuilder, string! npmScript) -> void static Microsoft.Extensions.DependencyInjection.SpaStaticFilesExtensions.AddSpaStaticFiles(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action? configuration = null) -> void -static Microsoft.Extensions.DependencyInjection.SpaStaticFilesExtensions.UseSpaStaticFiles(this Microsoft.AspNetCore.Builder.IApplicationBuilder! applicationBuilder, Microsoft.AspNetCore.Builder.StaticFileOptions! options) -> void static Microsoft.Extensions.DependencyInjection.SpaStaticFilesExtensions.UseSpaStaticFiles(this Microsoft.AspNetCore.Builder.IApplicationBuilder! applicationBuilder) -> void +static Microsoft.Extensions.DependencyInjection.SpaStaticFilesExtensions.UseSpaStaticFiles(this Microsoft.AspNetCore.Builder.IApplicationBuilder! applicationBuilder, Microsoft.AspNetCore.Builder.StaticFileOptions! options) -> void diff --git a/src/Middleware/StaticFiles/src/PublicAPI.Shipped.txt b/src/Middleware/StaticFiles/src/PublicAPI.Shipped.txt index 6a9dd55b8a5c..ee4a534d1298 100644 --- a/src/Middleware/StaticFiles/src/PublicAPI.Shipped.txt +++ b/src/Middleware/StaticFiles/src/PublicAPI.Shipped.txt @@ -1,8 +1,4 @@ #nullable enable -Microsoft.AspNetCore.StaticFiles.DefaultFilesMiddleware.DefaultFilesMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.AspNetCore.Hosting.IWebHostEnvironment! hostingEnv, Microsoft.Extensions.Options.IOptions! options) -> void -Microsoft.AspNetCore.StaticFiles.DirectoryBrowserMiddleware.DirectoryBrowserMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.AspNetCore.Hosting.IWebHostEnvironment! hostingEnv, Microsoft.Extensions.Options.IOptions! options) -> void -Microsoft.AspNetCore.StaticFiles.DirectoryBrowserMiddleware.DirectoryBrowserMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.AspNetCore.Hosting.IWebHostEnvironment! hostingEnv, System.Text.Encodings.Web.HtmlEncoder! encoder, Microsoft.Extensions.Options.IOptions! options) -> void -Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.StaticFileMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.AspNetCore.Hosting.IWebHostEnvironment! hostingEnv, Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void Microsoft.AspNetCore.Builder.DefaultFilesExtensions Microsoft.AspNetCore.Builder.DefaultFilesOptions Microsoft.AspNetCore.Builder.DefaultFilesOptions.DefaultFileNames.get -> System.Collections.Generic.IList! @@ -41,8 +37,11 @@ Microsoft.AspNetCore.Builder.StaticFileOptions.StaticFileOptions() -> void Microsoft.AspNetCore.Builder.StaticFileOptions.StaticFileOptions(Microsoft.AspNetCore.StaticFiles.Infrastructure.SharedOptions! sharedOptions) -> void Microsoft.AspNetCore.Builder.StaticFilesEndpointRouteBuilderExtensions Microsoft.AspNetCore.StaticFiles.DefaultFilesMiddleware +Microsoft.AspNetCore.StaticFiles.DefaultFilesMiddleware.DefaultFilesMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.AspNetCore.Hosting.IWebHostEnvironment! hostingEnv, Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.StaticFiles.DefaultFilesMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext! context) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.StaticFiles.DirectoryBrowserMiddleware +Microsoft.AspNetCore.StaticFiles.DirectoryBrowserMiddleware.DirectoryBrowserMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.AspNetCore.Hosting.IWebHostEnvironment! hostingEnv, Microsoft.Extensions.Options.IOptions! options) -> void +Microsoft.AspNetCore.StaticFiles.DirectoryBrowserMiddleware.DirectoryBrowserMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.AspNetCore.Hosting.IWebHostEnvironment! hostingEnv, System.Text.Encodings.Web.HtmlEncoder! encoder, Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.StaticFiles.DirectoryBrowserMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext! context) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.StaticFiles.FileExtensionContentTypeProvider Microsoft.AspNetCore.StaticFiles.FileExtensionContentTypeProvider.FileExtensionContentTypeProvider() -> void @@ -74,27 +73,28 @@ Microsoft.AspNetCore.StaticFiles.Infrastructure.SharedOptionsBase.SharedOptions. Microsoft.AspNetCore.StaticFiles.Infrastructure.SharedOptionsBase.SharedOptionsBase(Microsoft.AspNetCore.StaticFiles.Infrastructure.SharedOptions! sharedOptions) -> void Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext! context) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.StaticFileMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.AspNetCore.Hosting.IWebHostEnvironment! hostingEnv, Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void Microsoft.AspNetCore.StaticFiles.StaticFileResponseContext Microsoft.AspNetCore.StaticFiles.StaticFileResponseContext.Context.get -> Microsoft.AspNetCore.Http.HttpContext! Microsoft.AspNetCore.StaticFiles.StaticFileResponseContext.File.get -> Microsoft.Extensions.FileProviders.IFileInfo! Microsoft.AspNetCore.StaticFiles.StaticFileResponseContext.StaticFileResponseContext(Microsoft.AspNetCore.Http.HttpContext! context, Microsoft.Extensions.FileProviders.IFileInfo! file) -> void Microsoft.Extensions.DependencyInjection.DirectoryBrowserServiceExtensions +static Microsoft.AspNetCore.Builder.DefaultFilesExtensions.UseDefaultFiles(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.DefaultFilesExtensions.UseDefaultFiles(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, Microsoft.AspNetCore.Builder.DefaultFilesOptions! options) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.DefaultFilesExtensions.UseDefaultFiles(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, string! requestPath) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! -static Microsoft.AspNetCore.Builder.DefaultFilesExtensions.UseDefaultFiles(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! +static Microsoft.AspNetCore.Builder.DirectoryBrowserExtensions.UseDirectoryBrowser(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.DirectoryBrowserExtensions.UseDirectoryBrowser(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, Microsoft.AspNetCore.Builder.DirectoryBrowserOptions! options) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.DirectoryBrowserExtensions.UseDirectoryBrowser(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, string! requestPath) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! -static Microsoft.AspNetCore.Builder.DirectoryBrowserExtensions.UseDirectoryBrowser(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! +static Microsoft.AspNetCore.Builder.FileServerExtensions.UseFileServer(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.FileServerExtensions.UseFileServer(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, bool enableDirectoryBrowsing) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.FileServerExtensions.UseFileServer(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, Microsoft.AspNetCore.Builder.FileServerOptions! options) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.FileServerExtensions.UseFileServer(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, string! requestPath) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! -static Microsoft.AspNetCore.Builder.FileServerExtensions.UseFileServer(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! +static Microsoft.AspNetCore.Builder.StaticFileExtensions.UseStaticFiles(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.StaticFileExtensions.UseStaticFiles(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, Microsoft.AspNetCore.Builder.StaticFileOptions! options) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.StaticFileExtensions.UseStaticFiles(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app, string! requestPath) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! -static Microsoft.AspNetCore.Builder.StaticFileExtensions.UseStaticFiles(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! -static Microsoft.AspNetCore.Builder.StaticFilesEndpointRouteBuilderExtensions.MapFallbackToFile(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, string! filePath, Microsoft.AspNetCore.Builder.StaticFileOptions! options) -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder! static Microsoft.AspNetCore.Builder.StaticFilesEndpointRouteBuilderExtensions.MapFallbackToFile(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, string! filePath) -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder! -static Microsoft.AspNetCore.Builder.StaticFilesEndpointRouteBuilderExtensions.MapFallbackToFile(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, string! pattern, string! filePath, Microsoft.AspNetCore.Builder.StaticFileOptions! options) -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder! +static Microsoft.AspNetCore.Builder.StaticFilesEndpointRouteBuilderExtensions.MapFallbackToFile(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, string! filePath, Microsoft.AspNetCore.Builder.StaticFileOptions! options) -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder! static Microsoft.AspNetCore.Builder.StaticFilesEndpointRouteBuilderExtensions.MapFallbackToFile(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, string! pattern, string! filePath) -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder! +static Microsoft.AspNetCore.Builder.StaticFilesEndpointRouteBuilderExtensions.MapFallbackToFile(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder! endpoints, string! pattern, string! filePath, Microsoft.AspNetCore.Builder.StaticFileOptions! options) -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder! static Microsoft.Extensions.DependencyInjection.DirectoryBrowserServiceExtensions.AddDirectoryBrowser(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! virtual Microsoft.AspNetCore.StaticFiles.HtmlDirectoryFormatter.GenerateContentAsync(Microsoft.AspNetCore.Http.HttpContext! context, System.Collections.Generic.IEnumerable! contents) -> System.Threading.Tasks.Task! diff --git a/src/Middleware/WebSockets/src/PublicAPI.Shipped.txt b/src/Middleware/WebSockets/src/PublicAPI.Shipped.txt index f6bd124a8f86..6d316d9ba21d 100644 --- a/src/Middleware/WebSockets/src/PublicAPI.Shipped.txt +++ b/src/Middleware/WebSockets/src/PublicAPI.Shipped.txt @@ -1,7 +1,6 @@ #nullable enable ~Microsoft.AspNetCore.Builder.WebSocketOptions.AllowedOrigins.get -> System.Collections.Generic.IList ~Microsoft.AspNetCore.WebSockets.WebSocketMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext context) -> System.Threading.Tasks.Task -Microsoft.AspNetCore.WebSockets.WebSocketMiddleware.WebSocketMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void ~static Microsoft.AspNetCore.Builder.WebSocketMiddlewareExtensions.UseWebSockets(this Microsoft.AspNetCore.Builder.IApplicationBuilder app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder ~static Microsoft.AspNetCore.Builder.WebSocketMiddlewareExtensions.UseWebSockets(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, Microsoft.AspNetCore.Builder.WebSocketOptions options) -> Microsoft.AspNetCore.Builder.IApplicationBuilder ~static Microsoft.AspNetCore.WebSockets.WebSocketsDependencyInjectionExtensions.AddWebSockets(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Action configure) -> Microsoft.Extensions.DependencyInjection.IServiceCollection @@ -21,6 +20,7 @@ Microsoft.AspNetCore.WebSockets.ExtendedWebSocketAcceptContext.ReceiveBufferSize Microsoft.AspNetCore.WebSockets.ExtendedWebSocketAcceptContext.ReceiveBufferSize.set -> void Microsoft.AspNetCore.WebSockets.WebSocketMiddleware Microsoft.AspNetCore.WebSockets.WebSocketMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext! context) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.WebSockets.WebSocketMiddleware.WebSocketMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void Microsoft.AspNetCore.WebSockets.WebSocketsDependencyInjectionExtensions override Microsoft.AspNetCore.WebSockets.ExtendedWebSocketAcceptContext.SubProtocol.get -> string? override Microsoft.AspNetCore.WebSockets.ExtendedWebSocketAcceptContext.SubProtocol.set -> void diff --git a/src/Mvc/Mvc.Abstractions/src/PublicAPI.Shipped.txt b/src/Mvc/Mvc.Abstractions/src/PublicAPI.Shipped.txt index 2eec2252ff54..2de2643a0f65 100644 --- a/src/Mvc/Mvc.Abstractions/src/PublicAPI.Shipped.txt +++ b/src/Mvc/Mvc.Abstractions/src/PublicAPI.Shipped.txt @@ -121,7 +121,6 @@ Microsoft.AspNetCore.Mvc.Abstractions.ParameterDescriptor.ParameterDescriptor() Microsoft.AspNetCore.Mvc.Abstractions.ParameterDescriptor.ParameterType.get -> System.Type! Microsoft.AspNetCore.Mvc.Abstractions.ParameterDescriptor.ParameterType.set -> void Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintContext -Microsoft.AspNetCore.Mvc.ActionConstraints.ActionSelectorCandidate.ActionSelectorCandidate() -> void Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintContext.ActionConstraintContext() -> void Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintContext.Candidates.get -> System.Collections.Generic.IReadOnlyList! Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintContext.Candidates.set -> void @@ -143,6 +142,7 @@ Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintProviderContext.HttpC Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintProviderContext.Results.get -> System.Collections.Generic.IList! Microsoft.AspNetCore.Mvc.ActionConstraints.ActionSelectorCandidate Microsoft.AspNetCore.Mvc.ActionConstraints.ActionSelectorCandidate.Action.get -> Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor! +Microsoft.AspNetCore.Mvc.ActionConstraints.ActionSelectorCandidate.ActionSelectorCandidate() -> void Microsoft.AspNetCore.Mvc.ActionConstraints.ActionSelectorCandidate.ActionSelectorCandidate(Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor! action, System.Collections.Generic.IReadOnlyList? constraints) -> void Microsoft.AspNetCore.Mvc.ActionConstraints.ActionSelectorCandidate.Constraints.get -> System.Collections.Generic.IReadOnlyList? Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraint @@ -432,11 +432,11 @@ Microsoft.AspNetCore.Mvc.ModelBinding.IValueProviderFactory.CreateValueProviderA Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelBindingMessageProvider Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelBindingMessageProvider.ModelBindingMessageProvider() -> void Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity -Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity.ModelMetadataIdentity() -> void Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity.ConstructorInfo.get -> System.Reflection.ConstructorInfo? Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity.ContainerType.get -> System.Type? Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity.Equals(Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity other) -> bool Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity.MetadataKind.get -> Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataKind +Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity.ModelMetadataIdentity() -> void Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity.ModelType.get -> System.Type! Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity.Name.get -> string? Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity.ParameterInfo.get -> System.Reflection.ParameterInfo? @@ -451,16 +451,16 @@ Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderProviderContext.ModelBinderProv Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.ModelBindingContext() -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.NestedScope -Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.NestedScope.NestedScope() -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.NestedScope.Dispose() -> void +Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.NestedScope.NestedScope() -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.NestedScope.NestedScope(Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext! context) -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.OriginalModelName.get -> string! Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.OriginalModelName.set -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult -Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult.ModelBindingResult() -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult.Equals(Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult other) -> bool Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult.IsModelSet.get -> bool Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult.Model.get -> object? +Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult.ModelBindingResult() -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelError Microsoft.AspNetCore.Mvc.ModelBinding.ModelError.ErrorMessage.get -> string! Microsoft.AspNetCore.Mvc.ModelBinding.ModelError.Exception.get -> System.Exception? @@ -502,9 +502,9 @@ Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ClearValidationState( Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ContainsKey(string! key) -> bool Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Count.get -> int Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Enumerator -Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Enumerator.Enumerator() -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Enumerator.Current.get -> System.Collections.Generic.KeyValuePair Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Enumerator.Dispose() -> void +Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Enumerator.Enumerator() -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Enumerator.Enumerator(Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary! dictionary, string! prefix) -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Enumerator.MoveNext() -> bool Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Enumerator.Reset() -> void @@ -516,13 +516,13 @@ Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.GetValidationState(st Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.HasReachedMaxErrors.get -> bool Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.IsValid.get -> bool Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerable -Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerable.KeyEnumerable() -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerable.GetEnumerator() -> Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerator +Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerable.KeyEnumerable() -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerable.KeyEnumerable(Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary! dictionary) -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerator -Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerator.KeyEnumerator() -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerator.Current.get -> string! Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerator.Dispose() -> void +Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerator.KeyEnumerator() -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerator.KeyEnumerator(Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary! dictionary, string! prefix) -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerator.MoveNext() -> bool Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerator.Reset() -> void @@ -536,8 +536,8 @@ Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ModelStateDictionary( Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ModelStateDictionary(int maxAllowedErrors) -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ModelStateDictionary(Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary! dictionary) -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.PrefixEnumerable -Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.PrefixEnumerable.PrefixEnumerable() -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.PrefixEnumerable.GetEnumerator() -> Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Enumerator +Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.PrefixEnumerable.PrefixEnumerable() -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.PrefixEnumerable.PrefixEnumerable(Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary! dictionary, string! prefix) -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Remove(string! key) -> bool Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Root.get -> Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry! @@ -550,15 +550,15 @@ Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.TryAddModelException( Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.TryGetValue(string! key, out Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry? value) -> bool Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValidationState.get -> Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerable -Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerable.ValueEnumerable() -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerable.GetEnumerator() -> Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerator +Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerable.ValueEnumerable() -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerable.ValueEnumerable(Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary! dictionary) -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerator -Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerator.ValueEnumerator() -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerator.Current.get -> Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry! Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerator.Dispose() -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerator.MoveNext() -> bool Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerator.Reset() -> void +Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerator.ValueEnumerator() -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerator.ValueEnumerator(Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary! dictionary, string! prefix) -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Values.get -> Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerable Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry @@ -625,10 +625,10 @@ Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidatorProviderContext.M Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidatorProviderContext.Results.get -> System.Collections.Generic.IList! Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidatorProviderContext.ValidatorMetadata.get -> System.Collections.Generic.IReadOnlyList! Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry -Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry.ValidationEntry() -> void Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry.Key.get -> string! Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry.Metadata.get -> Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata! Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry.Model.get -> object? +Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry.ValidationEntry() -> void Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry.ValidationEntry(Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata! metadata, string! key, object? model) -> void Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry.ValidationEntry(Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata! metadata, string! key, System.Func! modelAccessor) -> void Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateDictionary @@ -675,12 +675,12 @@ Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderFactoryContext.ActionContext. Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderFactoryContext.ValueProviderFactoryContext(Microsoft.AspNetCore.Mvc.ActionContext! context) -> void Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderFactoryContext.ValueProviders.get -> System.Collections.Generic.IList! Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult -Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.ValueProviderResult() -> void Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.Culture.get -> System.Globalization.CultureInfo! Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.Equals(Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult other) -> bool Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.FirstValue.get -> string? Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.GetEnumerator() -> System.Collections.Generic.IEnumerator! Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.Length.get -> int +Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.ValueProviderResult() -> void Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.ValueProviderResult(Microsoft.Extensions.Primitives.StringValues values) -> void Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.ValueProviderResult(Microsoft.Extensions.Primitives.StringValues values, System.Globalization.CultureInfo? culture) -> void Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.Values.get -> Microsoft.Extensions.Primitives.StringValues diff --git a/src/Mvc/Mvc.ApiExplorer/src/PublicAPI.Shipped.txt b/src/Mvc/Mvc.ApiExplorer/src/PublicAPI.Shipped.txt index a61035fdcab3..50fff028e07c 100644 --- a/src/Mvc/Mvc.ApiExplorer/src/PublicAPI.Shipped.txt +++ b/src/Mvc/Mvc.ApiExplorer/src/PublicAPI.Shipped.txt @@ -1,5 +1,4 @@ #nullable enable -Microsoft.AspNetCore.Mvc.ApiExplorer.DefaultApiDescriptionProvider.DefaultApiDescriptionProvider(Microsoft.Extensions.Options.IOptions! optionsAccessor, Microsoft.AspNetCore.Routing.IInlineConstraintResolver! constraintResolver, Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider! modelMetadataProvider, Microsoft.AspNetCore.Mvc.Infrastructure.IActionResultTypeMapper! mapper, Microsoft.Extensions.Options.IOptions! routeOptions) -> void Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescription (forwarded, contained in Microsoft.AspNetCore.Mvc.Abstractions) Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescription.ActionDescriptor.get -> Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor! (forwarded, contained in Microsoft.AspNetCore.Mvc.Abstractions) Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescription.ActionDescriptor.set -> void (forwarded, contained in Microsoft.AspNetCore.Mvc.Abstractions) @@ -83,6 +82,7 @@ Microsoft.AspNetCore.Mvc.ApiExplorer.ApiResponseType.StatusCode.set -> void (for Microsoft.AspNetCore.Mvc.ApiExplorer.ApiResponseType.Type.get -> System.Type? (forwarded, contained in Microsoft.AspNetCore.Mvc.Abstractions) Microsoft.AspNetCore.Mvc.ApiExplorer.ApiResponseType.Type.set -> void (forwarded, contained in Microsoft.AspNetCore.Mvc.Abstractions) Microsoft.AspNetCore.Mvc.ApiExplorer.DefaultApiDescriptionProvider +Microsoft.AspNetCore.Mvc.ApiExplorer.DefaultApiDescriptionProvider.DefaultApiDescriptionProvider(Microsoft.Extensions.Options.IOptions! optionsAccessor, Microsoft.AspNetCore.Routing.IInlineConstraintResolver! constraintResolver, Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider! modelMetadataProvider, Microsoft.AspNetCore.Mvc.Infrastructure.IActionResultTypeMapper! mapper, Microsoft.Extensions.Options.IOptions! routeOptions) -> void Microsoft.AspNetCore.Mvc.ApiExplorer.DefaultApiDescriptionProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescriptionProviderContext! context) -> void Microsoft.AspNetCore.Mvc.ApiExplorer.DefaultApiDescriptionProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescriptionProviderContext! context) -> void Microsoft.AspNetCore.Mvc.ApiExplorer.DefaultApiDescriptionProvider.Order.get -> int diff --git a/src/Mvc/Mvc.Core/src/PublicAPI.Shipped.txt b/src/Mvc/Mvc.Core/src/PublicAPI.Shipped.txt index 53c83cd826af..065752cc1875 100644 --- a/src/Mvc/Mvc.Core/src/PublicAPI.Shipped.txt +++ b/src/Mvc/Mvc.Core/src/PublicAPI.Shipped.txt @@ -1,17 +1,8 @@ #nullable enable -Microsoft.AspNetCore.Mvc.Formatters.FormatFilter.FormatFilter(Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void -Microsoft.AspNetCore.Mvc.Infrastructure.ConfigureCompatibilityOptions -Microsoft.AspNetCore.Mvc.Infrastructure.ConfigureCompatibilityOptions.ConfigureCompatibilityOptions(Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.Extensions.Options.IOptions! compatibilityOptions) -> void -Microsoft.AspNetCore.Mvc.Infrastructure.DefaultOutputFormatterSelector.DefaultOutputFormatterSelector(Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void -Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor.ObjectResultExecutor(Microsoft.AspNetCore.Mvc.Infrastructure.OutputFormatterSelector! formatterSelector, Microsoft.AspNetCore.Mvc.Infrastructure.IHttpResponseStreamWriterFactory! writerFactory, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.Extensions.Options.IOptions! mvcOptions) -> void ~Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ComplexTypeModelBinder.BindModelAsync(Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext bindingContext) -> System.Threading.Tasks.Task ~Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ComplexTypeModelBinder.ComplexTypeModelBinder(System.Collections.Generic.IDictionary propertyBinders, Microsoft.Extensions.Logging.ILoggerFactory loggerFactory) -> void ~Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ComplexTypeModelBinder.ComplexTypeModelBinder(System.Collections.Generic.IDictionary propertyBinders, Microsoft.Extensions.Logging.ILoggerFactory loggerFactory, bool allowValidatingTopLevelNodes) -> void ~Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ComplexTypeModelBinderProvider.GetBinder(Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderProviderContext context) -> Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder -Microsoft.AspNetCore.Mvc.ModelBinding.DefaultPropertyFilterProvider -Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelMetadataProvider.DefaultModelMetadataProvider(Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ICompositeMetadataDetailsProvider! detailsProvider, Microsoft.Extensions.Options.IOptions! optionsAccessor) -> void -Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderFactory.ModelBinderFactory(Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider! metadataProvider, Microsoft.Extensions.Options.IOptions! options, System.IServiceProvider! serviceProvider) -> void -Microsoft.AspNetCore.Mvc.ModelBinding.ParameterBinder.ParameterBinder(Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider! modelMetadataProvider, Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinderFactory! modelBinderFactory, Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IObjectModelValidator! validator, Microsoft.Extensions.Options.IOptions! mvcOptions, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void ~virtual Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ComplexTypeModelBinder.BindProperty(Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext bindingContext) -> System.Threading.Tasks.Task ~virtual Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ComplexTypeModelBinder.CanBindProperty(Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext bindingContext, Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata propertyMetadata) -> bool ~virtual Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ComplexTypeModelBinder.CreateModel(Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext bindingContext) -> object @@ -69,6 +60,7 @@ const Microsoft.AspNetCore.Mvc.Diagnostics.EventData.EventNamespace = "Microsoft const Microsoft.AspNetCore.Mvc.Infrastructure.FileResultExecutorBase.BufferSize = 65536 -> int Microsoft.AspNetCore.Builder.ControllerActionEndpointConventionBuilder Microsoft.AspNetCore.Builder.ControllerActionEndpointConventionBuilder.Add(System.Action! convention) -> void +Microsoft.AspNetCore.Builder.ControllerActionEndpointConventionBuilder.Finally(System.Action! finalConvention) -> void Microsoft.AspNetCore.Builder.ControllerEndpointRouteBuilderExtensions Microsoft.AspNetCore.Builder.MvcApplicationBuilderExtensions Microsoft.AspNetCore.Builder.MvcAreaRouteBuilderExtensions @@ -133,6 +125,8 @@ Microsoft.AspNetCore.Mvc.AntiforgeryValidationFailedResult.AntiforgeryValidation Microsoft.AspNetCore.Mvc.ApiBehaviorOptions Microsoft.AspNetCore.Mvc.ApiBehaviorOptions.ApiBehaviorOptions() -> void Microsoft.AspNetCore.Mvc.ApiBehaviorOptions.ClientErrorMapping.get -> System.Collections.Generic.IDictionary! +Microsoft.AspNetCore.Mvc.ApiBehaviorOptions.DisableImplicitFromServicesParameters.get -> bool +Microsoft.AspNetCore.Mvc.ApiBehaviorOptions.DisableImplicitFromServicesParameters.set -> void Microsoft.AspNetCore.Mvc.ApiBehaviorOptions.InvalidModelStateResponseFactory.get -> System.Func! Microsoft.AspNetCore.Mvc.ApiBehaviorOptions.InvalidModelStateResponseFactory.set -> void Microsoft.AspNetCore.Mvc.ApiBehaviorOptions.SuppressConsumesConstraintForFormFileParameters.get -> bool @@ -302,6 +296,7 @@ Microsoft.AspNetCore.Mvc.ApplicationModels.IFilterModel.Filters.get -> System.Co Microsoft.AspNetCore.Mvc.ApplicationModels.InferParameterBindingInfoConvention Microsoft.AspNetCore.Mvc.ApplicationModels.InferParameterBindingInfoConvention.Apply(Microsoft.AspNetCore.Mvc.ApplicationModels.ActionModel! action) -> void Microsoft.AspNetCore.Mvc.ApplicationModels.InferParameterBindingInfoConvention.InferParameterBindingInfoConvention(Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider! modelMetadataProvider) -> void +Microsoft.AspNetCore.Mvc.ApplicationModels.InferParameterBindingInfoConvention.InferParameterBindingInfoConvention(Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider! modelMetadataProvider, Microsoft.Extensions.DependencyInjection.IServiceProviderIsService! serviceProviderIsService) -> void Microsoft.AspNetCore.Mvc.ApplicationModels.InvalidModelStateFilterConvention Microsoft.AspNetCore.Mvc.ApplicationModels.InvalidModelStateFilterConvention.Apply(Microsoft.AspNetCore.Mvc.ApplicationModels.ActionModel! action) -> void Microsoft.AspNetCore.Mvc.ApplicationModels.InvalidModelStateFilterConvention.InvalidModelStateFilterConvention() -> void @@ -501,9 +496,9 @@ Microsoft.AspNetCore.Mvc.ControllerBase.Request.get -> Microsoft.AspNetCore.Http Microsoft.AspNetCore.Mvc.ControllerBase.Response.get -> Microsoft.AspNetCore.Http.HttpResponse! Microsoft.AspNetCore.Mvc.ControllerBase.RouteData.get -> Microsoft.AspNetCore.Routing.RouteData! Microsoft.AspNetCore.Mvc.ControllerBase.TryUpdateModelAsync(object! model, System.Type! modelType, string! prefix, Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider! valueProvider, System.Func! propertyFilter) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Mvc.ControllerBase.TryUpdateModelAsync(TModel! model, string! prefix, Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider! valueProvider, params System.Linq.Expressions.Expression!>![]! includeExpressions) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Mvc.ControllerBase.TryUpdateModelAsync(TModel! model, string! prefix, Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider! valueProvider, params System.Linq.Expressions.Expression!>![]! includeExpressions) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Mvc.ControllerBase.TryUpdateModelAsync(TModel! model, string! prefix, Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider! valueProvider, System.Func! propertyFilter) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Mvc.ControllerBase.TryUpdateModelAsync(TModel! model, string! prefix, params System.Linq.Expressions.Expression!>![]! includeExpressions) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Mvc.ControllerBase.TryUpdateModelAsync(TModel! model, string! prefix, params System.Linq.Expressions.Expression!>![]! includeExpressions) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Mvc.ControllerBase.TryUpdateModelAsync(TModel! model, string! prefix, System.Func! propertyFilter) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Mvc.ControllerBase.Url.get -> Microsoft.AspNetCore.Mvc.IUrlHelper! Microsoft.AspNetCore.Mvc.ControllerBase.Url.set -> void @@ -728,9 +723,9 @@ Microsoft.AspNetCore.Mvc.Diagnostics.BeforeResultFilterOnResultExecutionEventDat Microsoft.AspNetCore.Mvc.Diagnostics.BeforeResultFilterOnResultExecutionEventData.ResultExecutingContext.get -> Microsoft.AspNetCore.Mvc.Filters.ResultExecutingContext! Microsoft.AspNetCore.Mvc.Diagnostics.EventData Microsoft.AspNetCore.Mvc.Diagnostics.EventData.Enumerator -Microsoft.AspNetCore.Mvc.Diagnostics.EventData.Enumerator.Enumerator() -> void Microsoft.AspNetCore.Mvc.Diagnostics.EventData.Enumerator.Current.get -> System.Collections.Generic.KeyValuePair Microsoft.AspNetCore.Mvc.Diagnostics.EventData.Enumerator.Dispose() -> void +Microsoft.AspNetCore.Mvc.Diagnostics.EventData.Enumerator.Enumerator() -> void Microsoft.AspNetCore.Mvc.Diagnostics.EventData.Enumerator.MoveNext() -> bool Microsoft.AspNetCore.Mvc.Diagnostics.EventData.EventData() -> void Microsoft.AspNetCore.Mvc.DisableRequestSizeLimitAttribute @@ -801,6 +796,7 @@ Microsoft.AspNetCore.Mvc.FormatFilterAttribute.CreateInstance(System.IServicePro Microsoft.AspNetCore.Mvc.FormatFilterAttribute.FormatFilterAttribute() -> void Microsoft.AspNetCore.Mvc.FormatFilterAttribute.IsReusable.get -> bool Microsoft.AspNetCore.Mvc.Formatters.FormatFilter +Microsoft.AspNetCore.Mvc.Formatters.FormatFilter.FormatFilter(Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void Microsoft.AspNetCore.Mvc.Formatters.FormatFilter.OnResourceExecuted(Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext! context) -> void Microsoft.AspNetCore.Mvc.Formatters.FormatFilter.OnResourceExecuting(Microsoft.AspNetCore.Mvc.Filters.ResourceExecutingContext! context) -> void Microsoft.AspNetCore.Mvc.Formatters.FormatFilter.OnResultExecuted(Microsoft.AspNetCore.Mvc.Filters.ResultExecutedContext! context) -> void @@ -825,7 +821,6 @@ Microsoft.AspNetCore.Mvc.Formatters.InputFormatterException.InputFormatterExcept Microsoft.AspNetCore.Mvc.Formatters.InputFormatterException.InputFormatterException(string! message) -> void (forwarded, contained in Microsoft.AspNetCore.Mvc.Abstractions) Microsoft.AspNetCore.Mvc.Formatters.InputFormatterException.InputFormatterException(string! message, System.Exception! innerException) -> void (forwarded, contained in Microsoft.AspNetCore.Mvc.Abstractions) Microsoft.AspNetCore.Mvc.Formatters.MediaType -Microsoft.AspNetCore.Mvc.Formatters.MediaType.MediaType() -> void Microsoft.AspNetCore.Mvc.Formatters.MediaType.Charset.get -> Microsoft.Extensions.Primitives.StringSegment Microsoft.AspNetCore.Mvc.Formatters.MediaType.Encoding.get -> System.Text.Encoding? Microsoft.AspNetCore.Mvc.Formatters.MediaType.GetParameter(Microsoft.Extensions.Primitives.StringSegment parameterName) -> Microsoft.Extensions.Primitives.StringSegment @@ -835,6 +830,7 @@ Microsoft.AspNetCore.Mvc.Formatters.MediaType.IsSubsetOf(Microsoft.AspNetCore.Mv Microsoft.AspNetCore.Mvc.Formatters.MediaType.MatchesAllSubTypes.get -> bool Microsoft.AspNetCore.Mvc.Formatters.MediaType.MatchesAllSubTypesWithoutSuffix.get -> bool Microsoft.AspNetCore.Mvc.Formatters.MediaType.MatchesAllTypes.get -> bool +Microsoft.AspNetCore.Mvc.Formatters.MediaType.MediaType() -> void Microsoft.AspNetCore.Mvc.Formatters.MediaType.MediaType(Microsoft.Extensions.Primitives.StringSegment mediaType) -> void Microsoft.AspNetCore.Mvc.Formatters.MediaType.MediaType(string! mediaType) -> void Microsoft.AspNetCore.Mvc.Formatters.MediaType.MediaType(string! mediaType, int offset, int? length) -> void @@ -848,8 +844,8 @@ Microsoft.AspNetCore.Mvc.Formatters.MediaTypeCollection.Insert(int index, Micros Microsoft.AspNetCore.Mvc.Formatters.MediaTypeCollection.MediaTypeCollection() -> void Microsoft.AspNetCore.Mvc.Formatters.MediaTypeCollection.Remove(Microsoft.Net.Http.Headers.MediaTypeHeaderValue! item) -> bool Microsoft.AspNetCore.Mvc.Formatters.MediaTypeSegmentWithQuality -Microsoft.AspNetCore.Mvc.Formatters.MediaTypeSegmentWithQuality.MediaTypeSegmentWithQuality() -> void Microsoft.AspNetCore.Mvc.Formatters.MediaTypeSegmentWithQuality.MediaType.get -> Microsoft.Extensions.Primitives.StringSegment +Microsoft.AspNetCore.Mvc.Formatters.MediaTypeSegmentWithQuality.MediaTypeSegmentWithQuality() -> void Microsoft.AspNetCore.Mvc.Formatters.MediaTypeSegmentWithQuality.MediaTypeSegmentWithQuality(Microsoft.Extensions.Primitives.StringSegment mediaType, double quality) -> void Microsoft.AspNetCore.Mvc.Formatters.MediaTypeSegmentWithQuality.Quality.get -> double Microsoft.AspNetCore.Mvc.Formatters.OutputFormatter @@ -949,10 +945,13 @@ Microsoft.AspNetCore.Mvc.Infrastructure.CompatibilitySwitch.IsValueSet.g Microsoft.AspNetCore.Mvc.Infrastructure.CompatibilitySwitch.Name.get -> string! Microsoft.AspNetCore.Mvc.Infrastructure.CompatibilitySwitch.Value.get -> TValue Microsoft.AspNetCore.Mvc.Infrastructure.CompatibilitySwitch.Value.set -> void +Microsoft.AspNetCore.Mvc.Infrastructure.ConfigureCompatibilityOptions +Microsoft.AspNetCore.Mvc.Infrastructure.ConfigureCompatibilityOptions.ConfigureCompatibilityOptions(Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.Extensions.Options.IOptions! compatibilityOptions) -> void Microsoft.AspNetCore.Mvc.Infrastructure.ConfigureCompatibilityOptions.Version.get -> Microsoft.AspNetCore.Mvc.CompatibilityVersion Microsoft.AspNetCore.Mvc.Infrastructure.ContentResultExecutor Microsoft.AspNetCore.Mvc.Infrastructure.ContentResultExecutor.ContentResultExecutor(Microsoft.Extensions.Logging.ILogger! logger, Microsoft.AspNetCore.Mvc.Infrastructure.IHttpResponseStreamWriterFactory! httpResponseStreamWriterFactory) -> void Microsoft.AspNetCore.Mvc.Infrastructure.DefaultOutputFormatterSelector +Microsoft.AspNetCore.Mvc.Infrastructure.DefaultOutputFormatterSelector.DefaultOutputFormatterSelector(Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void Microsoft.AspNetCore.Mvc.Infrastructure.DefaultStatusCodeAttribute Microsoft.AspNetCore.Mvc.Infrastructure.DefaultStatusCodeAttribute.DefaultStatusCodeAttribute(int statusCode) -> void Microsoft.AspNetCore.Mvc.Infrastructure.DefaultStatusCodeAttribute.StatusCode.get -> int @@ -1016,6 +1015,7 @@ Microsoft.AspNetCore.Mvc.Infrastructure.MvcCompatibilityOptions.MvcCompatibility Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor.FormatterSelector.get -> Microsoft.AspNetCore.Mvc.Infrastructure.OutputFormatterSelector! Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor.Logger.get -> Microsoft.Extensions.Logging.ILogger! +Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor.ObjectResultExecutor(Microsoft.AspNetCore.Mvc.Infrastructure.OutputFormatterSelector! formatterSelector, Microsoft.AspNetCore.Mvc.Infrastructure.IHttpResponseStreamWriterFactory! writerFactory, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.Extensions.Options.IOptions! mvcOptions) -> void Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor.WriterFactory.get -> System.Func! Microsoft.AspNetCore.Mvc.Infrastructure.OutputFormatterSelector Microsoft.AspNetCore.Mvc.Infrastructure.OutputFormatterSelector.OutputFormatterSelector() -> void @@ -1206,6 +1206,9 @@ Microsoft.AspNetCore.Mvc.ModelBinding.Binders.SimpleTypeModelBinder.SimpleTypeMo Microsoft.AspNetCore.Mvc.ModelBinding.Binders.SimpleTypeModelBinderProvider Microsoft.AspNetCore.Mvc.ModelBinding.Binders.SimpleTypeModelBinderProvider.GetBinder(Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderProviderContext! context) -> Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder? Microsoft.AspNetCore.Mvc.ModelBinding.Binders.SimpleTypeModelBinderProvider.SimpleTypeModelBinderProvider() -> void +Microsoft.AspNetCore.Mvc.ModelBinding.Binders.TryParseModelBinderProvider +Microsoft.AspNetCore.Mvc.ModelBinding.Binders.TryParseModelBinderProvider.GetBinder(Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderProviderContext! context) -> Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder? +Microsoft.AspNetCore.Mvc.ModelBinding.Binders.TryParseModelBinderProvider.TryParseModelBinderProvider() -> void Microsoft.AspNetCore.Mvc.ModelBinding.BindingBehavior Microsoft.AspNetCore.Mvc.ModelBinding.BindingBehavior.Never = 1 -> Microsoft.AspNetCore.Mvc.ModelBinding.BindingBehavior Microsoft.AspNetCore.Mvc.ModelBinding.BindingBehavior.Optional = 0 -> Microsoft.AspNetCore.Mvc.ModelBinding.BindingBehavior @@ -1229,6 +1232,7 @@ Microsoft.AspNetCore.Mvc.ModelBinding.DefaultModelBindingContext Microsoft.AspNetCore.Mvc.ModelBinding.DefaultModelBindingContext.DefaultModelBindingContext() -> void Microsoft.AspNetCore.Mvc.ModelBinding.DefaultModelBindingContext.OriginalValueProvider.get -> Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider! Microsoft.AspNetCore.Mvc.ModelBinding.DefaultModelBindingContext.OriginalValueProvider.set -> void +Microsoft.AspNetCore.Mvc.ModelBinding.DefaultPropertyFilterProvider Microsoft.AspNetCore.Mvc.ModelBinding.DefaultPropertyFilterProvider.DefaultPropertyFilterProvider() -> void Microsoft.AspNetCore.Mvc.ModelBinding.EmptyModelMetadataProvider Microsoft.AspNetCore.Mvc.ModelBinding.EmptyModelMetadataProvider.EmptyModelMetadataProvider() -> void @@ -1350,6 +1354,7 @@ Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelMetadata.DisplayMetad Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelMetadata.ValidationMetadata.get -> Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ValidationMetadata! Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelMetadataProvider Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelMetadataProvider.DefaultModelMetadataProvider(Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ICompositeMetadataDetailsProvider! detailsProvider) -> void +Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelMetadataProvider.DefaultModelMetadataProvider(Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ICompositeMetadataDetailsProvider! detailsProvider, Microsoft.Extensions.Options.IOptions! optionsAccessor) -> void Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelMetadataProvider.DetailsProvider.get -> Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ICompositeMetadataDetailsProvider! Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelMetadataProvider.ModelBindingMessageProvider.get -> Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelBindingMessageProvider! Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DisplayMetadata @@ -1420,6 +1425,11 @@ Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.IMetadataDetailsProvider Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.IValidationMetadataProvider Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.IValidationMetadataProvider.CreateValidationMetadata(Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ValidationMetadataProviderContext! context) -> void Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.MetadataDetailsProviderExtensions +Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.SystemTextJsonValidationMetadataProvider +Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.SystemTextJsonValidationMetadataProvider.CreateDisplayMetadata(Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DisplayMetadataProviderContext! context) -> void +Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.SystemTextJsonValidationMetadataProvider.CreateValidationMetadata(Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ValidationMetadataProviderContext! context) -> void +Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.SystemTextJsonValidationMetadataProvider.SystemTextJsonValidationMetadataProvider() -> void +Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.SystemTextJsonValidationMetadataProvider.SystemTextJsonValidationMetadataProvider(System.Text.Json.JsonNamingPolicy! namingPolicy) -> void Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ValidationMetadata Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ValidationMetadata.HasValidators.get -> bool? Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ValidationMetadata.HasValidators.set -> void @@ -1430,6 +1440,8 @@ Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ValidationMetadata.PropertyValida Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ValidationMetadata.ValidateChildren.get -> bool? Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ValidationMetadata.ValidateChildren.set -> void Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ValidationMetadata.ValidationMetadata() -> void +Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ValidationMetadata.ValidationModelName.get -> string? +Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ValidationMetadata.ValidationModelName.set -> void Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ValidationMetadata.ValidatorMetadata.get -> System.Collections.Generic.IList! Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ValidationMetadataProviderContext Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ValidationMetadataProviderContext.Attributes.get -> System.Collections.Generic.IReadOnlyList! @@ -1446,6 +1458,7 @@ Microsoft.AspNetCore.Mvc.ModelBinding.ModelAttributes.PropertyAttributes.get -> Microsoft.AspNetCore.Mvc.ModelBinding.ModelAttributes.TypeAttributes.get -> System.Collections.Generic.IReadOnlyList? Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderFactory Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderFactory.CreateBinder(Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderFactoryContext! context) -> Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder! +Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderFactory.ModelBinderFactory(Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider! metadataProvider, Microsoft.Extensions.Options.IOptions! options, System.IServiceProvider! serviceProvider) -> void Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderFactoryContext Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderFactoryContext.BindingInfo.get -> Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo? Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderFactoryContext.BindingInfo.set -> void @@ -1461,6 +1474,7 @@ Microsoft.AspNetCore.Mvc.ModelBinding.ObjectModelValidator Microsoft.AspNetCore.Mvc.ModelBinding.ObjectModelValidator.ObjectModelValidator(Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider! modelMetadataProvider, System.Collections.Generic.IList! validatorProviders) -> void Microsoft.AspNetCore.Mvc.ModelBinding.ParameterBinder Microsoft.AspNetCore.Mvc.ModelBinding.ParameterBinder.Logger.get -> Microsoft.Extensions.Logging.ILogger! +Microsoft.AspNetCore.Mvc.ModelBinding.ParameterBinder.ParameterBinder(Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider! modelMetadataProvider, Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinderFactory! modelBinderFactory, Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IObjectModelValidator! validator, Microsoft.Extensions.Options.IOptions! mvcOptions, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void Microsoft.AspNetCore.Mvc.ModelBinding.PrefixContainer Microsoft.AspNetCore.Mvc.ModelBinding.PrefixContainer.ContainsPrefix(string! prefix) -> bool Microsoft.AspNetCore.Mvc.ModelBinding.PrefixContainer.GetKeysFromPrefix(string! prefix) -> System.Collections.Generic.IDictionary! @@ -1529,8 +1543,8 @@ Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationVisitor.Model.get -> Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationVisitor.Model.set -> void Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationVisitor.ModelState.get -> Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary! Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationVisitor.StateManager -Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationVisitor.StateManager.StateManager() -> void Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationVisitor.StateManager.Dispose() -> void +Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationVisitor.StateManager.StateManager() -> void Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationVisitor.StateManager.StateManager(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationVisitor! visitor, object? newModel) -> void Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationVisitor.Strategy.get -> Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IValidationStrategy? Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationVisitor.Strategy.set -> void @@ -1627,6 +1641,19 @@ Microsoft.AspNetCore.Mvc.PhysicalFileResult.FileName.get -> string! Microsoft.AspNetCore.Mvc.PhysicalFileResult.FileName.set -> void Microsoft.AspNetCore.Mvc.PhysicalFileResult.PhysicalFileResult(string! fileName, Microsoft.Net.Http.Headers.MediaTypeHeaderValue! contentType) -> void Microsoft.AspNetCore.Mvc.PhysicalFileResult.PhysicalFileResult(string! fileName, string! contentType) -> void +Microsoft.AspNetCore.Mvc.ProblemDetails (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Mvc.ProblemDetails.Detail.get -> string? (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Mvc.ProblemDetails.Detail.set -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Mvc.ProblemDetails.Extensions.get -> System.Collections.Generic.IDictionary! (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Mvc.ProblemDetails.Instance.get -> string? (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Mvc.ProblemDetails.Instance.set -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Mvc.ProblemDetails.ProblemDetails() -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Mvc.ProblemDetails.Status.get -> int? (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Mvc.ProblemDetails.Status.set -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Mvc.ProblemDetails.Title.get -> string? (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Mvc.ProblemDetails.Title.set -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Mvc.ProblemDetails.Type.get -> string? (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) +Microsoft.AspNetCore.Mvc.ProblemDetails.Type.set -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) Microsoft.AspNetCore.Mvc.ProducesAttribute Microsoft.AspNetCore.Mvc.ProducesAttribute.ContentTypes.get -> Microsoft.AspNetCore.Mvc.Formatters.MediaTypeCollection! Microsoft.AspNetCore.Mvc.ProducesAttribute.ContentTypes.set -> void @@ -1998,6 +2025,7 @@ override Microsoft.AspNetCore.Mvc.ModelBinding.DefaultModelBindingContext.ValueP override Microsoft.AspNetCore.Mvc.ModelBinding.DefaultModelBindingContext.ValueProvider.set -> void override Microsoft.AspNetCore.Mvc.ModelBinding.FormValueProvider.ContainsPrefix(string! prefix) -> bool override Microsoft.AspNetCore.Mvc.ModelBinding.FormValueProvider.GetValue(string! key) -> Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult +override Microsoft.AspNetCore.Mvc.ModelBinding.JQueryFormValueProvider.GetValue(string! key) -> Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult override Microsoft.AspNetCore.Mvc.ModelBinding.JQueryValueProvider.ContainsPrefix(string! prefix) -> bool override Microsoft.AspNetCore.Mvc.ModelBinding.JQueryValueProvider.GetValue(string! key) -> Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult override Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelBindingMessageProvider.AttemptedValueIsInvalidAccessor.get -> System.Func! @@ -2109,6 +2137,7 @@ static Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartFactory.GetAppli static Microsoft.AspNetCore.Mvc.ApplicationParts.DefaultApplicationPartFactory.GetDefaultApplicationParts(System.Reflection.Assembly! assembly) -> System.Collections.Generic.IEnumerable! static Microsoft.AspNetCore.Mvc.ApplicationParts.DefaultApplicationPartFactory.Instance.get -> Microsoft.AspNetCore.Mvc.ApplicationParts.DefaultApplicationPartFactory! static Microsoft.AspNetCore.Mvc.ApplicationParts.RelatedAssemblyAttribute.GetRelatedAssemblies(System.Reflection.Assembly! assembly, bool throwOnError) -> System.Collections.Generic.IReadOnlyList! +static Microsoft.AspNetCore.Mvc.ControllerBase.Empty.get -> Microsoft.AspNetCore.Mvc.EmptyResult! static Microsoft.AspNetCore.Mvc.DefaultApiConventions.Create(object! model) -> void static Microsoft.AspNetCore.Mvc.DefaultApiConventions.Delete(object! id) -> void static Microsoft.AspNetCore.Mvc.DefaultApiConventions.Edit(object! id, object! model) -> void @@ -2408,7 +2437,7 @@ virtual Microsoft.AspNetCore.Mvc.Formatters.OutputFormatter.GetSupportedContentT virtual Microsoft.AspNetCore.Mvc.Formatters.OutputFormatter.WriteAsync(Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterWriteContext! context) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Mvc.Formatters.OutputFormatter.WriteResponseHeaders(Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterWriteContext! context) -> void virtual Microsoft.AspNetCore.Mvc.Formatters.TextOutputFormatter.SelectCharacterEncoding(Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterWriteContext! context) -> System.Text.Encoding! -virtual Microsoft.AspNetCore.Mvc.Infrastructure.ConfigureCompatibilityOptions.PostConfigure(string! name, TOptions! options) -> void +virtual Microsoft.AspNetCore.Mvc.Infrastructure.ConfigureCompatibilityOptions.PostConfigure(string? name, TOptions! options) -> void virtual Microsoft.AspNetCore.Mvc.Infrastructure.ContentResultExecutor.ExecuteAsync(Microsoft.AspNetCore.Mvc.ActionContext! context, Microsoft.AspNetCore.Mvc.ContentResult! result) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Mvc.Infrastructure.FileContentResultExecutor.ExecuteAsync(Microsoft.AspNetCore.Mvc.ActionContext! context, Microsoft.AspNetCore.Mvc.FileContentResult! result) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Mvc.Infrastructure.FileContentResultExecutor.WriteFileAsync(Microsoft.AspNetCore.Mvc.ActionContext! context, Microsoft.AspNetCore.Mvc.FileContentResult! result, Microsoft.Net.Http.Headers.RangeItemHeaderValue? range, long rangeLength) -> System.Threading.Tasks.Task! @@ -2442,7 +2471,7 @@ virtual Microsoft.AspNetCore.Mvc.ModelBinding.CompositeValueProvider.GetKeysFrom virtual Microsoft.AspNetCore.Mvc.ModelBinding.CompositeValueProvider.GetValue(string! key) -> Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult virtual Microsoft.AspNetCore.Mvc.ModelBinding.DefaultPropertyFilterProvider.Prefix.get -> string! virtual Microsoft.AspNetCore.Mvc.ModelBinding.DefaultPropertyFilterProvider.PropertyFilter.get -> System.Func! -virtual Microsoft.AspNetCore.Mvc.ModelBinding.DefaultPropertyFilterProvider.PropertyIncludeExpressions.get -> System.Collections.Generic.IEnumerable!>!>? +virtual Microsoft.AspNetCore.Mvc.ModelBinding.DefaultPropertyFilterProvider.PropertyIncludeExpressions.get -> System.Collections.Generic.IEnumerable!>!>? virtual Microsoft.AspNetCore.Mvc.ModelBinding.FormValueProvider.GetKeysFromPrefix(string! prefix) -> System.Collections.Generic.IDictionary! virtual Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelMetadataProvider.CreateModelMetadata(Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultMetadataDetails! entry) -> Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata! virtual Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelMetadataProvider.CreateParameterDetails(Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity key) -> Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultMetadataDetails! diff --git a/src/Mvc/Mvc.Core/src/PublicAPI.Unshipped.txt b/src/Mvc/Mvc.Core/src/PublicAPI.Unshipped.txt index c2c8fdf41a5a..7dc5c58110bf 100644 --- a/src/Mvc/Mvc.Core/src/PublicAPI.Unshipped.txt +++ b/src/Mvc/Mvc.Core/src/PublicAPI.Unshipped.txt @@ -1,38 +1 @@ #nullable enable -*REMOVED*virtual Microsoft.AspNetCore.Mvc.Infrastructure.ConfigureCompatibilityOptions.PostConfigure(string! name, TOptions! options) -> void -Microsoft.AspNetCore.Builder.ControllerActionEndpointConventionBuilder.Finally(System.Action! finalConvention) -> void -Microsoft.AspNetCore.Mvc.ApiBehaviorOptions.DisableImplicitFromServicesParameters.get -> bool -Microsoft.AspNetCore.Mvc.ApiBehaviorOptions.DisableImplicitFromServicesParameters.set -> void -Microsoft.AspNetCore.Mvc.ApplicationModels.InferParameterBindingInfoConvention.InferParameterBindingInfoConvention(Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider! modelMetadataProvider, Microsoft.Extensions.DependencyInjection.IServiceProviderIsService! serviceProviderIsService) -> void -*REMOVED*Microsoft.AspNetCore.Mvc.ControllerBase.TryUpdateModelAsync(TModel! model, string! prefix, Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider! valueProvider, params System.Linq.Expressions.Expression!>![]! includeExpressions) -> System.Threading.Tasks.Task! -*REMOVED*Microsoft.AspNetCore.Mvc.ControllerBase.TryUpdateModelAsync(TModel! model, string! prefix, params System.Linq.Expressions.Expression!>![]! includeExpressions) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Mvc.ControllerBase.TryUpdateModelAsync(TModel! model, string! prefix, Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider! valueProvider, params System.Linq.Expressions.Expression!>![]! includeExpressions) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Mvc.ControllerBase.TryUpdateModelAsync(TModel! model, string! prefix, params System.Linq.Expressions.Expression!>![]! includeExpressions) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Mvc.ProblemDetails (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ProblemDetails.Detail.get -> string? (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ProblemDetails.Detail.set -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ProblemDetails.Extensions.get -> System.Collections.Generic.IDictionary! (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ProblemDetails.Instance.get -> string? (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ProblemDetails.Instance.set -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ProblemDetails.ProblemDetails() -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ProblemDetails.Status.get -> int? (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ProblemDetails.Status.set -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ProblemDetails.Title.get -> string? (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ProblemDetails.Title.set -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ProblemDetails.Type.get -> string? (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ProblemDetails.Type.set -> void (forwarded, contained in Microsoft.AspNetCore.Http.Abstractions) -Microsoft.AspNetCore.Mvc.ModelBinding.Binders.TryParseModelBinderProvider -Microsoft.AspNetCore.Mvc.ModelBinding.Binders.TryParseModelBinderProvider.GetBinder(Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderProviderContext! context) -> Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder? -Microsoft.AspNetCore.Mvc.ModelBinding.Binders.TryParseModelBinderProvider.TryParseModelBinderProvider() -> void -Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.SystemTextJsonValidationMetadataProvider -Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.SystemTextJsonValidationMetadataProvider.CreateDisplayMetadata(Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DisplayMetadataProviderContext! context) -> void -Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.SystemTextJsonValidationMetadataProvider.CreateValidationMetadata(Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ValidationMetadataProviderContext! context) -> void -Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.SystemTextJsonValidationMetadataProvider.SystemTextJsonValidationMetadataProvider() -> void -Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.SystemTextJsonValidationMetadataProvider.SystemTextJsonValidationMetadataProvider(System.Text.Json.JsonNamingPolicy! namingPolicy) -> void -Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ValidationMetadata.ValidationModelName.get -> string? -Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ValidationMetadata.ValidationModelName.set -> void -override Microsoft.AspNetCore.Mvc.ModelBinding.JQueryFormValueProvider.GetValue(string! key) -> Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult -virtual Microsoft.AspNetCore.Mvc.Infrastructure.ConfigureCompatibilityOptions.PostConfigure(string? name, TOptions! options) -> void -static Microsoft.AspNetCore.Mvc.ControllerBase.Empty.get -> Microsoft.AspNetCore.Mvc.EmptyResult! -*REMOVED*virtual Microsoft.AspNetCore.Mvc.ModelBinding.DefaultPropertyFilterProvider.PropertyIncludeExpressions.get -> System.Collections.Generic.IEnumerable!>!>? -virtual Microsoft.AspNetCore.Mvc.ModelBinding.DefaultPropertyFilterProvider.PropertyIncludeExpressions.get -> System.Collections.Generic.IEnumerable!>!>? diff --git a/src/Mvc/Mvc.DataAnnotations/src/PublicAPI.Shipped.txt b/src/Mvc/Mvc.DataAnnotations/src/PublicAPI.Shipped.txt index e0613ca3a52e..50589985773e 100644 --- a/src/Mvc/Mvc.DataAnnotations/src/PublicAPI.Shipped.txt +++ b/src/Mvc/Mvc.DataAnnotations/src/PublicAPI.Shipped.txt @@ -1,9 +1,8 @@ #nullable enable -Microsoft.AspNetCore.Mvc.DataAnnotations.AttributeAdapterBase -Microsoft.AspNetCore.Mvc.DataAnnotations.ValidationAttributeAdapter abstract Microsoft.AspNetCore.Mvc.DataAnnotations.AttributeAdapterBase.GetErrorMessage(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContextBase! validationContext) -> string! abstract Microsoft.AspNetCore.Mvc.DataAnnotations.ValidationAttributeAdapter.AddValidation(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientModelValidationContext! context) -> void abstract Microsoft.AspNetCore.Mvc.DataAnnotations.ValidationProviderAttribute.GetValidationAttributes() -> System.Collections.Generic.IEnumerable! +Microsoft.AspNetCore.Mvc.DataAnnotations.AttributeAdapterBase Microsoft.AspNetCore.Mvc.DataAnnotations.AttributeAdapterBase.AttributeAdapterBase(TAttribute! attribute, Microsoft.Extensions.Localization.IStringLocalizer? stringLocalizer) -> void Microsoft.AspNetCore.Mvc.DataAnnotations.IAttributeAdapter Microsoft.AspNetCore.Mvc.DataAnnotations.IAttributeAdapter.GetErrorMessage(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContextBase! validationContext) -> string! @@ -14,6 +13,7 @@ Microsoft.AspNetCore.Mvc.DataAnnotations.MvcDataAnnotationsLocalizationOptions.D Microsoft.AspNetCore.Mvc.DataAnnotations.MvcDataAnnotationsLocalizationOptions.MvcDataAnnotationsLocalizationOptions() -> void Microsoft.AspNetCore.Mvc.DataAnnotations.RequiredAttributeAdapter Microsoft.AspNetCore.Mvc.DataAnnotations.RequiredAttributeAdapter.RequiredAttributeAdapter(System.ComponentModel.DataAnnotations.RequiredAttribute! attribute, Microsoft.Extensions.Localization.IStringLocalizer? stringLocalizer) -> void +Microsoft.AspNetCore.Mvc.DataAnnotations.ValidationAttributeAdapter Microsoft.AspNetCore.Mvc.DataAnnotations.ValidationAttributeAdapter.Attribute.get -> TAttribute! Microsoft.AspNetCore.Mvc.DataAnnotations.ValidationAttributeAdapter.ValidationAttributeAdapter(TAttribute! attribute, Microsoft.Extensions.Localization.IStringLocalizer? stringLocalizer) -> void Microsoft.AspNetCore.Mvc.DataAnnotations.ValidationAttributeAdapterProvider diff --git a/src/Mvc/Mvc.NewtonsoftJson/src/PublicAPI.Shipped.txt b/src/Mvc/Mvc.NewtonsoftJson/src/PublicAPI.Shipped.txt index f0d57ee8afe3..8e48fa5b3040 100644 --- a/src/Mvc/Mvc.NewtonsoftJson/src/PublicAPI.Shipped.txt +++ b/src/Mvc/Mvc.NewtonsoftJson/src/PublicAPI.Shipped.txt @@ -1,6 +1,4 @@ #nullable enable -static Microsoft.AspNetCore.Mvc.JsonPatchExtensions.ApplyTo(this Microsoft.AspNetCore.JsonPatch.JsonPatchDocument! patchDoc, T! objectToApplyTo, Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary! modelState) -> void -static Microsoft.AspNetCore.Mvc.JsonPatchExtensions.ApplyTo(this Microsoft.AspNetCore.JsonPatch.JsonPatchDocument! patchDoc, T! objectToApplyTo, Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary! modelState, string! prefix) -> void Microsoft.AspNetCore.Mvc.Formatters.NewtonsoftJsonInputFormatter Microsoft.AspNetCore.Mvc.Formatters.NewtonsoftJsonInputFormatter.NewtonsoftJsonInputFormatter(Microsoft.Extensions.Logging.ILogger! logger, Newtonsoft.Json.JsonSerializerSettings! serializerSettings, System.Buffers.ArrayPool! charPool, Microsoft.Extensions.ObjectPool.ObjectPoolProvider! objectPoolProvider, Microsoft.AspNetCore.Mvc.MvcOptions! options, Microsoft.AspNetCore.Mvc.MvcNewtonsoftJsonOptions! jsonOptions) -> void Microsoft.AspNetCore.Mvc.Formatters.NewtonsoftJsonInputFormatter.SerializerSettings.get -> Newtonsoft.Json.JsonSerializerSettings! @@ -23,6 +21,11 @@ Microsoft.AspNetCore.Mvc.MvcNewtonsoftJsonOptions.ReadJsonWithRequestCulture.get Microsoft.AspNetCore.Mvc.MvcNewtonsoftJsonOptions.ReadJsonWithRequestCulture.set -> void Microsoft.AspNetCore.Mvc.MvcNewtonsoftJsonOptions.SerializerSettings.get -> Newtonsoft.Json.JsonSerializerSettings! Microsoft.AspNetCore.Mvc.NewtonsoftJson.JsonSerializerSettingsProvider +Microsoft.AspNetCore.Mvc.NewtonsoftJson.NewtonsoftJsonValidationMetadataProvider +Microsoft.AspNetCore.Mvc.NewtonsoftJson.NewtonsoftJsonValidationMetadataProvider.CreateDisplayMetadata(Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DisplayMetadataProviderContext! context) -> void +Microsoft.AspNetCore.Mvc.NewtonsoftJson.NewtonsoftJsonValidationMetadataProvider.CreateValidationMetadata(Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ValidationMetadataProviderContext! context) -> void +Microsoft.AspNetCore.Mvc.NewtonsoftJson.NewtonsoftJsonValidationMetadataProvider.NewtonsoftJsonValidationMetadataProvider() -> void +Microsoft.AspNetCore.Mvc.NewtonsoftJson.NewtonsoftJsonValidationMetadataProvider.NewtonsoftJsonValidationMetadataProvider(Newtonsoft.Json.Serialization.NamingStrategy! namingStrategy) -> void Microsoft.AspNetCore.Mvc.NewtonsoftJson.ProblemDetailsConverter Microsoft.AspNetCore.Mvc.NewtonsoftJson.ProblemDetailsConverter.ProblemDetailsConverter() -> void Microsoft.AspNetCore.Mvc.NewtonsoftJson.ValidationProblemDetailsConverter @@ -42,6 +45,8 @@ override Microsoft.AspNetCore.Mvc.NewtonsoftJson.ProblemDetailsConverter.WriteJs override Microsoft.AspNetCore.Mvc.NewtonsoftJson.ValidationProblemDetailsConverter.CanConvert(System.Type! objectType) -> bool override Microsoft.AspNetCore.Mvc.NewtonsoftJson.ValidationProblemDetailsConverter.ReadJson(Newtonsoft.Json.JsonReader! reader, System.Type! objectType, object? existingValue, Newtonsoft.Json.JsonSerializer! serializer) -> object? override Microsoft.AspNetCore.Mvc.NewtonsoftJson.ValidationProblemDetailsConverter.WriteJson(Newtonsoft.Json.JsonWriter! writer, object? value, Newtonsoft.Json.JsonSerializer! serializer) -> void +static Microsoft.AspNetCore.Mvc.JsonPatchExtensions.ApplyTo(this Microsoft.AspNetCore.JsonPatch.JsonPatchDocument! patchDoc, T! objectToApplyTo, Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary! modelState) -> void +static Microsoft.AspNetCore.Mvc.JsonPatchExtensions.ApplyTo(this Microsoft.AspNetCore.JsonPatch.JsonPatchDocument! patchDoc, T! objectToApplyTo, Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary! modelState, string! prefix) -> void static Microsoft.AspNetCore.Mvc.NewtonsoftJson.JsonSerializerSettingsProvider.CreateSerializerSettings() -> Newtonsoft.Json.JsonSerializerSettings! static Microsoft.AspNetCore.Mvc.Rendering.JsonHelperExtensions.Serialize(this Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper! jsonHelper, object! value, Newtonsoft.Json.JsonSerializerSettings! serializerSettings) -> Microsoft.AspNetCore.Html.IHtmlContent! static Microsoft.Extensions.DependencyInjection.MvcNewtonsoftJsonOptionsExtensions.UseCamelCasing(this Microsoft.AspNetCore.Mvc.MvcNewtonsoftJsonOptions! options, bool processDictionaryKeys) -> Microsoft.AspNetCore.Mvc.MvcNewtonsoftJsonOptions! diff --git a/src/Mvc/Mvc.NewtonsoftJson/src/PublicAPI.Unshipped.txt b/src/Mvc/Mvc.NewtonsoftJson/src/PublicAPI.Unshipped.txt index bd9df5e8e8a9..7dc5c58110bf 100644 --- a/src/Mvc/Mvc.NewtonsoftJson/src/PublicAPI.Unshipped.txt +++ b/src/Mvc/Mvc.NewtonsoftJson/src/PublicAPI.Unshipped.txt @@ -1,6 +1 @@ #nullable enable -Microsoft.AspNetCore.Mvc.NewtonsoftJson.NewtonsoftJsonValidationMetadataProvider -Microsoft.AspNetCore.Mvc.NewtonsoftJson.NewtonsoftJsonValidationMetadataProvider.CreateDisplayMetadata(Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DisplayMetadataProviderContext! context) -> void -Microsoft.AspNetCore.Mvc.NewtonsoftJson.NewtonsoftJsonValidationMetadataProvider.CreateValidationMetadata(Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ValidationMetadataProviderContext! context) -> void -Microsoft.AspNetCore.Mvc.NewtonsoftJson.NewtonsoftJsonValidationMetadataProvider.NewtonsoftJsonValidationMetadataProvider() -> void -Microsoft.AspNetCore.Mvc.NewtonsoftJson.NewtonsoftJsonValidationMetadataProvider.NewtonsoftJsonValidationMetadataProvider(Newtonsoft.Json.Serialization.NamingStrategy! namingStrategy) -> void diff --git a/src/Mvc/Mvc.Razor/src/PublicAPI.Shipped.txt b/src/Mvc/Mvc.Razor/src/PublicAPI.Shipped.txt index e1e2f99e0be5..61b0c8356f43 100644 --- a/src/Mvc/Mvc.Razor/src/PublicAPI.Shipped.txt +++ b/src/Mvc/Mvc.Razor/src/PublicAPI.Shipped.txt @@ -1,5 +1,4 @@ #nullable enable -Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine.RazorViewEngine(Microsoft.AspNetCore.Mvc.Razor.IRazorPageFactoryProvider! pageFactory, Microsoft.AspNetCore.Mvc.Razor.IRazorPageActivator! pageActivator, System.Text.Encodings.Web.HtmlEncoder! htmlEncoder, Microsoft.Extensions.Options.IOptions! optionsAccessor, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, System.Diagnostics.DiagnosticListener! diagnosticListener) -> void abstract Microsoft.AspNetCore.Mvc.Razor.RazorPageBase.BeginContext(int position, int length, bool isLiteral) -> void abstract Microsoft.AspNetCore.Mvc.Razor.RazorPageBase.EndContext() -> void abstract Microsoft.AspNetCore.Mvc.Razor.RazorPageBase.EnsureRenderedBodyOrSections() -> void @@ -110,7 +109,7 @@ Microsoft.AspNetCore.Mvc.Razor.RazorPage.RenderSection(string! name, bool requir Microsoft.AspNetCore.Mvc.Razor.RazorPage.RenderSectionAsync(string! name) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Mvc.Razor.RazorPage.RenderSectionAsync(string! name, bool required) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Mvc.Razor.RazorPage -Microsoft.AspNetCore.Mvc.Razor.RazorPage.Model.get -> TModel? +Microsoft.AspNetCore.Mvc.Razor.RazorPage.Model.get -> TModel Microsoft.AspNetCore.Mvc.Razor.RazorPage.RazorPage() -> void Microsoft.AspNetCore.Mvc.Razor.RazorPage.ViewData.get -> Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary! Microsoft.AspNetCore.Mvc.Razor.RazorPage.ViewData.set -> void @@ -148,15 +147,15 @@ Microsoft.AspNetCore.Mvc.Razor.RazorPageBase.TempData.get -> Microsoft.AspNetCor Microsoft.AspNetCore.Mvc.Razor.RazorPageBase.ViewBag.get -> dynamic! Microsoft.AspNetCore.Mvc.Razor.RazorPageBase.WriteAttributeValue(string! prefix, int prefixOffset, object? value, int valueOffset, int valueLength, bool isLiteral) -> void Microsoft.AspNetCore.Mvc.Razor.RazorPageFactoryResult -Microsoft.AspNetCore.Mvc.Razor.RazorPageFactoryResult.RazorPageFactoryResult() -> void Microsoft.AspNetCore.Mvc.Razor.RazorPageFactoryResult.RazorPageFactory.get -> System.Func? +Microsoft.AspNetCore.Mvc.Razor.RazorPageFactoryResult.RazorPageFactoryResult() -> void Microsoft.AspNetCore.Mvc.Razor.RazorPageFactoryResult.RazorPageFactoryResult(Microsoft.AspNetCore.Mvc.Razor.Compilation.CompiledViewDescriptor! viewDescriptor, System.Func? razorPageFactory) -> void Microsoft.AspNetCore.Mvc.Razor.RazorPageFactoryResult.Success.get -> bool Microsoft.AspNetCore.Mvc.Razor.RazorPageFactoryResult.ViewDescriptor.get -> Microsoft.AspNetCore.Mvc.Razor.Compilation.CompiledViewDescriptor? Microsoft.AspNetCore.Mvc.Razor.RazorPageResult -Microsoft.AspNetCore.Mvc.Razor.RazorPageResult.RazorPageResult() -> void Microsoft.AspNetCore.Mvc.Razor.RazorPageResult.Name.get -> string! Microsoft.AspNetCore.Mvc.Razor.RazorPageResult.Page.get -> Microsoft.AspNetCore.Mvc.Razor.IRazorPage? +Microsoft.AspNetCore.Mvc.Razor.RazorPageResult.RazorPageResult() -> void Microsoft.AspNetCore.Mvc.Razor.RazorPageResult.RazorPageResult(string! name, Microsoft.AspNetCore.Mvc.Razor.IRazorPage! page) -> void Microsoft.AspNetCore.Mvc.Razor.RazorPageResult.RazorPageResult(string! name, System.Collections.Generic.IEnumerable! searchedLocations) -> void Microsoft.AspNetCore.Mvc.Razor.RazorPageResult.SearchedLocations.get -> System.Collections.Generic.IEnumerable? @@ -171,6 +170,7 @@ Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine.FindView(Microsoft.AspNetCore.Mvc Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine.GetAbsolutePath(string? executingFilePath, string? pagePath) -> string? Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine.GetPage(string! executingFilePath, string! pagePath) -> Microsoft.AspNetCore.Mvc.Razor.RazorPageResult Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine.GetView(string? executingFilePath, string! viewPath, bool isMainPage) -> Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult! +Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine.RazorViewEngine(Microsoft.AspNetCore.Mvc.Razor.IRazorPageFactoryProvider! pageFactory, Microsoft.AspNetCore.Mvc.Razor.IRazorPageActivator! pageActivator, System.Text.Encodings.Web.HtmlEncoder! htmlEncoder, Microsoft.Extensions.Options.IOptions! optionsAccessor, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, System.Diagnostics.DiagnosticListener! diagnosticListener) -> void Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine.ViewLookupCache.get -> Microsoft.Extensions.Caching.Memory.IMemoryCache! Microsoft.AspNetCore.Mvc.Razor.RazorViewEngineOptions Microsoft.AspNetCore.Mvc.Razor.RazorViewEngineOptions.AreaPageViewLocationFormats.get -> System.Collections.Generic.IList! diff --git a/src/Mvc/Mvc.Razor/src/PublicAPI.Unshipped.txt b/src/Mvc/Mvc.Razor/src/PublicAPI.Unshipped.txt index 5b615e3dde8c..7dc5c58110bf 100644 --- a/src/Mvc/Mvc.Razor/src/PublicAPI.Unshipped.txt +++ b/src/Mvc/Mvc.Razor/src/PublicAPI.Unshipped.txt @@ -1,3 +1 @@ #nullable enable -*REMOVED*Microsoft.AspNetCore.Mvc.Razor.RazorPage.Model.get -> TModel? -Microsoft.AspNetCore.Mvc.Razor.RazorPage.Model.get -> TModel diff --git a/src/Mvc/Mvc.RazorPages/src/PublicAPI.Shipped.txt b/src/Mvc/Mvc.RazorPages/src/PublicAPI.Shipped.txt index 8102a701f724..977d073ed0da 100644 --- a/src/Mvc/Mvc.RazorPages/src/PublicAPI.Shipped.txt +++ b/src/Mvc/Mvc.RazorPages/src/PublicAPI.Shipped.txt @@ -1,6 +1,4 @@ #nullable enable -Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.CompiledPageActionDescriptorProvider.CompiledPageActionDescriptorProvider(System.Collections.Generic.IEnumerable! pageRouteModelProviders, System.Collections.Generic.IEnumerable! applicationModelProviders, Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartManager! applicationPartManager, Microsoft.Extensions.Options.IOptions! mvcOptions, Microsoft.Extensions.Options.IOptions! pageOptions) -> void -Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.PageActionDescriptorProvider.PageActionDescriptorProvider(System.Collections.Generic.IEnumerable! pageRouteModelProviders, Microsoft.Extensions.Options.IOptions! mvcOptionsAccessor, Microsoft.Extensions.Options.IOptions! pagesOptionsAccessor) -> void abstract Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.PageLoader.LoadAsync(Microsoft.AspNetCore.Mvc.RazorPages.PageActionDescriptor! actionDescriptor) -> System.Threading.Tasks.Task! const Microsoft.AspNetCore.Mvc.Diagnostics.AfterHandlerMethodEventData.EventName = "Microsoft.AspNetCore.Mvc.AfterHandlerMethod" -> string! const Microsoft.AspNetCore.Mvc.Diagnostics.AfterPageFilterOnPageHandlerExecutedEventData.EventName = "Microsoft.AspNetCore.Mvc.AfterOnPageHandlerExecuted" -> string! @@ -16,6 +14,7 @@ const Microsoft.AspNetCore.Mvc.Diagnostics.BeforePageFilterOnPageHandlerSelected const Microsoft.AspNetCore.Mvc.Diagnostics.BeforePageFilterOnPageHandlerSelectionEventData.EventName = "Microsoft.AspNetCore.Mvc.BeforeOnPageHandlerSelection" -> string! Microsoft.AspNetCore.Builder.PageActionEndpointConventionBuilder Microsoft.AspNetCore.Builder.PageActionEndpointConventionBuilder.Add(System.Action! convention) -> void +Microsoft.AspNetCore.Builder.PageActionEndpointConventionBuilder.Finally(System.Action! finalConvention) -> void Microsoft.AspNetCore.Builder.RazorPagesEndpointRouteBuilderExtensions Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelConvention Microsoft.AspNetCore.Mvc.ApplicationModels.IPageApplicationModelConvention.Apply(Microsoft.AspNetCore.Mvc.ApplicationModels.PageApplicationModel! model) -> void @@ -223,6 +222,7 @@ Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor.ModelTypeInfo.s Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor.PageTypeInfo.get -> System.Reflection.TypeInfo! Microsoft.AspNetCore.Mvc.RazorPages.CompiledPageActionDescriptor.PageTypeInfo.set -> void Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.CompiledPageActionDescriptorProvider +Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.CompiledPageActionDescriptorProvider.CompiledPageActionDescriptorProvider(System.Collections.Generic.IEnumerable! pageRouteModelProviders, System.Collections.Generic.IEnumerable! applicationModelProviders, Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartManager! applicationPartManager, Microsoft.Extensions.Options.IOptions! mvcOptions, Microsoft.Extensions.Options.IOptions! pageOptions) -> void Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.CompiledPageActionDescriptorProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptorProviderContext! context) -> void Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.CompiledPageActionDescriptorProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptorProviderContext! context) -> void Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.CompiledPageActionDescriptorProvider.Order.get -> int @@ -250,6 +250,7 @@ Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.PageActionDescriptorProvider. Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.PageActionDescriptorProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptorProviderContext! context) -> void Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.PageActionDescriptorProvider.Order.get -> int Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.PageActionDescriptorProvider.Order.set -> void +Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.PageActionDescriptorProvider.PageActionDescriptorProvider(System.Collections.Generic.IEnumerable! pageRouteModelProviders, Microsoft.Extensions.Options.IOptions! mvcOptionsAccessor, Microsoft.Extensions.Options.IOptions! pagesOptionsAccessor) -> void Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.PageBoundPropertyDescriptor Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.PageBoundPropertyDescriptor.PageBoundPropertyDescriptor() -> void Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.PageBoundPropertyDescriptor.Property.get -> System.Reflection.PropertyInfo! @@ -329,9 +330,9 @@ Microsoft.AspNetCore.Mvc.RazorPages.PageBase.Request.get -> Microsoft.AspNetCore Microsoft.AspNetCore.Mvc.RazorPages.PageBase.Response.get -> Microsoft.AspNetCore.Http.HttpResponse! Microsoft.AspNetCore.Mvc.RazorPages.PageBase.RouteData.get -> Microsoft.AspNetCore.Routing.RouteData! Microsoft.AspNetCore.Mvc.RazorPages.PageBase.TryUpdateModelAsync(object! model, System.Type! modelType, string! prefix, Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider! valueProvider, System.Func! propertyFilter) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Mvc.RazorPages.PageBase.TryUpdateModelAsync(TModel! model, string! prefix, Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider! valueProvider, params System.Linq.Expressions.Expression!>![]! includeExpressions) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Mvc.RazorPages.PageBase.TryUpdateModelAsync(TModel! model, string! prefix, Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider! valueProvider, params System.Linq.Expressions.Expression!>![]! includeExpressions) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Mvc.RazorPages.PageBase.TryUpdateModelAsync(TModel! model, string! prefix, Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider! valueProvider, System.Func! propertyFilter) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Mvc.RazorPages.PageBase.TryUpdateModelAsync(TModel! model, string! prefix, params System.Linq.Expressions.Expression!>![]! includeExpressions) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Mvc.RazorPages.PageBase.TryUpdateModelAsync(TModel! model, string! prefix, params System.Linq.Expressions.Expression!>![]! includeExpressions) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Mvc.RazorPages.PageBase.TryUpdateModelAsync(TModel! model, string! prefix, System.Func! propertyFilter) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Mvc.RazorPages.PageContext Microsoft.AspNetCore.Mvc.RazorPages.PageContext.PageContext() -> void @@ -357,9 +358,9 @@ Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryUpdateModelAsync(object! model, Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryUpdateModelAsync(TModel! model) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryUpdateModelAsync(TModel! model, string! name) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryUpdateModelAsync(TModel! model, string! name, Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider! valueProvider) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryUpdateModelAsync(TModel! model, string! name, Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider! valueProvider, params System.Linq.Expressions.Expression!>![]! includeExpressions) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryUpdateModelAsync(TModel! model, string! name, Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider! valueProvider, params System.Linq.Expressions.Expression!>![]! includeExpressions) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryUpdateModelAsync(TModel! model, string! name, Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider! valueProvider, System.Func! propertyFilter) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryUpdateModelAsync(TModel! model, string! name, params System.Linq.Expressions.Expression!>![]! includeExpressions) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryUpdateModelAsync(TModel! model, string! name, params System.Linq.Expressions.Expression!>![]! includeExpressions) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryUpdateModelAsync(TModel! model, string! name, System.Func! propertyFilter) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Mvc.RazorPages.PageModel.Url.get -> Microsoft.AspNetCore.Mvc.IUrlHelper! Microsoft.AspNetCore.Mvc.RazorPages.PageModel.Url.set -> void diff --git a/src/Mvc/Mvc.RazorPages/src/PublicAPI.Unshipped.txt b/src/Mvc/Mvc.RazorPages/src/PublicAPI.Unshipped.txt index 012e19690a73..7dc5c58110bf 100644 --- a/src/Mvc/Mvc.RazorPages/src/PublicAPI.Unshipped.txt +++ b/src/Mvc/Mvc.RazorPages/src/PublicAPI.Unshipped.txt @@ -1,10 +1 @@ #nullable enable -*REMOVED*Microsoft.AspNetCore.Mvc.RazorPages.PageBase.TryUpdateModelAsync(TModel! model, string! prefix, Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider! valueProvider, params System.Linq.Expressions.Expression!>![]! includeExpressions) -> System.Threading.Tasks.Task! -*REMOVED*Microsoft.AspNetCore.Mvc.RazorPages.PageBase.TryUpdateModelAsync(TModel! model, string! prefix, params System.Linq.Expressions.Expression!>![]! includeExpressions) -> System.Threading.Tasks.Task! -*REMOVED*Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryUpdateModelAsync(TModel! model, string! name, Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider! valueProvider, params System.Linq.Expressions.Expression!>![]! includeExpressions) -> System.Threading.Tasks.Task! -*REMOVED*Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryUpdateModelAsync(TModel! model, string! name, params System.Linq.Expressions.Expression!>![]! includeExpressions) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Builder.PageActionEndpointConventionBuilder.Finally(System.Action! finalConvention) -> void -Microsoft.AspNetCore.Mvc.RazorPages.PageBase.TryUpdateModelAsync(TModel! model, string! prefix, Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider! valueProvider, params System.Linq.Expressions.Expression!>![]! includeExpressions) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Mvc.RazorPages.PageBase.TryUpdateModelAsync(TModel! model, string! prefix, params System.Linq.Expressions.Expression!>![]! includeExpressions) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryUpdateModelAsync(TModel! model, string! name, Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider! valueProvider, params System.Linq.Expressions.Expression!>![]! includeExpressions) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Mvc.RazorPages.PageModel.TryUpdateModelAsync(TModel! model, string! name, params System.Linq.Expressions.Expression!>![]! includeExpressions) -> System.Threading.Tasks.Task! diff --git a/src/Mvc/Mvc.Testing/src/PublicAPI.Shipped.txt b/src/Mvc/Mvc.Testing/src/PublicAPI.Shipped.txt index 1fc4c320aced..cd734b7284fb 100644 --- a/src/Mvc/Mvc.Testing/src/PublicAPI.Shipped.txt +++ b/src/Mvc/Mvc.Testing/src/PublicAPI.Shipped.txt @@ -1,5 +1,4 @@ #nullable enable -Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory Microsoft.AspNetCore.Mvc.Testing.Handlers.CookieContainerHandler Microsoft.AspNetCore.Mvc.Testing.Handlers.CookieContainerHandler.Container.get -> System.Net.CookieContainer! Microsoft.AspNetCore.Mvc.Testing.Handlers.CookieContainerHandler.CookieContainerHandler() -> void @@ -8,6 +7,7 @@ Microsoft.AspNetCore.Mvc.Testing.Handlers.RedirectHandler Microsoft.AspNetCore.Mvc.Testing.Handlers.RedirectHandler.MaxRedirects.get -> int Microsoft.AspNetCore.Mvc.Testing.Handlers.RedirectHandler.RedirectHandler() -> void Microsoft.AspNetCore.Mvc.Testing.Handlers.RedirectHandler.RedirectHandler(int maxRedirects) -> void +Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory.~WebApplicationFactory() -> void Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory.ClientOptions.get -> Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactoryClientOptions! Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory.CreateClient() -> System.Net.Http.HttpClient! diff --git a/src/Mvc/Mvc.ViewFeatures/src/PublicAPI.Shipped.txt b/src/Mvc/Mvc.ViewFeatures/src/PublicAPI.Shipped.txt index caf420cc56c6..1d453bf49319 100644 --- a/src/Mvc/Mvc.ViewFeatures/src/PublicAPI.Shipped.txt +++ b/src/Mvc/Mvc.ViewFeatures/src/PublicAPI.Shipped.txt @@ -181,7 +181,6 @@ ~Microsoft.AspNetCore.Mvc.ViewComponents.ViewComponentDescriptorCollection.ViewComponentDescriptorCollection(System.Collections.Generic.IEnumerable items, int version) -> void ~Microsoft.AspNetCore.Mvc.ViewComponents.ViewComponentFeature.ViewComponents.get -> System.Collections.Generic.IList ~Microsoft.AspNetCore.Mvc.ViewComponents.ViewComponentFeatureProvider.PopulateFeature(System.Collections.Generic.IEnumerable parts, Microsoft.AspNetCore.Mvc.ViewComponents.ViewComponentFeature feature) -> void -Microsoft.AspNetCore.Mvc.ViewEngines.CompositeViewEngine.CompositeViewEngine(Microsoft.Extensions.Options.IOptions! optionsAccessor) -> void ~Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.IViewBufferScope.CreateWriter(System.IO.TextWriter writer) -> System.IO.TextWriter ~Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.IViewBufferScope.GetPage(int pageSize) -> Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue[] ~Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.IViewBufferScope.ReturnSegment(Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue[] segment) -> void @@ -330,7 +329,6 @@ Microsoft.AspNetCore.Mvc.ViewEngines.CompositeViewEngine.CompositeViewEngine(Mic ~Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpressionProvider.CreateModelExpression(Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary viewData, string expression) -> Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression ~Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpressionProvider.GetExpressionText(System.Linq.Expressions.Expression> expression) -> string ~Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpressionProvider.ModelExpressionProvider(Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider modelMetadataProvider) -> void -Microsoft.AspNetCore.Mvc.ViewFeatures.PartialViewResultExecutor.PartialViewResultExecutor(Microsoft.Extensions.Options.IOptions! viewOptions, Microsoft.AspNetCore.Mvc.Infrastructure.IHttpResponseStreamWriterFactory! writerFactory, Microsoft.AspNetCore.Mvc.ViewEngines.ICompositeViewEngine! viewEngine, Microsoft.AspNetCore.Mvc.ViewFeatures.ITempDataDictionaryFactory! tempDataFactory, System.Diagnostics.DiagnosticListener! diagnosticListener, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider! modelMetadataProvider) -> void ~Microsoft.AspNetCore.Mvc.ViewFeatures.SessionStateTempDataProvider.SessionStateTempDataProvider(Microsoft.AspNetCore.Mvc.ViewFeatures.Infrastructure.TempDataSerializer tempDataSerializer) -> void ~Microsoft.AspNetCore.Mvc.ViewFeatures.TempDataDictionaryFactory.GetTempData(Microsoft.AspNetCore.Http.HttpContext context) -> Microsoft.AspNetCore.Mvc.ViewFeatures.ITempDataDictionary ~Microsoft.AspNetCore.Mvc.ViewFeatures.TempDataDictionaryFactory.TempDataDictionaryFactory(Microsoft.AspNetCore.Mvc.ViewFeatures.ITempDataProvider provider) -> void @@ -342,7 +340,6 @@ Microsoft.AspNetCore.Mvc.ViewFeatures.PartialViewResultExecutor.PartialViewResul ~Microsoft.AspNetCore.Mvc.ViewFeatures.TemplateInfo.HtmlFieldPrefix.set -> void ~Microsoft.AspNetCore.Mvc.ViewFeatures.TemplateInfo.TemplateInfo(Microsoft.AspNetCore.Mvc.ViewFeatures.TemplateInfo original) -> void ~Microsoft.AspNetCore.Mvc.ViewFeatures.TemplateInfo.Visited(Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExplorer modelExplorer) -> bool -Microsoft.AspNetCore.Mvc.ViewFeatures.ViewComponentResultExecutor.ViewComponentResultExecutor(Microsoft.Extensions.Options.IOptions! mvcHelperOptions, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, System.Text.Encodings.Web.HtmlEncoder! htmlEncoder, Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider! modelMetadataProvider, Microsoft.AspNetCore.Mvc.ViewFeatures.ITempDataDictionaryFactory! tempDataDictionaryFactory, Microsoft.AspNetCore.Mvc.Infrastructure.IHttpResponseStreamWriterFactory! writerFactory) -> void ~Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionaryControllerPropertyActivator.Activate(Microsoft.AspNetCore.Mvc.ControllerContext actionContext, object controller) -> void ~Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionaryControllerPropertyActivator.GetActivatorDelegate(Microsoft.AspNetCore.Mvc.Controllers.ControllerActionDescriptor actionDescriptor) -> System.Action ~Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionaryControllerPropertyActivator.ViewDataDictionaryControllerPropertyActivator(Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider modelMetadataProvider) -> void @@ -353,8 +350,6 @@ Microsoft.AspNetCore.Mvc.ViewFeatures.ViewComponentResultExecutor.ViewComponentR ~Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataInfo.ViewDataInfo(object container, object value) -> void ~Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataInfo.ViewDataInfo(object container, System.Reflection.PropertyInfo propertyInfo) -> void ~Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataInfo.ViewDataInfo(object container, System.Reflection.PropertyInfo propertyInfo, System.Func valueAccessor) -> void -Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ViewExecutor(Microsoft.Extensions.Options.IOptions! viewOptions, Microsoft.AspNetCore.Mvc.Infrastructure.IHttpResponseStreamWriterFactory! writerFactory, Microsoft.AspNetCore.Mvc.ViewEngines.ICompositeViewEngine! viewEngine, Microsoft.AspNetCore.Mvc.ViewFeatures.ITempDataDictionaryFactory! tempDataFactory, System.Diagnostics.DiagnosticListener! diagnosticListener, Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider! modelMetadataProvider) -> void -Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ViewResultExecutor(Microsoft.Extensions.Options.IOptions! viewOptions, Microsoft.AspNetCore.Mvc.Infrastructure.IHttpResponseStreamWriterFactory! writerFactory, Microsoft.AspNetCore.Mvc.ViewEngines.ICompositeViewEngine! viewEngine, Microsoft.AspNetCore.Mvc.ViewFeatures.ITempDataDictionaryFactory! tempDataFactory, System.Diagnostics.DiagnosticListener! diagnosticListener, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider! modelMetadataProvider) -> void ~override Microsoft.AspNetCore.Mvc.ViewFeatures.DefaultValidationHtmlAttributeProvider.AddValidationAttributes(Microsoft.AspNetCore.Mvc.Rendering.ViewContext viewContext, Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExplorer modelExplorer, System.Collections.Generic.IDictionary attributes) -> void ~override Microsoft.AspNetCore.Mvc.ViewFeatures.HtmlHelper.Contextualize(Microsoft.AspNetCore.Mvc.Rendering.ViewContext viewContext) -> void ~static Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionaryExtensions.AddModelError(this Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary modelState, System.Linq.Expressions.Expression> expression, string errorMessage) -> void @@ -681,6 +676,9 @@ Microsoft.AspNetCore.Mvc.Rendering.CheckBoxHiddenInputRenderMode Microsoft.AspNetCore.Mvc.Rendering.CheckBoxHiddenInputRenderMode.EndOfForm = 2 -> Microsoft.AspNetCore.Mvc.Rendering.CheckBoxHiddenInputRenderMode Microsoft.AspNetCore.Mvc.Rendering.CheckBoxHiddenInputRenderMode.Inline = 1 -> Microsoft.AspNetCore.Mvc.Rendering.CheckBoxHiddenInputRenderMode Microsoft.AspNetCore.Mvc.Rendering.CheckBoxHiddenInputRenderMode.None = 0 -> Microsoft.AspNetCore.Mvc.Rendering.CheckBoxHiddenInputRenderMode +Microsoft.AspNetCore.Mvc.Rendering.FormInputRenderMode +Microsoft.AspNetCore.Mvc.Rendering.FormInputRenderMode.AlwaysUseCurrentCulture = 1 -> Microsoft.AspNetCore.Mvc.Rendering.FormInputRenderMode +Microsoft.AspNetCore.Mvc.Rendering.FormInputRenderMode.DetectCultureFromInputType = 0 -> Microsoft.AspNetCore.Mvc.Rendering.FormInputRenderMode Microsoft.AspNetCore.Mvc.Rendering.FormMethod Microsoft.AspNetCore.Mvc.Rendering.FormMethod.Get = 0 -> Microsoft.AspNetCore.Mvc.Rendering.FormMethod Microsoft.AspNetCore.Mvc.Rendering.FormMethod.Post = 1 -> Microsoft.AspNetCore.Mvc.Rendering.FormMethod @@ -904,6 +902,7 @@ Microsoft.AspNetCore.Mvc.ViewDataAttribute.Key.get -> string? Microsoft.AspNetCore.Mvc.ViewDataAttribute.Key.set -> void Microsoft.AspNetCore.Mvc.ViewDataAttribute.ViewDataAttribute() -> void Microsoft.AspNetCore.Mvc.ViewEngines.CompositeViewEngine +Microsoft.AspNetCore.Mvc.ViewEngines.CompositeViewEngine.CompositeViewEngine(Microsoft.Extensions.Options.IOptions! optionsAccessor) -> void Microsoft.AspNetCore.Mvc.ViewEngines.CompositeViewEngine.FindView(Microsoft.AspNetCore.Mvc.ActionContext! context, string! viewName, bool isMainPage) -> Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult! Microsoft.AspNetCore.Mvc.ViewEngines.CompositeViewEngine.GetView(string? executingFilePath, string! viewPath, bool isMainPage) -> Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult! Microsoft.AspNetCore.Mvc.ViewEngines.CompositeViewEngine.ViewEngines.get -> System.Collections.Generic.IReadOnlyList! @@ -932,9 +931,9 @@ Microsoft.AspNetCore.Mvc.ViewFeatures.AttributeDictionary.ContainsKey(string! ke Microsoft.AspNetCore.Mvc.ViewFeatures.AttributeDictionary.CopyTo(System.Collections.Generic.KeyValuePair[]! array, int arrayIndex) -> void Microsoft.AspNetCore.Mvc.ViewFeatures.AttributeDictionary.Count.get -> int Microsoft.AspNetCore.Mvc.ViewFeatures.AttributeDictionary.Enumerator -Microsoft.AspNetCore.Mvc.ViewFeatures.AttributeDictionary.Enumerator.Enumerator() -> void Microsoft.AspNetCore.Mvc.ViewFeatures.AttributeDictionary.Enumerator.Current.get -> System.Collections.Generic.KeyValuePair Microsoft.AspNetCore.Mvc.ViewFeatures.AttributeDictionary.Enumerator.Dispose() -> void +Microsoft.AspNetCore.Mvc.ViewFeatures.AttributeDictionary.Enumerator.Enumerator() -> void Microsoft.AspNetCore.Mvc.ViewFeatures.AttributeDictionary.Enumerator.Enumerator(Microsoft.AspNetCore.Mvc.ViewFeatures.AttributeDictionary! attributes) -> void Microsoft.AspNetCore.Mvc.ViewFeatures.AttributeDictionary.Enumerator.MoveNext() -> bool Microsoft.AspNetCore.Mvc.ViewFeatures.AttributeDictionary.Enumerator.Reset() -> void @@ -974,6 +973,8 @@ Microsoft.AspNetCore.Mvc.ViewFeatures.HtmlHelperOptions.CheckBoxHiddenInputRende Microsoft.AspNetCore.Mvc.ViewFeatures.HtmlHelperOptions.CheckBoxHiddenInputRenderMode.set -> void Microsoft.AspNetCore.Mvc.ViewFeatures.HtmlHelperOptions.ClientValidationEnabled.get -> bool Microsoft.AspNetCore.Mvc.ViewFeatures.HtmlHelperOptions.ClientValidationEnabled.set -> void +Microsoft.AspNetCore.Mvc.ViewFeatures.HtmlHelperOptions.FormInputRenderMode.get -> Microsoft.AspNetCore.Mvc.Rendering.FormInputRenderMode +Microsoft.AspNetCore.Mvc.ViewFeatures.HtmlHelperOptions.FormInputRenderMode.set -> void Microsoft.AspNetCore.Mvc.ViewFeatures.HtmlHelperOptions.Html5DateRenderingMode.get -> Microsoft.AspNetCore.Mvc.Rendering.Html5DateRenderingMode Microsoft.AspNetCore.Mvc.ViewFeatures.HtmlHelperOptions.Html5DateRenderingMode.set -> void Microsoft.AspNetCore.Mvc.ViewFeatures.HtmlHelperOptions.HtmlHelperOptions() -> void @@ -1005,6 +1006,7 @@ Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpressionProvider Microsoft.AspNetCore.Mvc.ViewFeatures.ModelMetadataProviderExtensions Microsoft.AspNetCore.Mvc.ViewFeatures.PartialViewResultExecutor Microsoft.AspNetCore.Mvc.ViewFeatures.PartialViewResultExecutor.Logger.get -> Microsoft.Extensions.Logging.ILogger! +Microsoft.AspNetCore.Mvc.ViewFeatures.PartialViewResultExecutor.PartialViewResultExecutor(Microsoft.Extensions.Options.IOptions! viewOptions, Microsoft.AspNetCore.Mvc.Infrastructure.IHttpResponseStreamWriterFactory! writerFactory, Microsoft.AspNetCore.Mvc.ViewEngines.ICompositeViewEngine! viewEngine, Microsoft.AspNetCore.Mvc.ViewFeatures.ITempDataDictionaryFactory! tempDataFactory, System.Diagnostics.DiagnosticListener! diagnosticListener, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider! modelMetadataProvider) -> void Microsoft.AspNetCore.Mvc.ViewFeatures.SaveTempDataAttribute Microsoft.AspNetCore.Mvc.ViewFeatures.SaveTempDataAttribute.CreateInstance(System.IServiceProvider! serviceProvider) -> Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata! Microsoft.AspNetCore.Mvc.ViewFeatures.SaveTempDataAttribute.IsReusable.get -> bool @@ -1043,6 +1045,7 @@ Microsoft.AspNetCore.Mvc.ViewFeatures.TryGetValueProvider Microsoft.AspNetCore.Mvc.ViewFeatures.ValidationHtmlAttributeProvider Microsoft.AspNetCore.Mvc.ViewFeatures.ValidationHtmlAttributeProvider.ValidationHtmlAttributeProvider() -> void Microsoft.AspNetCore.Mvc.ViewFeatures.ViewComponentResultExecutor +Microsoft.AspNetCore.Mvc.ViewFeatures.ViewComponentResultExecutor.ViewComponentResultExecutor(Microsoft.Extensions.Options.IOptions! mvcHelperOptions, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, System.Text.Encodings.Web.HtmlEncoder! htmlEncoder, Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider! modelMetadataProvider, Microsoft.AspNetCore.Mvc.ViewFeatures.ITempDataDictionaryFactory! tempDataDictionaryFactory, Microsoft.AspNetCore.Mvc.Infrastructure.IHttpResponseStreamWriterFactory! writerFactory) -> void Microsoft.AspNetCore.Mvc.ViewFeatures.ViewContextAttribute Microsoft.AspNetCore.Mvc.ViewFeatures.ViewContextAttribute.ViewContextAttribute() -> void Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary @@ -1078,7 +1081,7 @@ Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.ViewDataDictionary(Micr Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.ViewDataDictionary(Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary! source, object? model, System.Type! declaredModelType) -> void Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.ViewDataDictionary(Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary! source, System.Type! declaredModelType) -> void Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary -Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.Model.get -> TModel? +Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.Model.get -> TModel Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.Model.set -> void Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.ViewDataDictionary(Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider! metadataProvider, Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary! modelState) -> void Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.ViewDataDictionary(Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary! source) -> void @@ -1095,11 +1098,13 @@ Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ModelMetadataProvider.get -> Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.TempDataFactory.get -> Microsoft.AspNetCore.Mvc.ViewFeatures.ITempDataDictionaryFactory? Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ViewEngine.get -> Microsoft.AspNetCore.Mvc.ViewEngines.IViewEngine! Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ViewExecutor(Microsoft.AspNetCore.Mvc.Infrastructure.IHttpResponseStreamWriterFactory! writerFactory, Microsoft.AspNetCore.Mvc.ViewEngines.ICompositeViewEngine! viewEngine, System.Diagnostics.DiagnosticListener! diagnosticListener) -> void +Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ViewExecutor(Microsoft.Extensions.Options.IOptions! viewOptions, Microsoft.AspNetCore.Mvc.Infrastructure.IHttpResponseStreamWriterFactory! writerFactory, Microsoft.AspNetCore.Mvc.ViewEngines.ICompositeViewEngine! viewEngine, Microsoft.AspNetCore.Mvc.ViewFeatures.ITempDataDictionaryFactory! tempDataFactory, System.Diagnostics.DiagnosticListener! diagnosticListener, Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider! modelMetadataProvider) -> void Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ViewOptions.get -> Microsoft.AspNetCore.Mvc.MvcViewOptions? Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.WriterFactory.get -> Microsoft.AspNetCore.Mvc.Infrastructure.IHttpResponseStreamWriterFactory! Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ExecuteAsync(Microsoft.AspNetCore.Mvc.ActionContext! context, Microsoft.AspNetCore.Mvc.ViewResult! result) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.Logger.get -> Microsoft.Extensions.Logging.ILogger! +Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor.ViewResultExecutor(Microsoft.Extensions.Options.IOptions! viewOptions, Microsoft.AspNetCore.Mvc.Infrastructure.IHttpResponseStreamWriterFactory! writerFactory, Microsoft.AspNetCore.Mvc.ViewEngines.ICompositeViewEngine! viewEngine, Microsoft.AspNetCore.Mvc.ViewFeatures.ITempDataDictionaryFactory! tempDataFactory, System.Diagnostics.DiagnosticListener! diagnosticListener, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider! modelMetadataProvider) -> void Microsoft.AspNetCore.Mvc.ViewResult Microsoft.AspNetCore.Mvc.ViewResult.ContentType.get -> string? Microsoft.AspNetCore.Mvc.ViewResult.ContentType.set -> void diff --git a/src/Mvc/Mvc.ViewFeatures/src/PublicAPI.Unshipped.txt b/src/Mvc/Mvc.ViewFeatures/src/PublicAPI.Unshipped.txt index adb19c0812e2..7dc5c58110bf 100644 --- a/src/Mvc/Mvc.ViewFeatures/src/PublicAPI.Unshipped.txt +++ b/src/Mvc/Mvc.ViewFeatures/src/PublicAPI.Unshipped.txt @@ -1,8 +1 @@ #nullable enable -*REMOVED*Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.Model.get -> TModel? -Microsoft.AspNetCore.Mvc.Rendering.FormInputRenderMode -Microsoft.AspNetCore.Mvc.Rendering.FormInputRenderMode.AlwaysUseCurrentCulture = 1 -> Microsoft.AspNetCore.Mvc.Rendering.FormInputRenderMode -Microsoft.AspNetCore.Mvc.Rendering.FormInputRenderMode.DetectCultureFromInputType = 0 -> Microsoft.AspNetCore.Mvc.Rendering.FormInputRenderMode -Microsoft.AspNetCore.Mvc.ViewFeatures.HtmlHelperOptions.FormInputRenderMode.get -> Microsoft.AspNetCore.Mvc.Rendering.FormInputRenderMode -Microsoft.AspNetCore.Mvc.ViewFeatures.HtmlHelperOptions.FormInputRenderMode.set -> void -Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary.Model.get -> TModel diff --git a/src/ObjectPool/src/PublicAPI.Shipped.txt b/src/ObjectPool/src/PublicAPI.Shipped.txt index 397e098fe6c1..64d05a5f7239 100644 --- a/src/ObjectPool/src/PublicAPI.Shipped.txt +++ b/src/ObjectPool/src/PublicAPI.Shipped.txt @@ -1,27 +1,27 @@ #nullable enable -Microsoft.Extensions.ObjectPool.DefaultObjectPool -Microsoft.Extensions.ObjectPool.DefaultPooledObjectPolicy -Microsoft.Extensions.ObjectPool.LeakTrackingObjectPool -Microsoft.Extensions.ObjectPool.ObjectPool abstract Microsoft.Extensions.ObjectPool.ObjectPool.Get() -> T! abstract Microsoft.Extensions.ObjectPool.ObjectPool.Return(T! obj) -> void abstract Microsoft.Extensions.ObjectPool.ObjectPoolProvider.Create(Microsoft.Extensions.ObjectPool.IPooledObjectPolicy! policy) -> Microsoft.Extensions.ObjectPool.ObjectPool! abstract Microsoft.Extensions.ObjectPool.PooledObjectPolicy.Create() -> T abstract Microsoft.Extensions.ObjectPool.PooledObjectPolicy.Return(T obj) -> bool +Microsoft.Extensions.ObjectPool.DefaultObjectPool Microsoft.Extensions.ObjectPool.DefaultObjectPool.DefaultObjectPool(Microsoft.Extensions.ObjectPool.IPooledObjectPolicy! policy) -> void Microsoft.Extensions.ObjectPool.DefaultObjectPool.DefaultObjectPool(Microsoft.Extensions.ObjectPool.IPooledObjectPolicy! policy, int maximumRetained) -> void Microsoft.Extensions.ObjectPool.DefaultObjectPoolProvider Microsoft.Extensions.ObjectPool.DefaultObjectPoolProvider.DefaultObjectPoolProvider() -> void Microsoft.Extensions.ObjectPool.DefaultObjectPoolProvider.MaximumRetained.get -> int Microsoft.Extensions.ObjectPool.DefaultObjectPoolProvider.MaximumRetained.set -> void +Microsoft.Extensions.ObjectPool.DefaultPooledObjectPolicy Microsoft.Extensions.ObjectPool.DefaultPooledObjectPolicy.DefaultPooledObjectPolicy() -> void Microsoft.Extensions.ObjectPool.IPooledObjectPolicy Microsoft.Extensions.ObjectPool.IPooledObjectPolicy.Create() -> T Microsoft.Extensions.ObjectPool.IPooledObjectPolicy.Return(T obj) -> bool +Microsoft.Extensions.ObjectPool.LeakTrackingObjectPool Microsoft.Extensions.ObjectPool.LeakTrackingObjectPool.LeakTrackingObjectPool(Microsoft.Extensions.ObjectPool.ObjectPool! inner) -> void Microsoft.Extensions.ObjectPool.LeakTrackingObjectPoolProvider Microsoft.Extensions.ObjectPool.LeakTrackingObjectPoolProvider.LeakTrackingObjectPoolProvider(Microsoft.Extensions.ObjectPool.ObjectPoolProvider! inner) -> void Microsoft.Extensions.ObjectPool.ObjectPool +Microsoft.Extensions.ObjectPool.ObjectPool Microsoft.Extensions.ObjectPool.ObjectPool.ObjectPool() -> void Microsoft.Extensions.ObjectPool.ObjectPoolProvider Microsoft.Extensions.ObjectPool.ObjectPoolProvider.Create() -> Microsoft.Extensions.ObjectPool.ObjectPool! diff --git a/src/OpenApi/src/PublicAPI.Shipped.txt b/src/OpenApi/src/PublicAPI.Shipped.txt index ab058de62d44..ca80deee675b 100644 --- a/src/OpenApi/src/PublicAPI.Shipped.txt +++ b/src/OpenApi/src/PublicAPI.Shipped.txt @@ -1 +1,4 @@ -#nullable enable +#nullable enable +Microsoft.AspNetCore.Builder.OpenApiEndpointConventionBuilderExtensions +static Microsoft.AspNetCore.Builder.OpenApiEndpointConventionBuilderExtensions.WithOpenApi(this TBuilder builder) -> TBuilder +static Microsoft.AspNetCore.Builder.OpenApiEndpointConventionBuilderExtensions.WithOpenApi(this TBuilder builder, System.Func! configureOperation) -> TBuilder diff --git a/src/OpenApi/src/PublicAPI.Unshipped.txt b/src/OpenApi/src/PublicAPI.Unshipped.txt index ca80deee675b..7dc5c58110bf 100644 --- a/src/OpenApi/src/PublicAPI.Unshipped.txt +++ b/src/OpenApi/src/PublicAPI.Unshipped.txt @@ -1,4 +1 @@ #nullable enable -Microsoft.AspNetCore.Builder.OpenApiEndpointConventionBuilderExtensions -static Microsoft.AspNetCore.Builder.OpenApiEndpointConventionBuilderExtensions.WithOpenApi(this TBuilder builder) -> TBuilder -static Microsoft.AspNetCore.Builder.OpenApiEndpointConventionBuilderExtensions.WithOpenApi(this TBuilder builder, System.Func! configureOperation) -> TBuilder diff --git a/src/Security/Authentication/Certificate/src/PublicAPI.Shipped.txt b/src/Security/Authentication/Certificate/src/PublicAPI.Shipped.txt index 4a414fdb748f..9756daf94263 100644 --- a/src/Security/Authentication/Certificate/src/PublicAPI.Shipped.txt +++ b/src/Security/Authentication/Certificate/src/PublicAPI.Shipped.txt @@ -1,5 +1,4 @@ #nullable enable -Microsoft.AspNetCore.Authentication.Certificate.CertificateValidationCache.CertificateValidationCache(Microsoft.Extensions.Options.IOptions! options) -> void const Microsoft.AspNetCore.Authentication.Certificate.CertificateAuthenticationDefaults.AuthenticationScheme = "Certificate" -> string! Microsoft.AspNetCore.Authentication.Certificate.CertificateAuthenticationDefaults Microsoft.AspNetCore.Authentication.Certificate.CertificateAuthenticationEvents @@ -47,6 +46,7 @@ Microsoft.AspNetCore.Authentication.Certificate.CertificateValidatedContext.Cert Microsoft.AspNetCore.Authentication.Certificate.CertificateValidatedContext.ClientCertificate.get -> System.Security.Cryptography.X509Certificates.X509Certificate2! Microsoft.AspNetCore.Authentication.Certificate.CertificateValidatedContext.ClientCertificate.set -> void Microsoft.AspNetCore.Authentication.Certificate.CertificateValidationCache +Microsoft.AspNetCore.Authentication.Certificate.CertificateValidationCache.CertificateValidationCache(Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.Authentication.Certificate.CertificateValidationCache.Get(Microsoft.AspNetCore.Http.HttpContext! context, System.Security.Cryptography.X509Certificates.X509Certificate2! certificate) -> Microsoft.AspNetCore.Authentication.AuthenticateResult? Microsoft.AspNetCore.Authentication.Certificate.CertificateValidationCache.Put(Microsoft.AspNetCore.Http.HttpContext! context, System.Security.Cryptography.X509Certificates.X509Certificate2! certificate, Microsoft.AspNetCore.Authentication.AuthenticateResult! result) -> void Microsoft.AspNetCore.Authentication.Certificate.CertificateValidationCacheOptions diff --git a/src/Security/Authentication/Cookies/src/PublicAPI.Shipped.txt b/src/Security/Authentication/Cookies/src/PublicAPI.Shipped.txt index 1acd9ea8a9da..f7d51172dc8f 100644 --- a/src/Security/Authentication/Cookies/src/PublicAPI.Shipped.txt +++ b/src/Security/Authentication/Cookies/src/PublicAPI.Shipped.txt @@ -89,15 +89,19 @@ Microsoft.AspNetCore.Authentication.Cookies.ICookieManager.DeleteCookie(Microsof Microsoft.AspNetCore.Authentication.Cookies.ICookieManager.GetRequestCookie(Microsoft.AspNetCore.Http.HttpContext! context, string! key) -> string? Microsoft.AspNetCore.Authentication.Cookies.ITicketStore Microsoft.AspNetCore.Authentication.Cookies.ITicketStore.RemoveAsync(string! key) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Authentication.Cookies.ITicketStore.RemoveAsync(string! key, Microsoft.AspNetCore.Http.HttpContext! httpContext, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authentication.Cookies.ITicketStore.RemoveAsync(string! key, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authentication.Cookies.ITicketStore.RenewAsync(string! key, Microsoft.AspNetCore.Authentication.AuthenticationTicket! ticket) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Authentication.Cookies.ITicketStore.RenewAsync(string! key, Microsoft.AspNetCore.Authentication.AuthenticationTicket! ticket, Microsoft.AspNetCore.Http.HttpContext! httpContext, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authentication.Cookies.ITicketStore.RenewAsync(string! key, Microsoft.AspNetCore.Authentication.AuthenticationTicket! ticket, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authentication.Cookies.ITicketStore.RetrieveAsync(string! key) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Authentication.Cookies.ITicketStore.RetrieveAsync(string! key, Microsoft.AspNetCore.Http.HttpContext! httpContext, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authentication.Cookies.ITicketStore.RetrieveAsync(string! key, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authentication.Cookies.ITicketStore.StoreAsync(Microsoft.AspNetCore.Authentication.AuthenticationTicket! ticket) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.Authentication.Cookies.ITicketStore.StoreAsync(Microsoft.AspNetCore.Authentication.AuthenticationTicket! ticket, Microsoft.AspNetCore.Http.HttpContext! httpContext, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authentication.Cookies.ITicketStore.StoreAsync(Microsoft.AspNetCore.Authentication.AuthenticationTicket! ticket, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authentication.Cookies.PostConfigureCookieAuthenticationOptions -Microsoft.AspNetCore.Authentication.Cookies.PostConfigureCookieAuthenticationOptions.PostConfigure(string! name, Microsoft.AspNetCore.Authentication.Cookies.CookieAuthenticationOptions! options) -> void +Microsoft.AspNetCore.Authentication.Cookies.PostConfigureCookieAuthenticationOptions.PostConfigure(string? name, Microsoft.AspNetCore.Authentication.Cookies.CookieAuthenticationOptions! options) -> void Microsoft.AspNetCore.Authentication.Cookies.PostConfigureCookieAuthenticationOptions.PostConfigureCookieAuthenticationOptions(Microsoft.AspNetCore.DataProtection.IDataProtectionProvider! dataProtection) -> void Microsoft.Extensions.DependencyInjection.CookieExtensions override Microsoft.AspNetCore.Authentication.Cookies.CookieAuthenticationHandler.CreateEventsAsync() -> System.Threading.Tasks.Task! @@ -117,6 +121,7 @@ static readonly Microsoft.AspNetCore.Authentication.Cookies.CookieAuthentication static readonly Microsoft.AspNetCore.Authentication.Cookies.CookieAuthenticationDefaults.LoginPath -> Microsoft.AspNetCore.Http.PathString static readonly Microsoft.AspNetCore.Authentication.Cookies.CookieAuthenticationDefaults.LogoutPath -> Microsoft.AspNetCore.Http.PathString static readonly Microsoft.AspNetCore.Authentication.Cookies.CookieAuthenticationDefaults.ReturnUrlParameter -> string! +virtual Microsoft.AspNetCore.Authentication.Cookies.CookieAuthenticationEvents.CheckSlidingExpiration(Microsoft.AspNetCore.Authentication.Cookies.CookieSlidingExpirationContext! context) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Authentication.Cookies.CookieAuthenticationEvents.RedirectToAccessDenied(Microsoft.AspNetCore.Authentication.RedirectContext! context) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Authentication.Cookies.CookieAuthenticationEvents.RedirectToLogin(Microsoft.AspNetCore.Authentication.RedirectContext! context) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Authentication.Cookies.CookieAuthenticationEvents.RedirectToLogout(Microsoft.AspNetCore.Authentication.RedirectContext! context) -> System.Threading.Tasks.Task! diff --git a/src/Security/Authentication/Cookies/src/PublicAPI.Unshipped.txt b/src/Security/Authentication/Cookies/src/PublicAPI.Unshipped.txt index 656e195c1a7b..7dc5c58110bf 100644 --- a/src/Security/Authentication/Cookies/src/PublicAPI.Unshipped.txt +++ b/src/Security/Authentication/Cookies/src/PublicAPI.Unshipped.txt @@ -1,8 +1 @@ #nullable enable -*REMOVED*Microsoft.AspNetCore.Authentication.Cookies.PostConfigureCookieAuthenticationOptions.PostConfigure(string! name, Microsoft.AspNetCore.Authentication.Cookies.CookieAuthenticationOptions! options) -> void -Microsoft.AspNetCore.Authentication.Cookies.ITicketStore.RemoveAsync(string! key, Microsoft.AspNetCore.Http.HttpContext! httpContext, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Authentication.Cookies.ITicketStore.RenewAsync(string! key, Microsoft.AspNetCore.Authentication.AuthenticationTicket! ticket, Microsoft.AspNetCore.Http.HttpContext! httpContext, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Authentication.Cookies.ITicketStore.RetrieveAsync(string! key, Microsoft.AspNetCore.Http.HttpContext! httpContext, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Authentication.Cookies.ITicketStore.StoreAsync(Microsoft.AspNetCore.Authentication.AuthenticationTicket! ticket, Microsoft.AspNetCore.Http.HttpContext! httpContext, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! -Microsoft.AspNetCore.Authentication.Cookies.PostConfigureCookieAuthenticationOptions.PostConfigure(string? name, Microsoft.AspNetCore.Authentication.Cookies.CookieAuthenticationOptions! options) -> void -virtual Microsoft.AspNetCore.Authentication.Cookies.CookieAuthenticationEvents.CheckSlidingExpiration(Microsoft.AspNetCore.Authentication.Cookies.CookieSlidingExpirationContext! context) -> System.Threading.Tasks.Task! diff --git a/src/Security/Authentication/Core/src/PublicAPI.Shipped.txt b/src/Security/Authentication/Core/src/PublicAPI.Shipped.txt index 4c5b82b5bced..82581dc5996f 100644 --- a/src/Security/Authentication/Core/src/PublicAPI.Shipped.txt +++ b/src/Security/Authentication/Core/src/PublicAPI.Shipped.txt @@ -1,15 +1,4 @@ #nullable enable -Microsoft.AspNetCore.Authentication.AuthenticationHandler -Microsoft.AspNetCore.Authentication.BaseContext -Microsoft.AspNetCore.Authentication.HandleRequestContext -Microsoft.AspNetCore.Authentication.PrincipalContext -Microsoft.AspNetCore.Authentication.PropertiesContext -Microsoft.AspNetCore.Authentication.RedirectContext -Microsoft.AspNetCore.Authentication.RemoteAuthenticationContext -Microsoft.AspNetCore.Authentication.RemoteAuthenticationHandler -Microsoft.AspNetCore.Authentication.ResultContext -Microsoft.AspNetCore.Authentication.SignInAuthenticationHandler -Microsoft.AspNetCore.Authentication.SignOutAuthenticationHandler abstract Microsoft.AspNetCore.Authentication.AuthenticationHandler.HandleAuthenticateAsync() -> System.Threading.Tasks.Task! abstract Microsoft.AspNetCore.Authentication.RemoteAuthenticationHandler.HandleRemoteAuthenticateAsync() -> System.Threading.Tasks.Task! abstract Microsoft.AspNetCore.Authentication.SignInAuthenticationHandler.HandleSignInAsync(System.Security.Claims.ClaimsPrincipal! user, Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties) -> System.Threading.Tasks.Task! @@ -26,6 +15,8 @@ Microsoft.AspNetCore.Authentication.AccessDeniedContext.ReturnUrlParameter.get - Microsoft.AspNetCore.Authentication.AccessDeniedContext.ReturnUrlParameter.set -> void Microsoft.AspNetCore.Authentication.AuthenticationBuilder Microsoft.AspNetCore.Authentication.AuthenticationBuilder.AuthenticationBuilder(Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> void +Microsoft.AspNetCore.Authentication.AuthenticationConfigurationProviderExtensions +Microsoft.AspNetCore.Authentication.AuthenticationHandler Microsoft.AspNetCore.Authentication.AuthenticationHandler.AuthenticateAsync() -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authentication.AuthenticationHandler.AuthenticationHandler(Microsoft.Extensions.Options.IOptionsMonitor! options, Microsoft.Extensions.Logging.ILoggerFactory! logger, System.Text.Encodings.Web.UrlEncoder! encoder, Microsoft.AspNetCore.Authentication.ISystemClock! clock) -> void Microsoft.AspNetCore.Authentication.AuthenticationHandler.BuildRedirectUri(string! targetPath) -> string! @@ -74,12 +65,14 @@ Microsoft.AspNetCore.Authentication.AuthenticationSchemeOptions.ForwardSignIn.se Microsoft.AspNetCore.Authentication.AuthenticationSchemeOptions.ForwardSignOut.get -> string? Microsoft.AspNetCore.Authentication.AuthenticationSchemeOptions.ForwardSignOut.set -> void Microsoft.AspNetCore.Authentication.Base64UrlTextEncoder +Microsoft.AspNetCore.Authentication.BaseContext Microsoft.AspNetCore.Authentication.BaseContext.BaseContext(Microsoft.AspNetCore.Http.HttpContext! context, Microsoft.AspNetCore.Authentication.AuthenticationScheme! scheme, TOptions! options) -> void Microsoft.AspNetCore.Authentication.BaseContext.HttpContext.get -> Microsoft.AspNetCore.Http.HttpContext! Microsoft.AspNetCore.Authentication.BaseContext.Options.get -> TOptions! Microsoft.AspNetCore.Authentication.BaseContext.Request.get -> Microsoft.AspNetCore.Http.HttpRequest! Microsoft.AspNetCore.Authentication.BaseContext.Response.get -> Microsoft.AspNetCore.Http.HttpResponse! Microsoft.AspNetCore.Authentication.BaseContext.Scheme.get -> Microsoft.AspNetCore.Authentication.AuthenticationScheme! +Microsoft.AspNetCore.Authentication.HandleRequestContext Microsoft.AspNetCore.Authentication.HandleRequestContext.HandleRequestContext(Microsoft.AspNetCore.Http.HttpContext! context, Microsoft.AspNetCore.Authentication.AuthenticationScheme! scheme, TOptions! options) -> void Microsoft.AspNetCore.Authentication.HandleRequestContext.HandleResponse() -> void Microsoft.AspNetCore.Authentication.HandleRequestContext.Result.get -> Microsoft.AspNetCore.Authentication.HandleRequestResult! @@ -104,15 +97,19 @@ Microsoft.AspNetCore.Authentication.PolicySchemeHandler Microsoft.AspNetCore.Authentication.PolicySchemeHandler.PolicySchemeHandler(Microsoft.Extensions.Options.IOptionsMonitor! options, Microsoft.Extensions.Logging.ILoggerFactory! logger, System.Text.Encodings.Web.UrlEncoder! encoder, Microsoft.AspNetCore.Authentication.ISystemClock! clock) -> void Microsoft.AspNetCore.Authentication.PolicySchemeOptions Microsoft.AspNetCore.Authentication.PolicySchemeOptions.PolicySchemeOptions() -> void +Microsoft.AspNetCore.Authentication.PrincipalContext Microsoft.AspNetCore.Authentication.PrincipalContext.PrincipalContext(Microsoft.AspNetCore.Http.HttpContext! context, Microsoft.AspNetCore.Authentication.AuthenticationScheme! scheme, TOptions! options, Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties) -> void +Microsoft.AspNetCore.Authentication.PropertiesContext Microsoft.AspNetCore.Authentication.PropertiesContext.PropertiesContext(Microsoft.AspNetCore.Http.HttpContext! context, Microsoft.AspNetCore.Authentication.AuthenticationScheme! scheme, TOptions! options, Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties) -> void Microsoft.AspNetCore.Authentication.PropertiesDataFormat Microsoft.AspNetCore.Authentication.PropertiesDataFormat.PropertiesDataFormat(Microsoft.AspNetCore.DataProtection.IDataProtector! protector) -> void Microsoft.AspNetCore.Authentication.PropertiesSerializer Microsoft.AspNetCore.Authentication.PropertiesSerializer.PropertiesSerializer() -> void +Microsoft.AspNetCore.Authentication.RedirectContext Microsoft.AspNetCore.Authentication.RedirectContext.RedirectContext(Microsoft.AspNetCore.Http.HttpContext! context, Microsoft.AspNetCore.Authentication.AuthenticationScheme! scheme, TOptions! options, Microsoft.AspNetCore.Authentication.AuthenticationProperties! properties, string! redirectUri) -> void Microsoft.AspNetCore.Authentication.RedirectContext.RedirectUri.get -> string! Microsoft.AspNetCore.Authentication.RedirectContext.RedirectUri.set -> void +Microsoft.AspNetCore.Authentication.RemoteAuthenticationContext Microsoft.AspNetCore.Authentication.RemoteAuthenticationContext.Fail(string! failureMessage) -> void Microsoft.AspNetCore.Authentication.RemoteAuthenticationContext.Fail(System.Exception! failure) -> void Microsoft.AspNetCore.Authentication.RemoteAuthenticationContext.Principal.get -> System.Security.Claims.ClaimsPrincipal? @@ -127,6 +124,7 @@ Microsoft.AspNetCore.Authentication.RemoteAuthenticationEvents.OnRemoteFailure.s Microsoft.AspNetCore.Authentication.RemoteAuthenticationEvents.OnTicketReceived.get -> System.Func! Microsoft.AspNetCore.Authentication.RemoteAuthenticationEvents.OnTicketReceived.set -> void Microsoft.AspNetCore.Authentication.RemoteAuthenticationEvents.RemoteAuthenticationEvents() -> void +Microsoft.AspNetCore.Authentication.RemoteAuthenticationHandler Microsoft.AspNetCore.Authentication.RemoteAuthenticationHandler.Events.get -> Microsoft.AspNetCore.Authentication.RemoteAuthenticationEvents! Microsoft.AspNetCore.Authentication.RemoteAuthenticationHandler.Events.set -> void Microsoft.AspNetCore.Authentication.RemoteAuthenticationHandler.RemoteAuthenticationHandler(Microsoft.Extensions.Options.IOptionsMonitor! options, Microsoft.Extensions.Logging.ILoggerFactory! logger, System.Text.Encodings.Web.UrlEncoder! encoder, Microsoft.AspNetCore.Authentication.ISystemClock! clock) -> void @@ -165,6 +163,7 @@ Microsoft.AspNetCore.Authentication.RemoteFailureContext.Properties.set -> void Microsoft.AspNetCore.Authentication.RemoteFailureContext.RemoteFailureContext(Microsoft.AspNetCore.Http.HttpContext! context, Microsoft.AspNetCore.Authentication.AuthenticationScheme! scheme, Microsoft.AspNetCore.Authentication.RemoteAuthenticationOptions! options, System.Exception! failure) -> void Microsoft.AspNetCore.Authentication.RequestPathBaseCookieBuilder Microsoft.AspNetCore.Authentication.RequestPathBaseCookieBuilder.RequestPathBaseCookieBuilder() -> void +Microsoft.AspNetCore.Authentication.ResultContext Microsoft.AspNetCore.Authentication.ResultContext.Fail(string! failureMessage) -> void Microsoft.AspNetCore.Authentication.ResultContext.Fail(System.Exception! failure) -> void Microsoft.AspNetCore.Authentication.ResultContext.NoResult() -> void @@ -181,7 +180,9 @@ Microsoft.AspNetCore.Authentication.SecureDataFormat.Protect(TData data, Microsoft.AspNetCore.Authentication.SecureDataFormat.SecureDataFormat(Microsoft.AspNetCore.Authentication.IDataSerializer! serializer, Microsoft.AspNetCore.DataProtection.IDataProtector! protector) -> void Microsoft.AspNetCore.Authentication.SecureDataFormat.Unprotect(string? protectedText) -> TData? Microsoft.AspNetCore.Authentication.SecureDataFormat.Unprotect(string? protectedText, string? purpose) -> TData? +Microsoft.AspNetCore.Authentication.SignInAuthenticationHandler Microsoft.AspNetCore.Authentication.SignInAuthenticationHandler.SignInAuthenticationHandler(Microsoft.Extensions.Options.IOptionsMonitor! options, Microsoft.Extensions.Logging.ILoggerFactory! logger, System.Text.Encodings.Web.UrlEncoder! encoder, Microsoft.AspNetCore.Authentication.ISystemClock! clock) -> void +Microsoft.AspNetCore.Authentication.SignOutAuthenticationHandler Microsoft.AspNetCore.Authentication.SignOutAuthenticationHandler.SignOutAuthenticationHandler(Microsoft.Extensions.Options.IOptionsMonitor! options, Microsoft.Extensions.Logging.ILoggerFactory! logger, System.Text.Encodings.Web.UrlEncoder! encoder, Microsoft.AspNetCore.Authentication.ISystemClock! clock) -> void Microsoft.AspNetCore.Authentication.SystemClock Microsoft.AspNetCore.Authentication.SystemClock.SystemClock() -> void @@ -207,6 +208,7 @@ override Microsoft.AspNetCore.Authentication.RemoteAuthenticationHandler void override Microsoft.AspNetCore.Authentication.RemoteAuthenticationOptions.Validate(string! scheme) -> void override Microsoft.AspNetCore.Authentication.RequestPathBaseCookieBuilder.Build(Microsoft.AspNetCore.Http.HttpContext! context, System.DateTimeOffset expiresFrom) -> Microsoft.AspNetCore.Http.CookieOptions! +static Microsoft.AspNetCore.Authentication.AuthenticationConfigurationProviderExtensions.GetSchemeConfiguration(this Microsoft.AspNetCore.Authentication.IAuthenticationConfigurationProvider! provider, string! authenticationScheme) -> Microsoft.Extensions.Configuration.IConfiguration! static Microsoft.AspNetCore.Authentication.Base64UrlTextEncoder.Decode(string! text) -> byte[]! static Microsoft.AspNetCore.Authentication.Base64UrlTextEncoder.Encode(byte[]! data) -> string! static Microsoft.AspNetCore.Authentication.HandleRequestResult.Fail(string! failureMessage) -> Microsoft.AspNetCore.Authentication.HandleRequestResult! diff --git a/src/Security/Authentication/Core/src/PublicAPI.Unshipped.txt b/src/Security/Authentication/Core/src/PublicAPI.Unshipped.txt index 3ea4be28d3a7..7dc5c58110bf 100644 --- a/src/Security/Authentication/Core/src/PublicAPI.Unshipped.txt +++ b/src/Security/Authentication/Core/src/PublicAPI.Unshipped.txt @@ -1,3 +1 @@ #nullable enable -Microsoft.AspNetCore.Authentication.AuthenticationConfigurationProviderExtensions -static Microsoft.AspNetCore.Authentication.AuthenticationConfigurationProviderExtensions.GetSchemeConfiguration(this Microsoft.AspNetCore.Authentication.IAuthenticationConfigurationProvider! provider, string! authenticationScheme) -> Microsoft.Extensions.Configuration.IConfiguration! diff --git a/src/Security/Authentication/JwtBearer/src/PublicAPI.Shipped.txt b/src/Security/Authentication/JwtBearer/src/PublicAPI.Shipped.txt index 736d93b93492..c9aa49918342 100644 --- a/src/Security/Authentication/JwtBearer/src/PublicAPI.Shipped.txt +++ b/src/Security/Authentication/JwtBearer/src/PublicAPI.Shipped.txt @@ -1,6 +1,4 @@ #nullable enable -Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions.ConfigurationManager.get -> Microsoft.IdentityModel.Protocols.IConfigurationManager? -Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions.ConfigurationManager.set -> void const Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerDefaults.AuthenticationScheme = "Bearer" -> string! Microsoft.AspNetCore.Authentication.JwtBearer.AuthenticationFailedContext Microsoft.AspNetCore.Authentication.JwtBearer.AuthenticationFailedContext.AuthenticationFailedContext(Microsoft.AspNetCore.Http.HttpContext! context, Microsoft.AspNetCore.Authentication.AuthenticationScheme! scheme, Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions! options) -> void @@ -54,6 +52,8 @@ Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions.Challenge.get -> Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions.Challenge.set -> void Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions.Configuration.get -> Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectConfiguration? Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions.Configuration.set -> void +Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions.ConfigurationManager.get -> Microsoft.IdentityModel.Protocols.IConfigurationManager? +Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions.ConfigurationManager.set -> void Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions.Events.get -> Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerEvents! Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions.Events.set -> void Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions.IncludeErrorDetails.get -> bool @@ -76,7 +76,7 @@ Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions.TokenValidationPa Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions.TokenValidationParameters.set -> void Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerPostConfigureOptions Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerPostConfigureOptions.JwtBearerPostConfigureOptions() -> void -Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerPostConfigureOptions.PostConfigure(string! name, Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions! options) -> void +Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerPostConfigureOptions.PostConfigure(string? name, Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions! options) -> void Microsoft.AspNetCore.Authentication.JwtBearer.MessageReceivedContext Microsoft.AspNetCore.Authentication.JwtBearer.MessageReceivedContext.MessageReceivedContext(Microsoft.AspNetCore.Http.HttpContext! context, Microsoft.AspNetCore.Authentication.AuthenticationScheme! scheme, Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions! options) -> void Microsoft.AspNetCore.Authentication.JwtBearer.MessageReceivedContext.Token.get -> string? @@ -91,6 +91,7 @@ override Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerHandler.HandleAu override Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerHandler.HandleChallengeAsync(Microsoft.AspNetCore.Authentication.AuthenticationProperties! properties) -> System.Threading.Tasks.Task! override Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerHandler.HandleForbiddenAsync(Microsoft.AspNetCore.Authentication.AuthenticationProperties! properties) -> System.Threading.Tasks.Task! static Microsoft.Extensions.DependencyInjection.JwtBearerExtensions.AddJwtBearer(this Microsoft.AspNetCore.Authentication.AuthenticationBuilder! builder) -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder! +static Microsoft.Extensions.DependencyInjection.JwtBearerExtensions.AddJwtBearer(this Microsoft.AspNetCore.Authentication.AuthenticationBuilder! builder, string! authenticationScheme) -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder! static Microsoft.Extensions.DependencyInjection.JwtBearerExtensions.AddJwtBearer(this Microsoft.AspNetCore.Authentication.AuthenticationBuilder! builder, string! authenticationScheme, string? displayName, System.Action! configureOptions) -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder! static Microsoft.Extensions.DependencyInjection.JwtBearerExtensions.AddJwtBearer(this Microsoft.AspNetCore.Authentication.AuthenticationBuilder! builder, string! authenticationScheme, System.Action! configureOptions) -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder! static Microsoft.Extensions.DependencyInjection.JwtBearerExtensions.AddJwtBearer(this Microsoft.AspNetCore.Authentication.AuthenticationBuilder! builder, System.Action! configureOptions) -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder! diff --git a/src/Security/Authentication/JwtBearer/src/PublicAPI.Unshipped.txt b/src/Security/Authentication/JwtBearer/src/PublicAPI.Unshipped.txt index e66f11d82ec1..7dc5c58110bf 100644 --- a/src/Security/Authentication/JwtBearer/src/PublicAPI.Unshipped.txt +++ b/src/Security/Authentication/JwtBearer/src/PublicAPI.Unshipped.txt @@ -1,4 +1 @@ #nullable enable -*REMOVED*Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerPostConfigureOptions.PostConfigure(string! name, Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions! options) -> void -Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerPostConfigureOptions.PostConfigure(string? name, Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions! options) -> void -static Microsoft.Extensions.DependencyInjection.JwtBearerExtensions.AddJwtBearer(this Microsoft.AspNetCore.Authentication.AuthenticationBuilder! builder, string! authenticationScheme) -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder! diff --git a/src/Security/Authentication/Negotiate/src/PublicAPI.Shipped.txt b/src/Security/Authentication/Negotiate/src/PublicAPI.Shipped.txt index 9edc5f8c11f1..684a84c1b3d2 100644 --- a/src/Security/Authentication/Negotiate/src/PublicAPI.Shipped.txt +++ b/src/Security/Authentication/Negotiate/src/PublicAPI.Shipped.txt @@ -61,7 +61,7 @@ Microsoft.AspNetCore.Authentication.Negotiate.NegotiateOptions.PersistKerberosCr Microsoft.AspNetCore.Authentication.Negotiate.NegotiateOptions.PersistNtlmCredentials.get -> bool Microsoft.AspNetCore.Authentication.Negotiate.NegotiateOptions.PersistNtlmCredentials.set -> void Microsoft.AspNetCore.Authentication.Negotiate.PostConfigureNegotiateOptions -Microsoft.AspNetCore.Authentication.Negotiate.PostConfigureNegotiateOptions.PostConfigure(string! name, Microsoft.AspNetCore.Authentication.Negotiate.NegotiateOptions! options) -> void +Microsoft.AspNetCore.Authentication.Negotiate.PostConfigureNegotiateOptions.PostConfigure(string? name, Microsoft.AspNetCore.Authentication.Negotiate.NegotiateOptions! options) -> void Microsoft.AspNetCore.Authentication.Negotiate.PostConfigureNegotiateOptions.PostConfigureNegotiateOptions(System.Collections.Generic.IEnumerable! serverAuthServices, Microsoft.Extensions.Logging.ILogger! logger) -> void Microsoft.Extensions.DependencyInjection.NegotiateExtensions override Microsoft.AspNetCore.Authentication.Negotiate.NegotiateHandler.CreateEventsAsync() -> System.Threading.Tasks.Task! diff --git a/src/Security/Authentication/Negotiate/src/PublicAPI.Unshipped.txt b/src/Security/Authentication/Negotiate/src/PublicAPI.Unshipped.txt index 5b4eefc701d4..7dc5c58110bf 100644 --- a/src/Security/Authentication/Negotiate/src/PublicAPI.Unshipped.txt +++ b/src/Security/Authentication/Negotiate/src/PublicAPI.Unshipped.txt @@ -1,3 +1 @@ #nullable enable -*REMOVED*Microsoft.AspNetCore.Authentication.Negotiate.PostConfigureNegotiateOptions.PostConfigure(string! name, Microsoft.AspNetCore.Authentication.Negotiate.NegotiateOptions! options) -> void -Microsoft.AspNetCore.Authentication.Negotiate.PostConfigureNegotiateOptions.PostConfigure(string? name, Microsoft.AspNetCore.Authentication.Negotiate.NegotiateOptions! options) -> void diff --git a/src/Security/Authentication/OAuth/src/PublicAPI.Shipped.txt b/src/Security/Authentication/OAuth/src/PublicAPI.Shipped.txt index cca519ec5be9..144dabc9b80e 100644 --- a/src/Security/Authentication/OAuth/src/PublicAPI.Shipped.txt +++ b/src/Security/Authentication/OAuth/src/PublicAPI.Shipped.txt @@ -1,6 +1,4 @@ #nullable enable -Microsoft.AspNetCore.Authentication.OAuth.OAuthHandler -Microsoft.Extensions.DependencyInjection.OAuthPostConfigureOptions abstract Microsoft.AspNetCore.Authentication.OAuth.Claims.ClaimAction.Run(System.Text.Json.JsonElement userData, System.Security.Claims.ClaimsIdentity! identity, string! issuer) -> void Microsoft.AspNetCore.Authentication.ClaimActionCollectionMapExtensions Microsoft.AspNetCore.Authentication.OAuth.Claims.ClaimAction @@ -57,6 +55,7 @@ Microsoft.AspNetCore.Authentication.OAuth.OAuthEvents.OnCreatingTicket.get -> Sy Microsoft.AspNetCore.Authentication.OAuth.OAuthEvents.OnCreatingTicket.set -> void Microsoft.AspNetCore.Authentication.OAuth.OAuthEvents.OnRedirectToAuthorizationEndpoint.get -> System.Func!, System.Threading.Tasks.Task!>! Microsoft.AspNetCore.Authentication.OAuth.OAuthEvents.OnRedirectToAuthorizationEndpoint.set -> void +Microsoft.AspNetCore.Authentication.OAuth.OAuthHandler Microsoft.AspNetCore.Authentication.OAuth.OAuthHandler.Backchannel.get -> System.Net.Http.HttpClient! Microsoft.AspNetCore.Authentication.OAuth.OAuthHandler.Events.get -> Microsoft.AspNetCore.Authentication.OAuth.OAuthEvents! Microsoft.AspNetCore.Authentication.OAuth.OAuthHandler.Events.set -> void @@ -96,8 +95,9 @@ Microsoft.AspNetCore.Authentication.OAuth.OAuthTokenResponse.Response.set -> voi Microsoft.AspNetCore.Authentication.OAuth.OAuthTokenResponse.TokenType.get -> string? Microsoft.AspNetCore.Authentication.OAuth.OAuthTokenResponse.TokenType.set -> void Microsoft.Extensions.DependencyInjection.OAuthExtensions +Microsoft.Extensions.DependencyInjection.OAuthPostConfigureOptions Microsoft.Extensions.DependencyInjection.OAuthPostConfigureOptions.OAuthPostConfigureOptions(Microsoft.AspNetCore.DataProtection.IDataProtectionProvider! dataProtection) -> void -Microsoft.Extensions.DependencyInjection.OAuthPostConfigureOptions.PostConfigure(string! name, TOptions! options) -> void +Microsoft.Extensions.DependencyInjection.OAuthPostConfigureOptions.PostConfigure(string? name, TOptions! options) -> void override Microsoft.AspNetCore.Authentication.OAuth.Claims.CustomJsonClaimAction.Run(System.Text.Json.JsonElement userData, System.Security.Claims.ClaimsIdentity! identity, string! issuer) -> void override Microsoft.AspNetCore.Authentication.OAuth.Claims.DeleteClaimAction.Run(System.Text.Json.JsonElement userData, System.Security.Claims.ClaimsIdentity! identity, string! issuer) -> void override Microsoft.AspNetCore.Authentication.OAuth.Claims.JsonKeyClaimAction.Run(System.Text.Json.JsonElement userData, System.Security.Claims.ClaimsIdentity! identity, string! issuer) -> void diff --git a/src/Security/Authentication/OAuth/src/PublicAPI.Unshipped.txt b/src/Security/Authentication/OAuth/src/PublicAPI.Unshipped.txt index b7c11c258118..7dc5c58110bf 100644 --- a/src/Security/Authentication/OAuth/src/PublicAPI.Unshipped.txt +++ b/src/Security/Authentication/OAuth/src/PublicAPI.Unshipped.txt @@ -1,3 +1 @@ #nullable enable -*REMOVED*Microsoft.Extensions.DependencyInjection.OAuthPostConfigureOptions.PostConfigure(string! name, TOptions! options) -> void -Microsoft.Extensions.DependencyInjection.OAuthPostConfigureOptions.PostConfigure(string? name, TOptions! options) -> void diff --git a/src/Security/Authentication/OpenIdConnect/src/PublicAPI.Shipped.txt b/src/Security/Authentication/OpenIdConnect/src/PublicAPI.Shipped.txt index 98a791fe9ecb..443f7f561a9d 100644 --- a/src/Security/Authentication/OpenIdConnect/src/PublicAPI.Shipped.txt +++ b/src/Security/Authentication/OpenIdConnect/src/PublicAPI.Shipped.txt @@ -1,6 +1,4 @@ #nullable enable -Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions.ConfigurationManager.get -> Microsoft.IdentityModel.Protocols.IConfigurationManager? -Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions.ConfigurationManager.set -> void const Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectDefaults.AuthenticationScheme = "OpenIdConnect" -> string! Microsoft.AspNetCore.Authentication.ClaimActionCollectionUniqueExtensions Microsoft.AspNetCore.Authentication.OpenIdConnect.AuthenticationFailedContext @@ -36,8 +34,8 @@ Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectChallengeProperti Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectChallengeProperties.MaxAge.get -> System.TimeSpan? Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectChallengeProperties.MaxAge.set -> void Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectChallengeProperties.OpenIdConnectChallengeProperties() -> void -Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectChallengeProperties.OpenIdConnectChallengeProperties(System.Collections.Generic.IDictionary! items, System.Collections.Generic.IDictionary! parameters) -> void Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectChallengeProperties.OpenIdConnectChallengeProperties(System.Collections.Generic.IDictionary! items) -> void +Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectChallengeProperties.OpenIdConnectChallengeProperties(System.Collections.Generic.IDictionary! items, System.Collections.Generic.IDictionary! parameters) -> void Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectChallengeProperties.Prompt.get -> string? Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectChallengeProperties.Prompt.set -> void Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectDefaults @@ -83,6 +81,8 @@ Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions.ClientSec Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions.ClientSecret.set -> void Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions.Configuration.get -> Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectConfiguration? Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions.Configuration.set -> void +Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions.ConfigurationManager.get -> Microsoft.IdentityModel.Protocols.IConfigurationManager? +Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions.ConfigurationManager.set -> void Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions.DisableTelemetry.get -> bool Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions.DisableTelemetry.set -> void Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions.Events.get -> Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectEvents! @@ -139,7 +139,7 @@ Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions.UseTokenL Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions.UseTokenLifetime.set -> void Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectPostConfigureOptions Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectPostConfigureOptions.OpenIdConnectPostConfigureOptions(Microsoft.AspNetCore.DataProtection.IDataProtectionProvider! dataProtection) -> void -Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectPostConfigureOptions.PostConfigure(string! name, Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions! options) -> void +Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectPostConfigureOptions.PostConfigure(string? name, Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions! options) -> void Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectRedirectBehavior Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectRedirectBehavior.FormPost = 1 -> Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectRedirectBehavior Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectRedirectBehavior.RedirectGet = 0 -> Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectRedirectBehavior @@ -182,12 +182,12 @@ override Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectHandler. override Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectHandler.HandleRemoteAuthenticateAsync() -> System.Threading.Tasks.Task! override Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectHandler.HandleRequestAsync() -> System.Threading.Tasks.Task! override Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions.Validate() -> void -static Microsoft.AspNetCore.Authentication.ClaimActionCollectionUniqueExtensions.MapUniqueJsonKey(this Microsoft.AspNetCore.Authentication.OAuth.Claims.ClaimActionCollection! collection, string! claimType, string! jsonKey, string! valueType) -> void static Microsoft.AspNetCore.Authentication.ClaimActionCollectionUniqueExtensions.MapUniqueJsonKey(this Microsoft.AspNetCore.Authentication.OAuth.Claims.ClaimActionCollection! collection, string! claimType, string! jsonKey) -> void +static Microsoft.AspNetCore.Authentication.ClaimActionCollectionUniqueExtensions.MapUniqueJsonKey(this Microsoft.AspNetCore.Authentication.OAuth.Claims.ClaimActionCollection! collection, string! claimType, string! jsonKey, string! valueType) -> void +static Microsoft.Extensions.DependencyInjection.OpenIdConnectExtensions.AddOpenIdConnect(this Microsoft.AspNetCore.Authentication.AuthenticationBuilder! builder) -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder! static Microsoft.Extensions.DependencyInjection.OpenIdConnectExtensions.AddOpenIdConnect(this Microsoft.AspNetCore.Authentication.AuthenticationBuilder! builder, string! authenticationScheme, string? displayName, System.Action! configureOptions) -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder! static Microsoft.Extensions.DependencyInjection.OpenIdConnectExtensions.AddOpenIdConnect(this Microsoft.AspNetCore.Authentication.AuthenticationBuilder! builder, string! authenticationScheme, System.Action! configureOptions) -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder! static Microsoft.Extensions.DependencyInjection.OpenIdConnectExtensions.AddOpenIdConnect(this Microsoft.AspNetCore.Authentication.AuthenticationBuilder! builder, System.Action! configureOptions) -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder! -static Microsoft.Extensions.DependencyInjection.OpenIdConnectExtensions.AddOpenIdConnect(this Microsoft.AspNetCore.Authentication.AuthenticationBuilder! builder) -> Microsoft.AspNetCore.Authentication.AuthenticationBuilder! static readonly Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectChallengeProperties.MaxAgeKey -> string! static readonly Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectChallengeProperties.PromptKey -> string! static readonly Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectDefaults.AuthenticationPropertiesKey -> string! diff --git a/src/Security/Authentication/OpenIdConnect/src/PublicAPI.Unshipped.txt b/src/Security/Authentication/OpenIdConnect/src/PublicAPI.Unshipped.txt index 54eff6448992..7dc5c58110bf 100644 --- a/src/Security/Authentication/OpenIdConnect/src/PublicAPI.Unshipped.txt +++ b/src/Security/Authentication/OpenIdConnect/src/PublicAPI.Unshipped.txt @@ -1,3 +1 @@ #nullable enable -*REMOVED*Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectPostConfigureOptions.PostConfigure(string! name, Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions! options) -> void -Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectPostConfigureOptions.PostConfigure(string? name, Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions! options) -> void diff --git a/src/Security/Authentication/Twitter/src/PublicAPI.Shipped.txt b/src/Security/Authentication/Twitter/src/PublicAPI.Shipped.txt index 9cf92a9830c2..00872475d665 100644 --- a/src/Security/Authentication/Twitter/src/PublicAPI.Shipped.txt +++ b/src/Security/Authentication/Twitter/src/PublicAPI.Shipped.txt @@ -70,7 +70,7 @@ Microsoft.AspNetCore.Authentication.Twitter.TwitterOptions.StateDataFormat.get - Microsoft.AspNetCore.Authentication.Twitter.TwitterOptions.StateDataFormat.set -> void Microsoft.AspNetCore.Authentication.Twitter.TwitterOptions.TwitterOptions() -> void Microsoft.AspNetCore.Authentication.Twitter.TwitterPostConfigureOptions -Microsoft.AspNetCore.Authentication.Twitter.TwitterPostConfigureOptions.PostConfigure(string! name, Microsoft.AspNetCore.Authentication.Twitter.TwitterOptions! options) -> void +Microsoft.AspNetCore.Authentication.Twitter.TwitterPostConfigureOptions.PostConfigure(string? name, Microsoft.AspNetCore.Authentication.Twitter.TwitterOptions! options) -> void Microsoft.AspNetCore.Authentication.Twitter.TwitterPostConfigureOptions.TwitterPostConfigureOptions(Microsoft.AspNetCore.DataProtection.IDataProtectionProvider! dataProtection) -> void Microsoft.Extensions.DependencyInjection.TwitterExtensions override Microsoft.AspNetCore.Authentication.Twitter.TwitterHandler.CreateEventsAsync() -> System.Threading.Tasks.Task! diff --git a/src/Security/Authentication/Twitter/src/PublicAPI.Unshipped.txt b/src/Security/Authentication/Twitter/src/PublicAPI.Unshipped.txt index 873a23ae00fb..7dc5c58110bf 100644 --- a/src/Security/Authentication/Twitter/src/PublicAPI.Unshipped.txt +++ b/src/Security/Authentication/Twitter/src/PublicAPI.Unshipped.txt @@ -1,3 +1 @@ #nullable enable -*REMOVED*Microsoft.AspNetCore.Authentication.Twitter.TwitterPostConfigureOptions.PostConfigure(string! name, Microsoft.AspNetCore.Authentication.Twitter.TwitterOptions! options) -> void -Microsoft.AspNetCore.Authentication.Twitter.TwitterPostConfigureOptions.PostConfigure(string? name, Microsoft.AspNetCore.Authentication.Twitter.TwitterOptions! options) -> void diff --git a/src/Security/Authentication/WsFederation/src/PublicAPI.Shipped.txt b/src/Security/Authentication/WsFederation/src/PublicAPI.Shipped.txt index 0568eff0acec..3af5868ef305 100644 --- a/src/Security/Authentication/WsFederation/src/PublicAPI.Shipped.txt +++ b/src/Security/Authentication/WsFederation/src/PublicAPI.Shipped.txt @@ -77,13 +77,13 @@ Microsoft.AspNetCore.Authentication.WsFederation.WsFederationHandler Microsoft.AspNetCore.Authentication.WsFederation.WsFederationHandler.Events.get -> Microsoft.AspNetCore.Authentication.WsFederation.WsFederationEvents! Microsoft.AspNetCore.Authentication.WsFederation.WsFederationHandler.Events.set -> void Microsoft.AspNetCore.Authentication.WsFederation.WsFederationHandler.WsFederationHandler(Microsoft.Extensions.Options.IOptionsMonitor! options, Microsoft.Extensions.Logging.ILoggerFactory! logger, System.Text.Encodings.Web.UrlEncoder! encoder, Microsoft.AspNetCore.Authentication.ISystemClock! clock) -> void -Microsoft.AspNetCore.Authentication.WsFederation.WsFederationOptions.ConfigurationManager.get -> Microsoft.IdentityModel.Protocols.IConfigurationManager! -Microsoft.AspNetCore.Authentication.WsFederation.WsFederationOptions.ConfigurationManager.set -> void Microsoft.AspNetCore.Authentication.WsFederation.WsFederationOptions Microsoft.AspNetCore.Authentication.WsFederation.WsFederationOptions.AllowUnsolicitedLogins.get -> bool Microsoft.AspNetCore.Authentication.WsFederation.WsFederationOptions.AllowUnsolicitedLogins.set -> void Microsoft.AspNetCore.Authentication.WsFederation.WsFederationOptions.Configuration.get -> Microsoft.IdentityModel.Protocols.WsFederation.WsFederationConfiguration? Microsoft.AspNetCore.Authentication.WsFederation.WsFederationOptions.Configuration.set -> void +Microsoft.AspNetCore.Authentication.WsFederation.WsFederationOptions.ConfigurationManager.get -> Microsoft.IdentityModel.Protocols.IConfigurationManager! +Microsoft.AspNetCore.Authentication.WsFederation.WsFederationOptions.ConfigurationManager.set -> void Microsoft.AspNetCore.Authentication.WsFederation.WsFederationOptions.Events.get -> Microsoft.AspNetCore.Authentication.WsFederation.WsFederationEvents! Microsoft.AspNetCore.Authentication.WsFederation.WsFederationOptions.Events.set -> void Microsoft.AspNetCore.Authentication.WsFederation.WsFederationOptions.MetadataAddress.get -> string? @@ -116,7 +116,7 @@ Microsoft.AspNetCore.Authentication.WsFederation.WsFederationOptions.WsFederatio Microsoft.AspNetCore.Authentication.WsFederation.WsFederationOptions.Wtrealm.get -> string? Microsoft.AspNetCore.Authentication.WsFederation.WsFederationOptions.Wtrealm.set -> void Microsoft.AspNetCore.Authentication.WsFederation.WsFederationPostConfigureOptions -Microsoft.AspNetCore.Authentication.WsFederation.WsFederationPostConfigureOptions.PostConfigure(string! name, Microsoft.AspNetCore.Authentication.WsFederation.WsFederationOptions! options) -> void +Microsoft.AspNetCore.Authentication.WsFederation.WsFederationPostConfigureOptions.PostConfigure(string? name, Microsoft.AspNetCore.Authentication.WsFederation.WsFederationOptions! options) -> void Microsoft.AspNetCore.Authentication.WsFederation.WsFederationPostConfigureOptions.WsFederationPostConfigureOptions(Microsoft.AspNetCore.DataProtection.IDataProtectionProvider! dataProtection) -> void Microsoft.Extensions.DependencyInjection.WsFederationExtensions override Microsoft.AspNetCore.Authentication.WsFederation.WsFederationHandler.CreateEventsAsync() -> System.Threading.Tasks.Task! diff --git a/src/Security/Authentication/WsFederation/src/PublicAPI.Unshipped.txt b/src/Security/Authentication/WsFederation/src/PublicAPI.Unshipped.txt index 974708cb01c1..7dc5c58110bf 100644 --- a/src/Security/Authentication/WsFederation/src/PublicAPI.Unshipped.txt +++ b/src/Security/Authentication/WsFederation/src/PublicAPI.Unshipped.txt @@ -1,3 +1 @@ #nullable enable -*REMOVED*Microsoft.AspNetCore.Authentication.WsFederation.WsFederationPostConfigureOptions.PostConfigure(string! name, Microsoft.AspNetCore.Authentication.WsFederation.WsFederationOptions! options) -> void -Microsoft.AspNetCore.Authentication.WsFederation.WsFederationPostConfigureOptions.PostConfigure(string? name, Microsoft.AspNetCore.Authentication.WsFederation.WsFederationOptions! options) -> void diff --git a/src/Security/Authorization/Core/src/PublicAPI/net462/PublicAPI.Shipped.txt b/src/Security/Authorization/Core/src/PublicAPI/net462/PublicAPI.Shipped.txt index cf34e70c4b92..cfe89af2db46 100644 --- a/src/Security/Authorization/Core/src/PublicAPI/net462/PublicAPI.Shipped.txt +++ b/src/Security/Authorization/Core/src/PublicAPI/net462/PublicAPI.Shipped.txt @@ -1,10 +1,10 @@ #nullable enable -Microsoft.AspNetCore.Authorization.DefaultAuthorizationPolicyProvider.DefaultAuthorizationPolicyProvider(Microsoft.Extensions.Options.IOptions! options) -> void -Microsoft.AspNetCore.Authorization.DefaultAuthorizationService.DefaultAuthorizationService(Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider! policyProvider, Microsoft.AspNetCore.Authorization.IAuthorizationHandlerProvider! handlers, Microsoft.Extensions.Logging.ILogger! logger, Microsoft.AspNetCore.Authorization.IAuthorizationHandlerContextFactory! contextFactory, Microsoft.AspNetCore.Authorization.IAuthorizationEvaluator! evaluator, Microsoft.Extensions.Options.IOptions! options) -> void abstract Microsoft.AspNetCore.Authorization.AuthorizationHandler.HandleRequirementAsync(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext! context, TRequirement requirement, TResource resource) -> System.Threading.Tasks.Task! abstract Microsoft.AspNetCore.Authorization.AuthorizationHandler.HandleRequirementAsync(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext! context, TRequirement requirement) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authorization.AllowAnonymousAttribute Microsoft.AspNetCore.Authorization.AllowAnonymousAttribute.AllowAnonymousAttribute() -> void +Microsoft.AspNetCore.Authorization.AuthorizationBuilder +Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AuthorizationBuilder(Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> void Microsoft.AspNetCore.Authorization.AuthorizationFailure Microsoft.AspNetCore.Authorization.AuthorizationFailure.FailCalled.get -> bool Microsoft.AspNetCore.Authorization.AuthorizationFailure.FailedRequirements.get -> System.Collections.Generic.IEnumerable! @@ -76,9 +76,11 @@ Microsoft.AspNetCore.Authorization.DefaultAuthorizationHandlerProvider Microsoft.AspNetCore.Authorization.DefaultAuthorizationHandlerProvider.DefaultAuthorizationHandlerProvider(System.Collections.Generic.IEnumerable! handlers) -> void Microsoft.AspNetCore.Authorization.DefaultAuthorizationHandlerProvider.GetHandlersAsync(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext! context) -> System.Threading.Tasks.Task!>! Microsoft.AspNetCore.Authorization.DefaultAuthorizationPolicyProvider +Microsoft.AspNetCore.Authorization.DefaultAuthorizationPolicyProvider.DefaultAuthorizationPolicyProvider(Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.Authorization.DefaultAuthorizationPolicyProvider.GetDefaultPolicyAsync() -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authorization.DefaultAuthorizationPolicyProvider.GetFallbackPolicyAsync() -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authorization.DefaultAuthorizationService +Microsoft.AspNetCore.Authorization.DefaultAuthorizationService.DefaultAuthorizationService(Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider! policyProvider, Microsoft.AspNetCore.Authorization.IAuthorizationHandlerProvider! handlers, Microsoft.Extensions.Logging.ILogger! logger, Microsoft.AspNetCore.Authorization.IAuthorizationHandlerContextFactory! contextFactory, Microsoft.AspNetCore.Authorization.IAuthorizationEvaluator! evaluator, Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.Authorization.IAllowAnonymous (forwarded, contained in Microsoft.AspNetCore.Metadata) Microsoft.AspNetCore.Authorization.IAuthorizationEvaluator Microsoft.AspNetCore.Authorization.IAuthorizationEvaluator.Evaluate(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext! context) -> Microsoft.AspNetCore.Authorization.AuthorizationResult! @@ -124,6 +126,7 @@ Microsoft.AspNetCore.Authorization.Infrastructure.OperationAuthorizationRequirem Microsoft.AspNetCore.Authorization.Infrastructure.PassThroughAuthorizationHandler Microsoft.AspNetCore.Authorization.Infrastructure.PassThroughAuthorizationHandler.HandleAsync(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext! context) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authorization.Infrastructure.PassThroughAuthorizationHandler.PassThroughAuthorizationHandler() -> void +Microsoft.AspNetCore.Authorization.Infrastructure.PassThroughAuthorizationHandler.PassThroughAuthorizationHandler(Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.Authorization.Infrastructure.RolesAuthorizationRequirement Microsoft.AspNetCore.Authorization.Infrastructure.RolesAuthorizationRequirement.AllowedRoles.get -> System.Collections.Generic.IEnumerable! Microsoft.AspNetCore.Authorization.Infrastructure.RolesAuthorizationRequirement.RolesAuthorizationRequirement(System.Collections.Generic.IEnumerable! allowedRoles) -> void @@ -144,6 +147,7 @@ static Microsoft.AspNetCore.Authorization.AuthorizationFailure.Failed(System.Col static Microsoft.AspNetCore.Authorization.AuthorizationPolicy.Combine(params Microsoft.AspNetCore.Authorization.AuthorizationPolicy![]! policies) -> Microsoft.AspNetCore.Authorization.AuthorizationPolicy! static Microsoft.AspNetCore.Authorization.AuthorizationPolicy.Combine(System.Collections.Generic.IEnumerable! policies) -> Microsoft.AspNetCore.Authorization.AuthorizationPolicy! static Microsoft.AspNetCore.Authorization.AuthorizationPolicy.CombineAsync(Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider! policyProvider, System.Collections.Generic.IEnumerable! authorizeData) -> System.Threading.Tasks.Task! +static Microsoft.AspNetCore.Authorization.AuthorizationPolicy.CombineAsync(Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider! policyProvider, System.Collections.Generic.IEnumerable! authorizeData, System.Collections.Generic.IEnumerable! policies) -> System.Threading.Tasks.Task! static Microsoft.AspNetCore.Authorization.AuthorizationResult.Failed() -> Microsoft.AspNetCore.Authorization.AuthorizationResult! static Microsoft.AspNetCore.Authorization.AuthorizationResult.Failed(Microsoft.AspNetCore.Authorization.AuthorizationFailure! failure) -> Microsoft.AspNetCore.Authorization.AuthorizationResult! static Microsoft.AspNetCore.Authorization.AuthorizationResult.Success() -> Microsoft.AspNetCore.Authorization.AuthorizationResult! @@ -153,6 +157,16 @@ static Microsoft.AspNetCore.Authorization.AuthorizationServiceExtensions.Authori static Microsoft.AspNetCore.Authorization.AuthorizationServiceExtensions.AuthorizeAsync(this Microsoft.AspNetCore.Authorization.IAuthorizationService! service, System.Security.Claims.ClaimsPrincipal! user, string! policyName) -> System.Threading.Tasks.Task! static Microsoft.Extensions.DependencyInjection.AuthorizationServiceCollectionExtensions.AddAuthorizationCore(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! static Microsoft.Extensions.DependencyInjection.AuthorizationServiceCollectionExtensions.AddAuthorizationCore(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action! configure) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddDefaultPolicy(string! name, Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddDefaultPolicy(string! name, System.Action! configurePolicy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddFallbackPolicy(string! name, Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddFallbackPolicy(string! name, System.Action! configurePolicy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddPolicy(string! name, Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddPolicy(string! name, System.Action! configurePolicy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.Services.get -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.SetDefaultPolicy(Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.SetFallbackPolicy(Microsoft.AspNetCore.Authorization.AuthorizationPolicy? policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.SetInvokeHandlersAfterFailure(bool invoke) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! virtual Microsoft.AspNetCore.Authorization.AuthorizationHandler.HandleAsync(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext! context) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Authorization.AuthorizationHandler.HandleAsync(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext! context) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext.Fail() -> void diff --git a/src/Security/Authorization/Core/src/PublicAPI/net462/PublicAPI.Unshipped.txt b/src/Security/Authorization/Core/src/PublicAPI/net462/PublicAPI.Unshipped.txt index 38f8cdf2c053..7dc5c58110bf 100644 --- a/src/Security/Authorization/Core/src/PublicAPI/net462/PublicAPI.Unshipped.txt +++ b/src/Security/Authorization/Core/src/PublicAPI/net462/PublicAPI.Unshipped.txt @@ -1,15 +1 @@ #nullable enable -Microsoft.AspNetCore.Authorization.AuthorizationBuilder -Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AuthorizationBuilder(Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> void -Microsoft.AspNetCore.Authorization.Infrastructure.PassThroughAuthorizationHandler.PassThroughAuthorizationHandler(Microsoft.Extensions.Options.IOptions! options) -> void -static Microsoft.AspNetCore.Authorization.AuthorizationPolicy.CombineAsync(Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider! policyProvider, System.Collections.Generic.IEnumerable! authorizeData, System.Collections.Generic.IEnumerable! policies) -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddDefaultPolicy(string! name, Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddDefaultPolicy(string! name, System.Action! configurePolicy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddFallbackPolicy(string! name, Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddFallbackPolicy(string! name, System.Action! configurePolicy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddPolicy(string! name, Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddPolicy(string! name, System.Action! configurePolicy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.Services.get -> Microsoft.Extensions.DependencyInjection.IServiceCollection! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.SetDefaultPolicy(Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.SetFallbackPolicy(Microsoft.AspNetCore.Authorization.AuthorizationPolicy? policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.SetInvokeHandlersAfterFailure(bool invoke) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! diff --git a/src/Security/Authorization/Core/src/PublicAPI/net7.0/PublicAPI.Shipped.txt b/src/Security/Authorization/Core/src/PublicAPI/net7.0/PublicAPI.Shipped.txt index cf34e70c4b92..2a1eb692ac0e 100644 --- a/src/Security/Authorization/Core/src/PublicAPI/net7.0/PublicAPI.Shipped.txt +++ b/src/Security/Authorization/Core/src/PublicAPI/net7.0/PublicAPI.Shipped.txt @@ -1,10 +1,10 @@ #nullable enable -Microsoft.AspNetCore.Authorization.DefaultAuthorizationPolicyProvider.DefaultAuthorizationPolicyProvider(Microsoft.Extensions.Options.IOptions! options) -> void -Microsoft.AspNetCore.Authorization.DefaultAuthorizationService.DefaultAuthorizationService(Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider! policyProvider, Microsoft.AspNetCore.Authorization.IAuthorizationHandlerProvider! handlers, Microsoft.Extensions.Logging.ILogger! logger, Microsoft.AspNetCore.Authorization.IAuthorizationHandlerContextFactory! contextFactory, Microsoft.AspNetCore.Authorization.IAuthorizationEvaluator! evaluator, Microsoft.Extensions.Options.IOptions! options) -> void abstract Microsoft.AspNetCore.Authorization.AuthorizationHandler.HandleRequirementAsync(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext! context, TRequirement requirement, TResource resource) -> System.Threading.Tasks.Task! abstract Microsoft.AspNetCore.Authorization.AuthorizationHandler.HandleRequirementAsync(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext! context, TRequirement requirement) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authorization.AllowAnonymousAttribute Microsoft.AspNetCore.Authorization.AllowAnonymousAttribute.AllowAnonymousAttribute() -> void +Microsoft.AspNetCore.Authorization.AuthorizationBuilder +Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AuthorizationBuilder(Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> void Microsoft.AspNetCore.Authorization.AuthorizationFailure Microsoft.AspNetCore.Authorization.AuthorizationFailure.FailCalled.get -> bool Microsoft.AspNetCore.Authorization.AuthorizationFailure.FailedRequirements.get -> System.Collections.Generic.IEnumerable! @@ -76,9 +76,11 @@ Microsoft.AspNetCore.Authorization.DefaultAuthorizationHandlerProvider Microsoft.AspNetCore.Authorization.DefaultAuthorizationHandlerProvider.DefaultAuthorizationHandlerProvider(System.Collections.Generic.IEnumerable! handlers) -> void Microsoft.AspNetCore.Authorization.DefaultAuthorizationHandlerProvider.GetHandlersAsync(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext! context) -> System.Threading.Tasks.Task!>! Microsoft.AspNetCore.Authorization.DefaultAuthorizationPolicyProvider +Microsoft.AspNetCore.Authorization.DefaultAuthorizationPolicyProvider.DefaultAuthorizationPolicyProvider(Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.Authorization.DefaultAuthorizationPolicyProvider.GetDefaultPolicyAsync() -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authorization.DefaultAuthorizationPolicyProvider.GetFallbackPolicyAsync() -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authorization.DefaultAuthorizationService +Microsoft.AspNetCore.Authorization.DefaultAuthorizationService.DefaultAuthorizationService(Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider! policyProvider, Microsoft.AspNetCore.Authorization.IAuthorizationHandlerProvider! handlers, Microsoft.Extensions.Logging.ILogger! logger, Microsoft.AspNetCore.Authorization.IAuthorizationHandlerContextFactory! contextFactory, Microsoft.AspNetCore.Authorization.IAuthorizationEvaluator! evaluator, Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.Authorization.IAllowAnonymous (forwarded, contained in Microsoft.AspNetCore.Metadata) Microsoft.AspNetCore.Authorization.IAuthorizationEvaluator Microsoft.AspNetCore.Authorization.IAuthorizationEvaluator.Evaluate(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext! context) -> Microsoft.AspNetCore.Authorization.AuthorizationResult! @@ -89,6 +91,7 @@ Microsoft.AspNetCore.Authorization.IAuthorizationHandlerContextFactory.CreateCon Microsoft.AspNetCore.Authorization.IAuthorizationHandlerProvider Microsoft.AspNetCore.Authorization.IAuthorizationHandlerProvider.GetHandlersAsync(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext! context) -> System.Threading.Tasks.Task!>! Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider +Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider.AllowsCachingPolicies.get -> bool Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider.GetDefaultPolicyAsync() -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider.GetFallbackPolicyAsync() -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider.GetPolicyAsync(string! policyName) -> System.Threading.Tasks.Task! @@ -124,6 +127,7 @@ Microsoft.AspNetCore.Authorization.Infrastructure.OperationAuthorizationRequirem Microsoft.AspNetCore.Authorization.Infrastructure.PassThroughAuthorizationHandler Microsoft.AspNetCore.Authorization.Infrastructure.PassThroughAuthorizationHandler.HandleAsync(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext! context) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authorization.Infrastructure.PassThroughAuthorizationHandler.PassThroughAuthorizationHandler() -> void +Microsoft.AspNetCore.Authorization.Infrastructure.PassThroughAuthorizationHandler.PassThroughAuthorizationHandler(Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.Authorization.Infrastructure.RolesAuthorizationRequirement Microsoft.AspNetCore.Authorization.Infrastructure.RolesAuthorizationRequirement.AllowedRoles.get -> System.Collections.Generic.IEnumerable! Microsoft.AspNetCore.Authorization.Infrastructure.RolesAuthorizationRequirement.RolesAuthorizationRequirement(System.Collections.Generic.IEnumerable! allowedRoles) -> void @@ -144,6 +148,7 @@ static Microsoft.AspNetCore.Authorization.AuthorizationFailure.Failed(System.Col static Microsoft.AspNetCore.Authorization.AuthorizationPolicy.Combine(params Microsoft.AspNetCore.Authorization.AuthorizationPolicy![]! policies) -> Microsoft.AspNetCore.Authorization.AuthorizationPolicy! static Microsoft.AspNetCore.Authorization.AuthorizationPolicy.Combine(System.Collections.Generic.IEnumerable! policies) -> Microsoft.AspNetCore.Authorization.AuthorizationPolicy! static Microsoft.AspNetCore.Authorization.AuthorizationPolicy.CombineAsync(Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider! policyProvider, System.Collections.Generic.IEnumerable! authorizeData) -> System.Threading.Tasks.Task! +static Microsoft.AspNetCore.Authorization.AuthorizationPolicy.CombineAsync(Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider! policyProvider, System.Collections.Generic.IEnumerable! authorizeData, System.Collections.Generic.IEnumerable! policies) -> System.Threading.Tasks.Task! static Microsoft.AspNetCore.Authorization.AuthorizationResult.Failed() -> Microsoft.AspNetCore.Authorization.AuthorizationResult! static Microsoft.AspNetCore.Authorization.AuthorizationResult.Failed(Microsoft.AspNetCore.Authorization.AuthorizationFailure! failure) -> Microsoft.AspNetCore.Authorization.AuthorizationResult! static Microsoft.AspNetCore.Authorization.AuthorizationResult.Success() -> Microsoft.AspNetCore.Authorization.AuthorizationResult! @@ -153,6 +158,16 @@ static Microsoft.AspNetCore.Authorization.AuthorizationServiceExtensions.Authori static Microsoft.AspNetCore.Authorization.AuthorizationServiceExtensions.AuthorizeAsync(this Microsoft.AspNetCore.Authorization.IAuthorizationService! service, System.Security.Claims.ClaimsPrincipal! user, string! policyName) -> System.Threading.Tasks.Task! static Microsoft.Extensions.DependencyInjection.AuthorizationServiceCollectionExtensions.AddAuthorizationCore(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! static Microsoft.Extensions.DependencyInjection.AuthorizationServiceCollectionExtensions.AddAuthorizationCore(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action! configure) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddDefaultPolicy(string! name, Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddDefaultPolicy(string! name, System.Action! configurePolicy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddFallbackPolicy(string! name, Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddFallbackPolicy(string! name, System.Action! configurePolicy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddPolicy(string! name, Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddPolicy(string! name, System.Action! configurePolicy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.Services.get -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.SetDefaultPolicy(Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.SetFallbackPolicy(Microsoft.AspNetCore.Authorization.AuthorizationPolicy? policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.SetInvokeHandlersAfterFailure(bool invoke) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! virtual Microsoft.AspNetCore.Authorization.AuthorizationHandler.HandleAsync(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext! context) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Authorization.AuthorizationHandler.HandleAsync(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext! context) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext.Fail() -> void @@ -166,6 +181,7 @@ virtual Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext.Resource. virtual Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext.Succeed(Microsoft.AspNetCore.Authorization.IAuthorizationRequirement! requirement) -> void virtual Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext.User.get -> System.Security.Claims.ClaimsPrincipal! virtual Microsoft.AspNetCore.Authorization.DefaultAuthorizationHandlerContextFactory.CreateContext(System.Collections.Generic.IEnumerable! requirements, System.Security.Claims.ClaimsPrincipal! user, object? resource) -> Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext! +virtual Microsoft.AspNetCore.Authorization.DefaultAuthorizationPolicyProvider.AllowsCachingPolicies.get -> bool virtual Microsoft.AspNetCore.Authorization.DefaultAuthorizationPolicyProvider.GetPolicyAsync(string! policyName) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Authorization.DefaultAuthorizationService.AuthorizeAsync(System.Security.Claims.ClaimsPrincipal! user, object? resource, string! policyName) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Authorization.DefaultAuthorizationService.AuthorizeAsync(System.Security.Claims.ClaimsPrincipal! user, object? resource, System.Collections.Generic.IEnumerable! requirements) -> System.Threading.Tasks.Task! diff --git a/src/Security/Authorization/Core/src/PublicAPI/net7.0/PublicAPI.Unshipped.txt b/src/Security/Authorization/Core/src/PublicAPI/net7.0/PublicAPI.Unshipped.txt index ae0a6aaae037..7dc5c58110bf 100644 --- a/src/Security/Authorization/Core/src/PublicAPI/net7.0/PublicAPI.Unshipped.txt +++ b/src/Security/Authorization/Core/src/PublicAPI/net7.0/PublicAPI.Unshipped.txt @@ -1,17 +1 @@ #nullable enable -Microsoft.AspNetCore.Authorization.AuthorizationBuilder -Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AuthorizationBuilder(Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> void -Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider.AllowsCachingPolicies.get -> bool -Microsoft.AspNetCore.Authorization.Infrastructure.PassThroughAuthorizationHandler.PassThroughAuthorizationHandler(Microsoft.Extensions.Options.IOptions! options) -> void -static Microsoft.AspNetCore.Authorization.AuthorizationPolicy.CombineAsync(Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider! policyProvider, System.Collections.Generic.IEnumerable! authorizeData, System.Collections.Generic.IEnumerable! policies) -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddDefaultPolicy(string! name, Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddDefaultPolicy(string! name, System.Action! configurePolicy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddFallbackPolicy(string! name, Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddFallbackPolicy(string! name, System.Action! configurePolicy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddPolicy(string! name, Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddPolicy(string! name, System.Action! configurePolicy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.Services.get -> Microsoft.Extensions.DependencyInjection.IServiceCollection! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.SetDefaultPolicy(Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.SetFallbackPolicy(Microsoft.AspNetCore.Authorization.AuthorizationPolicy? policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.SetInvokeHandlersAfterFailure(bool invoke) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.DefaultAuthorizationPolicyProvider.AllowsCachingPolicies.get -> bool diff --git a/src/Security/Authorization/Core/src/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt b/src/Security/Authorization/Core/src/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt index cf34e70c4b92..cfe89af2db46 100644 --- a/src/Security/Authorization/Core/src/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt +++ b/src/Security/Authorization/Core/src/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt @@ -1,10 +1,10 @@ #nullable enable -Microsoft.AspNetCore.Authorization.DefaultAuthorizationPolicyProvider.DefaultAuthorizationPolicyProvider(Microsoft.Extensions.Options.IOptions! options) -> void -Microsoft.AspNetCore.Authorization.DefaultAuthorizationService.DefaultAuthorizationService(Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider! policyProvider, Microsoft.AspNetCore.Authorization.IAuthorizationHandlerProvider! handlers, Microsoft.Extensions.Logging.ILogger! logger, Microsoft.AspNetCore.Authorization.IAuthorizationHandlerContextFactory! contextFactory, Microsoft.AspNetCore.Authorization.IAuthorizationEvaluator! evaluator, Microsoft.Extensions.Options.IOptions! options) -> void abstract Microsoft.AspNetCore.Authorization.AuthorizationHandler.HandleRequirementAsync(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext! context, TRequirement requirement, TResource resource) -> System.Threading.Tasks.Task! abstract Microsoft.AspNetCore.Authorization.AuthorizationHandler.HandleRequirementAsync(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext! context, TRequirement requirement) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authorization.AllowAnonymousAttribute Microsoft.AspNetCore.Authorization.AllowAnonymousAttribute.AllowAnonymousAttribute() -> void +Microsoft.AspNetCore.Authorization.AuthorizationBuilder +Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AuthorizationBuilder(Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> void Microsoft.AspNetCore.Authorization.AuthorizationFailure Microsoft.AspNetCore.Authorization.AuthorizationFailure.FailCalled.get -> bool Microsoft.AspNetCore.Authorization.AuthorizationFailure.FailedRequirements.get -> System.Collections.Generic.IEnumerable! @@ -76,9 +76,11 @@ Microsoft.AspNetCore.Authorization.DefaultAuthorizationHandlerProvider Microsoft.AspNetCore.Authorization.DefaultAuthorizationHandlerProvider.DefaultAuthorizationHandlerProvider(System.Collections.Generic.IEnumerable! handlers) -> void Microsoft.AspNetCore.Authorization.DefaultAuthorizationHandlerProvider.GetHandlersAsync(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext! context) -> System.Threading.Tasks.Task!>! Microsoft.AspNetCore.Authorization.DefaultAuthorizationPolicyProvider +Microsoft.AspNetCore.Authorization.DefaultAuthorizationPolicyProvider.DefaultAuthorizationPolicyProvider(Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.Authorization.DefaultAuthorizationPolicyProvider.GetDefaultPolicyAsync() -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authorization.DefaultAuthorizationPolicyProvider.GetFallbackPolicyAsync() -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authorization.DefaultAuthorizationService +Microsoft.AspNetCore.Authorization.DefaultAuthorizationService.DefaultAuthorizationService(Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider! policyProvider, Microsoft.AspNetCore.Authorization.IAuthorizationHandlerProvider! handlers, Microsoft.Extensions.Logging.ILogger! logger, Microsoft.AspNetCore.Authorization.IAuthorizationHandlerContextFactory! contextFactory, Microsoft.AspNetCore.Authorization.IAuthorizationEvaluator! evaluator, Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.Authorization.IAllowAnonymous (forwarded, contained in Microsoft.AspNetCore.Metadata) Microsoft.AspNetCore.Authorization.IAuthorizationEvaluator Microsoft.AspNetCore.Authorization.IAuthorizationEvaluator.Evaluate(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext! context) -> Microsoft.AspNetCore.Authorization.AuthorizationResult! @@ -124,6 +126,7 @@ Microsoft.AspNetCore.Authorization.Infrastructure.OperationAuthorizationRequirem Microsoft.AspNetCore.Authorization.Infrastructure.PassThroughAuthorizationHandler Microsoft.AspNetCore.Authorization.Infrastructure.PassThroughAuthorizationHandler.HandleAsync(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext! context) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authorization.Infrastructure.PassThroughAuthorizationHandler.PassThroughAuthorizationHandler() -> void +Microsoft.AspNetCore.Authorization.Infrastructure.PassThroughAuthorizationHandler.PassThroughAuthorizationHandler(Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.Authorization.Infrastructure.RolesAuthorizationRequirement Microsoft.AspNetCore.Authorization.Infrastructure.RolesAuthorizationRequirement.AllowedRoles.get -> System.Collections.Generic.IEnumerable! Microsoft.AspNetCore.Authorization.Infrastructure.RolesAuthorizationRequirement.RolesAuthorizationRequirement(System.Collections.Generic.IEnumerable! allowedRoles) -> void @@ -144,6 +147,7 @@ static Microsoft.AspNetCore.Authorization.AuthorizationFailure.Failed(System.Col static Microsoft.AspNetCore.Authorization.AuthorizationPolicy.Combine(params Microsoft.AspNetCore.Authorization.AuthorizationPolicy![]! policies) -> Microsoft.AspNetCore.Authorization.AuthorizationPolicy! static Microsoft.AspNetCore.Authorization.AuthorizationPolicy.Combine(System.Collections.Generic.IEnumerable! policies) -> Microsoft.AspNetCore.Authorization.AuthorizationPolicy! static Microsoft.AspNetCore.Authorization.AuthorizationPolicy.CombineAsync(Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider! policyProvider, System.Collections.Generic.IEnumerable! authorizeData) -> System.Threading.Tasks.Task! +static Microsoft.AspNetCore.Authorization.AuthorizationPolicy.CombineAsync(Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider! policyProvider, System.Collections.Generic.IEnumerable! authorizeData, System.Collections.Generic.IEnumerable! policies) -> System.Threading.Tasks.Task! static Microsoft.AspNetCore.Authorization.AuthorizationResult.Failed() -> Microsoft.AspNetCore.Authorization.AuthorizationResult! static Microsoft.AspNetCore.Authorization.AuthorizationResult.Failed(Microsoft.AspNetCore.Authorization.AuthorizationFailure! failure) -> Microsoft.AspNetCore.Authorization.AuthorizationResult! static Microsoft.AspNetCore.Authorization.AuthorizationResult.Success() -> Microsoft.AspNetCore.Authorization.AuthorizationResult! @@ -153,6 +157,16 @@ static Microsoft.AspNetCore.Authorization.AuthorizationServiceExtensions.Authori static Microsoft.AspNetCore.Authorization.AuthorizationServiceExtensions.AuthorizeAsync(this Microsoft.AspNetCore.Authorization.IAuthorizationService! service, System.Security.Claims.ClaimsPrincipal! user, string! policyName) -> System.Threading.Tasks.Task! static Microsoft.Extensions.DependencyInjection.AuthorizationServiceCollectionExtensions.AddAuthorizationCore(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! static Microsoft.Extensions.DependencyInjection.AuthorizationServiceCollectionExtensions.AddAuthorizationCore(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action! configure) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddDefaultPolicy(string! name, Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddDefaultPolicy(string! name, System.Action! configurePolicy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddFallbackPolicy(string! name, Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddFallbackPolicy(string! name, System.Action! configurePolicy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddPolicy(string! name, Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddPolicy(string! name, System.Action! configurePolicy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.Services.get -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.SetDefaultPolicy(Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.SetFallbackPolicy(Microsoft.AspNetCore.Authorization.AuthorizationPolicy? policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! +virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.SetInvokeHandlersAfterFailure(bool invoke) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! virtual Microsoft.AspNetCore.Authorization.AuthorizationHandler.HandleAsync(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext! context) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Authorization.AuthorizationHandler.HandleAsync(Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext! context) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Authorization.AuthorizationHandlerContext.Fail() -> void diff --git a/src/Security/Authorization/Core/src/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt b/src/Security/Authorization/Core/src/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt index 38f8cdf2c053..7dc5c58110bf 100644 --- a/src/Security/Authorization/Core/src/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt +++ b/src/Security/Authorization/Core/src/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt @@ -1,15 +1 @@ #nullable enable -Microsoft.AspNetCore.Authorization.AuthorizationBuilder -Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AuthorizationBuilder(Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> void -Microsoft.AspNetCore.Authorization.Infrastructure.PassThroughAuthorizationHandler.PassThroughAuthorizationHandler(Microsoft.Extensions.Options.IOptions! options) -> void -static Microsoft.AspNetCore.Authorization.AuthorizationPolicy.CombineAsync(Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider! policyProvider, System.Collections.Generic.IEnumerable! authorizeData, System.Collections.Generic.IEnumerable! policies) -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddDefaultPolicy(string! name, Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddDefaultPolicy(string! name, System.Action! configurePolicy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddFallbackPolicy(string! name, Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddFallbackPolicy(string! name, System.Action! configurePolicy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddPolicy(string! name, Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.AddPolicy(string! name, System.Action! configurePolicy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.Services.get -> Microsoft.Extensions.DependencyInjection.IServiceCollection! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.SetDefaultPolicy(Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.SetFallbackPolicy(Microsoft.AspNetCore.Authorization.AuthorizationPolicy? policy) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! -virtual Microsoft.AspNetCore.Authorization.AuthorizationBuilder.SetInvokeHandlersAfterFailure(bool invoke) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! diff --git a/src/Security/Authorization/Policy/src/PublicAPI.Shipped.txt b/src/Security/Authorization/Policy/src/PublicAPI.Shipped.txt index 1e144c66992e..848444a19518 100644 --- a/src/Security/Authorization/Policy/src/PublicAPI.Shipped.txt +++ b/src/Security/Authorization/Policy/src/PublicAPI.Shipped.txt @@ -1,6 +1,7 @@ #nullable enable Microsoft.AspNetCore.Authorization.AuthorizationMiddleware Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.AuthorizationMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider! policyProvider) -> void +Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.AuthorizationMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider! policyProvider, System.IServiceProvider! services) -> void Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext! context) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Authorization.IAuthorizationMiddlewareResultHandler Microsoft.AspNetCore.Authorization.IAuthorizationMiddlewareResultHandler.HandleAsync(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.AspNetCore.Http.HttpContext! context, Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy, Microsoft.AspNetCore.Authorization.Policy.PolicyAuthorizationResult! authorizeResult) -> System.Threading.Tasks.Task! @@ -27,10 +28,13 @@ static Microsoft.AspNetCore.Authorization.Policy.PolicyAuthorizationResult.Succe static Microsoft.AspNetCore.Builder.AuthorizationAppBuilderExtensions.UseAuthorization(this Microsoft.AspNetCore.Builder.IApplicationBuilder! app) -> Microsoft.AspNetCore.Builder.IApplicationBuilder! static Microsoft.AspNetCore.Builder.AuthorizationEndpointConventionBuilderExtensions.AllowAnonymous(this TBuilder builder) -> TBuilder static Microsoft.AspNetCore.Builder.AuthorizationEndpointConventionBuilderExtensions.RequireAuthorization(this TBuilder builder) -> TBuilder +static Microsoft.AspNetCore.Builder.AuthorizationEndpointConventionBuilderExtensions.RequireAuthorization(this TBuilder builder, Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> TBuilder static Microsoft.AspNetCore.Builder.AuthorizationEndpointConventionBuilderExtensions.RequireAuthorization(this TBuilder builder, params Microsoft.AspNetCore.Authorization.IAuthorizeData![]! authorizeData) -> TBuilder static Microsoft.AspNetCore.Builder.AuthorizationEndpointConventionBuilderExtensions.RequireAuthorization(this TBuilder builder, params string![]! policyNames) -> TBuilder +static Microsoft.AspNetCore.Builder.AuthorizationEndpointConventionBuilderExtensions.RequireAuthorization(this TBuilder builder, System.Action! configurePolicy) -> TBuilder static Microsoft.Extensions.DependencyInjection.PolicyServiceCollectionExtensions.AddAuthorization(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! static Microsoft.Extensions.DependencyInjection.PolicyServiceCollectionExtensions.AddAuthorization(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, System.Action! configure) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! +static Microsoft.Extensions.DependencyInjection.PolicyServiceCollectionExtensions.AddAuthorizationBuilder(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! static Microsoft.Extensions.DependencyInjection.PolicyServiceCollectionExtensions.AddAuthorizationPolicyEvaluator(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.Extensions.DependencyInjection.IServiceCollection! virtual Microsoft.AspNetCore.Authorization.Policy.PolicyEvaluator.AuthenticateAsync(Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy, Microsoft.AspNetCore.Http.HttpContext! context) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.Authorization.Policy.PolicyEvaluator.AuthorizeAsync(Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy, Microsoft.AspNetCore.Authentication.AuthenticateResult! authenticationResult, Microsoft.AspNetCore.Http.HttpContext! context, object? resource) -> System.Threading.Tasks.Task! diff --git a/src/Security/Authorization/Policy/src/PublicAPI.Unshipped.txt b/src/Security/Authorization/Policy/src/PublicAPI.Unshipped.txt index 302dcdf9f9ae..7dc5c58110bf 100644 --- a/src/Security/Authorization/Policy/src/PublicAPI.Unshipped.txt +++ b/src/Security/Authorization/Policy/src/PublicAPI.Unshipped.txt @@ -1,5 +1 @@ #nullable enable -Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.AuthorizationMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider! policyProvider, System.IServiceProvider! services) -> void -static Microsoft.AspNetCore.Builder.AuthorizationEndpointConventionBuilderExtensions.RequireAuthorization(this TBuilder builder, Microsoft.AspNetCore.Authorization.AuthorizationPolicy! policy) -> TBuilder -static Microsoft.AspNetCore.Builder.AuthorizationEndpointConventionBuilderExtensions.RequireAuthorization(this TBuilder builder, System.Action! configurePolicy) -> TBuilder -static Microsoft.Extensions.DependencyInjection.PolicyServiceCollectionExtensions.AddAuthorizationBuilder(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services) -> Microsoft.AspNetCore.Authorization.AuthorizationBuilder! diff --git a/src/Security/CookiePolicy/src/PublicAPI.Shipped.txt b/src/Security/CookiePolicy/src/PublicAPI.Shipped.txt index d1b708b9ccfc..560d65a970d3 100644 --- a/src/Security/CookiePolicy/src/PublicAPI.Shipped.txt +++ b/src/Security/CookiePolicy/src/PublicAPI.Shipped.txt @@ -1,12 +1,12 @@ #nullable enable -Microsoft.AspNetCore.CookiePolicy.CookiePolicyMiddleware.CookiePolicyMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options) -> void -Microsoft.AspNetCore.CookiePolicy.CookiePolicyMiddleware.CookiePolicyMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILoggerFactory! factory) -> void Microsoft.AspNetCore.Builder.CookiePolicyAppBuilderExtensions Microsoft.AspNetCore.Builder.CookiePolicyOptions Microsoft.AspNetCore.Builder.CookiePolicyOptions.CheckConsentNeeded.get -> System.Func? Microsoft.AspNetCore.Builder.CookiePolicyOptions.CheckConsentNeeded.set -> void Microsoft.AspNetCore.Builder.CookiePolicyOptions.ConsentCookie.get -> Microsoft.AspNetCore.Http.CookieBuilder! Microsoft.AspNetCore.Builder.CookiePolicyOptions.ConsentCookie.set -> void +Microsoft.AspNetCore.Builder.CookiePolicyOptions.ConsentCookieValue.get -> string! +Microsoft.AspNetCore.Builder.CookiePolicyOptions.ConsentCookieValue.set -> void Microsoft.AspNetCore.Builder.CookiePolicyOptions.CookiePolicyOptions() -> void Microsoft.AspNetCore.Builder.CookiePolicyOptions.HttpOnly.get -> Microsoft.AspNetCore.CookiePolicy.HttpOnlyPolicy Microsoft.AspNetCore.Builder.CookiePolicyOptions.HttpOnly.set -> void @@ -31,6 +31,8 @@ Microsoft.AspNetCore.CookiePolicy.AppendCookieContext.IsConsentNeeded.get -> boo Microsoft.AspNetCore.CookiePolicy.AppendCookieContext.IssueCookie.get -> bool Microsoft.AspNetCore.CookiePolicy.AppendCookieContext.IssueCookie.set -> void Microsoft.AspNetCore.CookiePolicy.CookiePolicyMiddleware +Microsoft.AspNetCore.CookiePolicy.CookiePolicyMiddleware.CookiePolicyMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options) -> void +Microsoft.AspNetCore.CookiePolicy.CookiePolicyMiddleware.CookiePolicyMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILoggerFactory! factory) -> void Microsoft.AspNetCore.CookiePolicy.CookiePolicyMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext! context) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.CookiePolicy.CookiePolicyMiddleware.Options.get -> Microsoft.AspNetCore.Builder.CookiePolicyOptions! Microsoft.AspNetCore.CookiePolicy.CookiePolicyMiddleware.Options.set -> void diff --git a/src/Security/CookiePolicy/src/PublicAPI.Unshipped.txt b/src/Security/CookiePolicy/src/PublicAPI.Unshipped.txt index 80a5d1716df8..7dc5c58110bf 100644 --- a/src/Security/CookiePolicy/src/PublicAPI.Unshipped.txt +++ b/src/Security/CookiePolicy/src/PublicAPI.Unshipped.txt @@ -1,3 +1 @@ #nullable enable -Microsoft.AspNetCore.Builder.CookiePolicyOptions.ConsentCookieValue.get -> string! -Microsoft.AspNetCore.Builder.CookiePolicyOptions.ConsentCookieValue.set -> void diff --git a/src/Servers/Connections.Abstractions/src/PublicAPI/net462/PublicAPI.Shipped.txt b/src/Servers/Connections.Abstractions/src/PublicAPI/net462/PublicAPI.Shipped.txt index 93a5c9add413..67c66ad867f2 100644 --- a/src/Servers/Connections.Abstractions/src/PublicAPI/net462/PublicAPI.Shipped.txt +++ b/src/Servers/Connections.Abstractions/src/PublicAPI/net462/PublicAPI.Shipped.txt @@ -89,6 +89,8 @@ Microsoft.AspNetCore.Connections.Features.IProtocolErrorCodeFeature.Error.set -> Microsoft.AspNetCore.Connections.Features.IStreamAbortFeature Microsoft.AspNetCore.Connections.Features.IStreamAbortFeature.AbortRead(long errorCode, Microsoft.AspNetCore.Connections.ConnectionAbortedException! abortReason) -> void Microsoft.AspNetCore.Connections.Features.IStreamAbortFeature.AbortWrite(long errorCode, Microsoft.AspNetCore.Connections.ConnectionAbortedException! abortReason) -> void +Microsoft.AspNetCore.Connections.Features.IStreamClosedFeature +Microsoft.AspNetCore.Connections.Features.IStreamClosedFeature.OnClosed(System.Action! callback, object? state) -> void Microsoft.AspNetCore.Connections.Features.IStreamDirectionFeature Microsoft.AspNetCore.Connections.Features.IStreamDirectionFeature.CanRead.get -> bool Microsoft.AspNetCore.Connections.Features.IStreamDirectionFeature.CanWrite.get -> bool diff --git a/src/Servers/Connections.Abstractions/src/PublicAPI/net462/PublicAPI.Unshipped.txt b/src/Servers/Connections.Abstractions/src/PublicAPI/net462/PublicAPI.Unshipped.txt index 553973838a81..7dc5c58110bf 100644 --- a/src/Servers/Connections.Abstractions/src/PublicAPI/net462/PublicAPI.Unshipped.txt +++ b/src/Servers/Connections.Abstractions/src/PublicAPI/net462/PublicAPI.Unshipped.txt @@ -1,3 +1 @@ #nullable enable -Microsoft.AspNetCore.Connections.Features.IStreamClosedFeature -Microsoft.AspNetCore.Connections.Features.IStreamClosedFeature.OnClosed(System.Action! callback, object? state) -> void diff --git a/src/Servers/Connections.Abstractions/src/PublicAPI/net7.0/PublicAPI.Shipped.txt b/src/Servers/Connections.Abstractions/src/PublicAPI/net7.0/PublicAPI.Shipped.txt index 93a5c9add413..74af8f491615 100644 --- a/src/Servers/Connections.Abstractions/src/PublicAPI/net7.0/PublicAPI.Shipped.txt +++ b/src/Servers/Connections.Abstractions/src/PublicAPI/net7.0/PublicAPI.Shipped.txt @@ -89,6 +89,8 @@ Microsoft.AspNetCore.Connections.Features.IProtocolErrorCodeFeature.Error.set -> Microsoft.AspNetCore.Connections.Features.IStreamAbortFeature Microsoft.AspNetCore.Connections.Features.IStreamAbortFeature.AbortRead(long errorCode, Microsoft.AspNetCore.Connections.ConnectionAbortedException! abortReason) -> void Microsoft.AspNetCore.Connections.Features.IStreamAbortFeature.AbortWrite(long errorCode, Microsoft.AspNetCore.Connections.ConnectionAbortedException! abortReason) -> void +Microsoft.AspNetCore.Connections.Features.IStreamClosedFeature +Microsoft.AspNetCore.Connections.Features.IStreamClosedFeature.OnClosed(System.Action! callback, object? state) -> void Microsoft.AspNetCore.Connections.Features.IStreamDirectionFeature Microsoft.AspNetCore.Connections.Features.IStreamDirectionFeature.CanRead.get -> bool Microsoft.AspNetCore.Connections.Features.IStreamDirectionFeature.CanWrite.get -> bool @@ -146,6 +148,22 @@ Microsoft.AspNetCore.Connections.MultiplexedConnectionBuilder.Use(System.Func void Microsoft.AspNetCore.Connections.MultiplexedConnectionDelegate +Microsoft.AspNetCore.Connections.TlsConnectionCallbackContext +Microsoft.AspNetCore.Connections.TlsConnectionCallbackContext.ClientHelloInfo.get -> System.Net.Security.SslClientHelloInfo +Microsoft.AspNetCore.Connections.TlsConnectionCallbackContext.ClientHelloInfo.set -> void +Microsoft.AspNetCore.Connections.TlsConnectionCallbackContext.Connection.get -> Microsoft.AspNetCore.Connections.BaseConnectionContext! +Microsoft.AspNetCore.Connections.TlsConnectionCallbackContext.Connection.set -> void +Microsoft.AspNetCore.Connections.TlsConnectionCallbackContext.State.get -> object? +Microsoft.AspNetCore.Connections.TlsConnectionCallbackContext.State.set -> void +Microsoft.AspNetCore.Connections.TlsConnectionCallbackContext.TlsConnectionCallbackContext() -> void +Microsoft.AspNetCore.Connections.TlsConnectionCallbackOptions +Microsoft.AspNetCore.Connections.TlsConnectionCallbackOptions.ApplicationProtocols.get -> System.Collections.Generic.List! +Microsoft.AspNetCore.Connections.TlsConnectionCallbackOptions.ApplicationProtocols.set -> void +Microsoft.AspNetCore.Connections.TlsConnectionCallbackOptions.OnConnection.get -> System.Func>! +Microsoft.AspNetCore.Connections.TlsConnectionCallbackOptions.OnConnection.set -> void +Microsoft.AspNetCore.Connections.TlsConnectionCallbackOptions.OnConnectionState.get -> object? +Microsoft.AspNetCore.Connections.TlsConnectionCallbackOptions.OnConnectionState.set -> void +Microsoft.AspNetCore.Connections.TlsConnectionCallbackOptions.TlsConnectionCallbackOptions() -> void Microsoft.AspNetCore.Connections.TransferFormat Microsoft.AspNetCore.Connections.TransferFormat.Binary = 1 -> Microsoft.AspNetCore.Connections.TransferFormat Microsoft.AspNetCore.Connections.TransferFormat.Text = 2 -> Microsoft.AspNetCore.Connections.TransferFormat diff --git a/src/Servers/Connections.Abstractions/src/PublicAPI/net7.0/PublicAPI.Unshipped.txt b/src/Servers/Connections.Abstractions/src/PublicAPI/net7.0/PublicAPI.Unshipped.txt index 4dd8553d83c1..7dc5c58110bf 100644 --- a/src/Servers/Connections.Abstractions/src/PublicAPI/net7.0/PublicAPI.Unshipped.txt +++ b/src/Servers/Connections.Abstractions/src/PublicAPI/net7.0/PublicAPI.Unshipped.txt @@ -1,19 +1 @@ #nullable enable -Microsoft.AspNetCore.Connections.Features.IStreamClosedFeature -Microsoft.AspNetCore.Connections.Features.IStreamClosedFeature.OnClosed(System.Action! callback, object? state) -> void -Microsoft.AspNetCore.Connections.TlsConnectionCallbackContext -Microsoft.AspNetCore.Connections.TlsConnectionCallbackContext.ClientHelloInfo.get -> System.Net.Security.SslClientHelloInfo -Microsoft.AspNetCore.Connections.TlsConnectionCallbackContext.ClientHelloInfo.set -> void -Microsoft.AspNetCore.Connections.TlsConnectionCallbackContext.Connection.get -> Microsoft.AspNetCore.Connections.BaseConnectionContext! -Microsoft.AspNetCore.Connections.TlsConnectionCallbackContext.Connection.set -> void -Microsoft.AspNetCore.Connections.TlsConnectionCallbackContext.State.get -> object? -Microsoft.AspNetCore.Connections.TlsConnectionCallbackContext.State.set -> void -Microsoft.AspNetCore.Connections.TlsConnectionCallbackContext.TlsConnectionCallbackContext() -> void -Microsoft.AspNetCore.Connections.TlsConnectionCallbackOptions -Microsoft.AspNetCore.Connections.TlsConnectionCallbackOptions.ApplicationProtocols.get -> System.Collections.Generic.List! -Microsoft.AspNetCore.Connections.TlsConnectionCallbackOptions.ApplicationProtocols.set -> void -Microsoft.AspNetCore.Connections.TlsConnectionCallbackOptions.OnConnection.get -> System.Func>! -Microsoft.AspNetCore.Connections.TlsConnectionCallbackOptions.OnConnection.set -> void -Microsoft.AspNetCore.Connections.TlsConnectionCallbackOptions.OnConnectionState.get -> object? -Microsoft.AspNetCore.Connections.TlsConnectionCallbackOptions.OnConnectionState.set -> void -Microsoft.AspNetCore.Connections.TlsConnectionCallbackOptions.TlsConnectionCallbackOptions() -> void diff --git a/src/Servers/Connections.Abstractions/src/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt b/src/Servers/Connections.Abstractions/src/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt index 93a5c9add413..67c66ad867f2 100644 --- a/src/Servers/Connections.Abstractions/src/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt +++ b/src/Servers/Connections.Abstractions/src/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt @@ -89,6 +89,8 @@ Microsoft.AspNetCore.Connections.Features.IProtocolErrorCodeFeature.Error.set -> Microsoft.AspNetCore.Connections.Features.IStreamAbortFeature Microsoft.AspNetCore.Connections.Features.IStreamAbortFeature.AbortRead(long errorCode, Microsoft.AspNetCore.Connections.ConnectionAbortedException! abortReason) -> void Microsoft.AspNetCore.Connections.Features.IStreamAbortFeature.AbortWrite(long errorCode, Microsoft.AspNetCore.Connections.ConnectionAbortedException! abortReason) -> void +Microsoft.AspNetCore.Connections.Features.IStreamClosedFeature +Microsoft.AspNetCore.Connections.Features.IStreamClosedFeature.OnClosed(System.Action! callback, object? state) -> void Microsoft.AspNetCore.Connections.Features.IStreamDirectionFeature Microsoft.AspNetCore.Connections.Features.IStreamDirectionFeature.CanRead.get -> bool Microsoft.AspNetCore.Connections.Features.IStreamDirectionFeature.CanWrite.get -> bool diff --git a/src/Servers/Connections.Abstractions/src/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt b/src/Servers/Connections.Abstractions/src/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt index 553973838a81..7dc5c58110bf 100644 --- a/src/Servers/Connections.Abstractions/src/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt +++ b/src/Servers/Connections.Abstractions/src/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt @@ -1,3 +1 @@ #nullable enable -Microsoft.AspNetCore.Connections.Features.IStreamClosedFeature -Microsoft.AspNetCore.Connections.Features.IStreamClosedFeature.OnClosed(System.Action! callback, object? state) -> void diff --git a/src/Servers/Connections.Abstractions/src/PublicAPI/netstandard2.1/PublicAPI.Shipped.txt b/src/Servers/Connections.Abstractions/src/PublicAPI/netstandard2.1/PublicAPI.Shipped.txt index 93a5c9add413..67c66ad867f2 100644 --- a/src/Servers/Connections.Abstractions/src/PublicAPI/netstandard2.1/PublicAPI.Shipped.txt +++ b/src/Servers/Connections.Abstractions/src/PublicAPI/netstandard2.1/PublicAPI.Shipped.txt @@ -89,6 +89,8 @@ Microsoft.AspNetCore.Connections.Features.IProtocolErrorCodeFeature.Error.set -> Microsoft.AspNetCore.Connections.Features.IStreamAbortFeature Microsoft.AspNetCore.Connections.Features.IStreamAbortFeature.AbortRead(long errorCode, Microsoft.AspNetCore.Connections.ConnectionAbortedException! abortReason) -> void Microsoft.AspNetCore.Connections.Features.IStreamAbortFeature.AbortWrite(long errorCode, Microsoft.AspNetCore.Connections.ConnectionAbortedException! abortReason) -> void +Microsoft.AspNetCore.Connections.Features.IStreamClosedFeature +Microsoft.AspNetCore.Connections.Features.IStreamClosedFeature.OnClosed(System.Action! callback, object? state) -> void Microsoft.AspNetCore.Connections.Features.IStreamDirectionFeature Microsoft.AspNetCore.Connections.Features.IStreamDirectionFeature.CanRead.get -> bool Microsoft.AspNetCore.Connections.Features.IStreamDirectionFeature.CanWrite.get -> bool diff --git a/src/Servers/Connections.Abstractions/src/PublicAPI/netstandard2.1/PublicAPI.Unshipped.txt b/src/Servers/Connections.Abstractions/src/PublicAPI/netstandard2.1/PublicAPI.Unshipped.txt index 553973838a81..7dc5c58110bf 100644 --- a/src/Servers/Connections.Abstractions/src/PublicAPI/netstandard2.1/PublicAPI.Unshipped.txt +++ b/src/Servers/Connections.Abstractions/src/PublicAPI/netstandard2.1/PublicAPI.Unshipped.txt @@ -1,3 +1 @@ #nullable enable -Microsoft.AspNetCore.Connections.Features.IStreamClosedFeature -Microsoft.AspNetCore.Connections.Features.IStreamClosedFeature.OnClosed(System.Action! callback, object? state) -> void diff --git a/src/Servers/IIS/IIS/src/PublicAPI.Shipped.txt b/src/Servers/IIS/IIS/src/PublicAPI.Shipped.txt index e1183072ec59..d67b16d9b637 100644 --- a/src/Servers/IIS/IIS/src/PublicAPI.Shipped.txt +++ b/src/Servers/IIS/IIS/src/PublicAPI.Shipped.txt @@ -44,6 +44,7 @@ override Microsoft.AspNetCore.Server.IIS.Core.WriteOnlyStream.Position.get -> lo override Microsoft.AspNetCore.Server.IIS.Core.WriteOnlyStream.Position.set -> void override Microsoft.AspNetCore.Server.IIS.Core.WriteOnlyStream.Read(byte[]! buffer, int offset, int count) -> int override Microsoft.AspNetCore.Server.IIS.Core.WriteOnlyStream.ReadAsync(byte[]! buffer, int offset, int count, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! +override Microsoft.AspNetCore.Server.IIS.Core.WriteOnlyStream.ReadAsync(System.Memory buffer, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask override Microsoft.AspNetCore.Server.IIS.Core.WriteOnlyStream.ReadTimeout.get -> int override Microsoft.AspNetCore.Server.IIS.Core.WriteOnlyStream.ReadTimeout.set -> void override Microsoft.AspNetCore.Server.IIS.Core.WriteOnlyStream.Seek(long offset, System.IO.SeekOrigin origin) -> long diff --git a/src/Servers/IIS/IIS/src/PublicAPI.Unshipped.txt b/src/Servers/IIS/IIS/src/PublicAPI.Unshipped.txt index c451d919f61d..7dc5c58110bf 100644 --- a/src/Servers/IIS/IIS/src/PublicAPI.Unshipped.txt +++ b/src/Servers/IIS/IIS/src/PublicAPI.Unshipped.txt @@ -1,2 +1 @@ #nullable enable -override Microsoft.AspNetCore.Server.IIS.Core.WriteOnlyStream.ReadAsync(System.Memory buffer, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.ValueTask diff --git a/src/Servers/IIS/IISIntegration/src/PublicAPI.Shipped.txt b/src/Servers/IIS/IISIntegration/src/PublicAPI.Shipped.txt index b3daf4c184d1..c38ee7c1995d 100644 --- a/src/Servers/IIS/IISIntegration/src/PublicAPI.Shipped.txt +++ b/src/Servers/IIS/IISIntegration/src/PublicAPI.Shipped.txt @@ -1,6 +1,4 @@ #nullable enable -Microsoft.AspNetCore.Server.IISIntegration.IISMiddleware.IISMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.Extensions.Options.IOptions! options, string! pairingToken, bool isWebsocketsSupported, Microsoft.AspNetCore.Authentication.IAuthenticationSchemeProvider! authentication, Microsoft.Extensions.Hosting.IHostApplicationLifetime! applicationLifetime) -> void -Microsoft.AspNetCore.Server.IISIntegration.IISMiddleware.IISMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.Extensions.Options.IOptions! options, string! pairingToken, Microsoft.AspNetCore.Authentication.IAuthenticationSchemeProvider! authentication, Microsoft.Extensions.Hosting.IHostApplicationLifetime! applicationLifetime) -> void const Microsoft.AspNetCore.Server.IISIntegration.IISDefaults.AuthenticationScheme = "Windows" -> string! const Microsoft.AspNetCore.Server.IISIntegration.IISDefaults.Negotiate = "Negotiate" -> string! const Microsoft.AspNetCore.Server.IISIntegration.IISDefaults.Ntlm = "NTLM" -> string! @@ -19,5 +17,7 @@ Microsoft.AspNetCore.Server.IISIntegration.IISHostingStartup Microsoft.AspNetCore.Server.IISIntegration.IISHostingStartup.Configure(Microsoft.AspNetCore.Hosting.IWebHostBuilder! builder) -> void Microsoft.AspNetCore.Server.IISIntegration.IISHostingStartup.IISHostingStartup() -> void Microsoft.AspNetCore.Server.IISIntegration.IISMiddleware +Microsoft.AspNetCore.Server.IISIntegration.IISMiddleware.IISMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.Extensions.Options.IOptions! options, string! pairingToken, bool isWebsocketsSupported, Microsoft.AspNetCore.Authentication.IAuthenticationSchemeProvider! authentication, Microsoft.Extensions.Hosting.IHostApplicationLifetime! applicationLifetime) -> void +Microsoft.AspNetCore.Server.IISIntegration.IISMiddleware.IISMiddleware(Microsoft.AspNetCore.Http.RequestDelegate! next, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.Extensions.Options.IOptions! options, string! pairingToken, Microsoft.AspNetCore.Authentication.IAuthenticationSchemeProvider! authentication, Microsoft.Extensions.Hosting.IHostApplicationLifetime! applicationLifetime) -> void Microsoft.AspNetCore.Server.IISIntegration.IISMiddleware.Invoke(Microsoft.AspNetCore.Http.HttpContext! httpContext) -> System.Threading.Tasks.Task! static Microsoft.AspNetCore.Hosting.WebHostBuilderIISExtensions.UseIISIntegration(this Microsoft.AspNetCore.Hosting.IWebHostBuilder! hostBuilder) -> Microsoft.AspNetCore.Hosting.IWebHostBuilder! diff --git a/src/Servers/Kestrel/Core/src/PublicAPI.Shipped.txt b/src/Servers/Kestrel/Core/src/PublicAPI.Shipped.txt index 021407794619..e4046841c2b0 100644 --- a/src/Servers/Kestrel/Core/src/PublicAPI.Shipped.txt +++ b/src/Servers/Kestrel/Core/src/PublicAPI.Shipped.txt @@ -1,5 +1,4 @@ #nullable enable -Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServer.KestrelServer(Microsoft.Extensions.Options.IOptions! options, Microsoft.AspNetCore.Connections.IConnectionListenerFactory! transportFactory, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void Microsoft.AspNetCore.Hosting.KestrelServerOptionsSystemdExtensions Microsoft.AspNetCore.Hosting.ListenOptionsConnectionLoggingExtensions Microsoft.AspNetCore.Hosting.ListenOptionsHttpsExtensions @@ -92,14 +91,15 @@ Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.IHttpHeadersHandler.OnSta Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.IHttpRequestLineHandler Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.IHttpRequestLineHandler.OnStartLine(Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpVersionAndMethod versionAndMethod, Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.TargetOffsetPathLength targetPath, System.Span startLine) -> void Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.TargetOffsetPathLength -Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.TargetOffsetPathLength.TargetOffsetPathLength() -> void Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.TargetOffsetPathLength.IsEncoded.get -> bool Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.TargetOffsetPathLength.Length.get -> int Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.TargetOffsetPathLength.Offset.get -> int +Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.TargetOffsetPathLength.TargetOffsetPathLength() -> void Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.TargetOffsetPathLength.TargetOffsetPathLength(int offset, int length, bool isEncoded) -> void Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServer Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServer.Dispose() -> void Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServer.Features.get -> Microsoft.AspNetCore.Http.Features.IFeatureCollection! +Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServer.KestrelServer(Microsoft.Extensions.Options.IOptions! options, Microsoft.AspNetCore.Connections.IConnectionListenerFactory! transportFactory, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServer.Options.get -> Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServerOptions! Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServer.StartAsync(Microsoft.AspNetCore.Hosting.Server.IHttpApplication! application, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Server.Kestrel.Core.KestrelServer.StopAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! @@ -216,6 +216,8 @@ Microsoft.AspNetCore.Server.Kestrel.Https.HttpsConnectionAdapterOptions.OnAuthen Microsoft.AspNetCore.Server.Kestrel.Https.HttpsConnectionAdapterOptions.OnAuthenticate.set -> void Microsoft.AspNetCore.Server.Kestrel.Https.HttpsConnectionAdapterOptions.ServerCertificate.get -> System.Security.Cryptography.X509Certificates.X509Certificate2? Microsoft.AspNetCore.Server.Kestrel.Https.HttpsConnectionAdapterOptions.ServerCertificate.set -> void +Microsoft.AspNetCore.Server.Kestrel.Https.HttpsConnectionAdapterOptions.ServerCertificateChain.get -> System.Security.Cryptography.X509Certificates.X509Certificate2Collection? +Microsoft.AspNetCore.Server.Kestrel.Https.HttpsConnectionAdapterOptions.ServerCertificateChain.set -> void Microsoft.AspNetCore.Server.Kestrel.Https.HttpsConnectionAdapterOptions.ServerCertificateSelector.get -> System.Func? Microsoft.AspNetCore.Server.Kestrel.Https.HttpsConnectionAdapterOptions.ServerCertificateSelector.set -> void Microsoft.AspNetCore.Server.Kestrel.Https.HttpsConnectionAdapterOptions.SslProtocols.get -> System.Security.Authentication.SslProtocols diff --git a/src/Servers/Kestrel/Core/src/PublicAPI.Unshipped.txt b/src/Servers/Kestrel/Core/src/PublicAPI.Unshipped.txt index 34eec7f5f033..7dc5c58110bf 100644 --- a/src/Servers/Kestrel/Core/src/PublicAPI.Unshipped.txt +++ b/src/Servers/Kestrel/Core/src/PublicAPI.Unshipped.txt @@ -1,3 +1 @@ #nullable enable -Microsoft.AspNetCore.Server.Kestrel.Https.HttpsConnectionAdapterOptions.ServerCertificateChain.get -> System.Security.Cryptography.X509Certificates.X509Certificate2Collection? -Microsoft.AspNetCore.Server.Kestrel.Https.HttpsConnectionAdapterOptions.ServerCertificateChain.set -> void diff --git a/src/Servers/Kestrel/Transport.Quic/src/PublicAPI.Shipped.txt b/src/Servers/Kestrel/Transport.Quic/src/PublicAPI.Shipped.txt index 5df7310da1a8..85b47dccbdad 100644 --- a/src/Servers/Kestrel/Transport.Quic/src/PublicAPI.Shipped.txt +++ b/src/Servers/Kestrel/Transport.Quic/src/PublicAPI.Shipped.txt @@ -3,13 +3,15 @@ Microsoft.AspNetCore.Hosting.WebHostBuilderQuicExtensions Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.Backlog.get -> int Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.Backlog.set -> void -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.IdleTimeout.get -> System.TimeSpan -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.IdleTimeout.set -> void -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.MaxBidirectionalStreamCount.get -> ushort +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.DefaultCloseErrorCode.get -> long +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.DefaultCloseErrorCode.set -> void +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.DefaultStreamErrorCode.get -> long +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.DefaultStreamErrorCode.set -> void +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.MaxBidirectionalStreamCount.get -> int Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.MaxBidirectionalStreamCount.set -> void Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.MaxReadBufferSize.get -> long? Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.MaxReadBufferSize.set -> void -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.MaxUnidirectionalStreamCount.get -> ushort +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.MaxUnidirectionalStreamCount.get -> int Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.MaxUnidirectionalStreamCount.set -> void Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.MaxWriteBufferSize.get -> long? Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.MaxWriteBufferSize.set -> void diff --git a/src/Servers/Kestrel/Transport.Quic/src/PublicAPI.Unshipped.txt b/src/Servers/Kestrel/Transport.Quic/src/PublicAPI.Unshipped.txt index 4e800a7e0542..7dc5c58110bf 100644 --- a/src/Servers/Kestrel/Transport.Quic/src/PublicAPI.Unshipped.txt +++ b/src/Servers/Kestrel/Transport.Quic/src/PublicAPI.Unshipped.txt @@ -1,11 +1 @@ #nullable enable -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.DefaultCloseErrorCode.get -> long -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.DefaultCloseErrorCode.set -> void -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.DefaultStreamErrorCode.get -> long -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.DefaultStreamErrorCode.set -> void -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.MaxBidirectionalStreamCount.get -> int -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.MaxUnidirectionalStreamCount.get -> int -*REMOVED*Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.IdleTimeout.get -> System.TimeSpan -*REMOVED*Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.IdleTimeout.set -> void -*REMOVED*Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.MaxBidirectionalStreamCount.get -> ushort -*REMOVED*Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.QuicTransportOptions.MaxUnidirectionalStreamCount.get -> ushort diff --git a/src/Servers/Kestrel/Transport.Sockets/src/PublicAPI.Shipped.txt b/src/Servers/Kestrel/Transport.Sockets/src/PublicAPI.Shipped.txt index ae33a8c32aa7..e74a40128397 100644 --- a/src/Servers/Kestrel/Transport.Sockets/src/PublicAPI.Shipped.txt +++ b/src/Servers/Kestrel/Transport.Sockets/src/PublicAPI.Shipped.txt @@ -1,6 +1,5 @@ #nullable enable ~Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportFactory.BindAsync(System.Net.EndPoint endpoint, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportFactory.SocketTransportFactory(Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void ~static Microsoft.AspNetCore.Hosting.WebHostBuilderSocketExtensions.UseSockets(this Microsoft.AspNetCore.Hosting.IWebHostBuilder hostBuilder) -> Microsoft.AspNetCore.Hosting.IWebHostBuilder ~static Microsoft.AspNetCore.Hosting.WebHostBuilderSocketExtensions.UseSockets(this Microsoft.AspNetCore.Hosting.IWebHostBuilder hostBuilder, System.Action configureOptions) -> Microsoft.AspNetCore.Hosting.IWebHostBuilder Microsoft.AspNetCore.Hosting.WebHostBuilderSocketExtensions @@ -22,6 +21,7 @@ Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionFactoryOpt Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionFactoryOptions.WaitForDataBeforeAllocatingBuffer.set -> void Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportFactory Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportFactory.BindAsync(System.Net.EndPoint! endpoint, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportFactory.SocketTransportFactory(Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportOptions Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportOptions.Backlog.get -> int Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketTransportOptions.Backlog.set -> void diff --git a/src/SignalR/clients/csharp/Client.Core/src/PublicAPI.Shipped.txt b/src/SignalR/clients/csharp/Client.Core/src/PublicAPI.Shipped.txt index d8a8785b6054..51c6ed09b2e9 100644 --- a/src/SignalR/clients/csharp/Client.Core/src/PublicAPI.Shipped.txt +++ b/src/SignalR/clients/csharp/Client.Core/src/PublicAPI.Shipped.txt @@ -71,22 +71,41 @@ static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.InvokeCoreAsy static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Action! handler) -> System.IDisposable! static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Type![]! parameterTypes, System.Func! handler) -> System.IDisposable! +static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func!>! handler) -> System.IDisposable! +static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Action! handler) -> System.IDisposable! static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! +static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func!>! handler) -> System.IDisposable! +static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Action! handler) -> System.IDisposable! static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! +static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func!>! handler) -> System.IDisposable! +static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Action! handler) -> System.IDisposable! static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! +static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func!>! handler) -> System.IDisposable! +static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Action! handler) -> System.IDisposable! static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! +static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func!>! handler) -> System.IDisposable! +static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Action! handler) -> System.IDisposable! static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! +static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func!>! handler) -> System.IDisposable! +static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Action! handler) -> System.IDisposable! static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! +static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func!>! handler) -> System.IDisposable! +static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Action! handler) -> System.IDisposable! static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! +static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func!>! handler) -> System.IDisposable! +static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Action! handler) -> System.IDisposable! static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! +static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func!>! handler) -> System.IDisposable! +static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! +static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Type![]! parameterTypes, System.Func!>! handler) -> System.IDisposable! static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.SendAsync(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, object? arg7, object? arg8, object? arg9, object? arg10, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.SendAsync(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, object? arg7, object? arg8, object? arg9, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.SendAsync(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, object? arg7, object? arg8, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! @@ -127,6 +146,7 @@ static readonly Microsoft.AspNetCore.SignalR.Client.HubConnection.DefaultServerT virtual Microsoft.AspNetCore.SignalR.Client.HubConnection.DisposeAsync() -> System.Threading.Tasks.ValueTask virtual Microsoft.AspNetCore.SignalR.Client.HubConnection.InvokeCoreAsync(string! methodName, System.Type! returnType, object?[]! args, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.SignalR.Client.HubConnection.On(string! methodName, System.Type![]! parameterTypes, System.Func! handler, object! state) -> System.IDisposable! +virtual Microsoft.AspNetCore.SignalR.Client.HubConnection.On(string! methodName, System.Type![]! parameterTypes, System.Func!>! handler, object! state) -> System.IDisposable! virtual Microsoft.AspNetCore.SignalR.Client.HubConnection.Remove(string! methodName) -> void virtual Microsoft.AspNetCore.SignalR.Client.HubConnection.SendCoreAsync(string! methodName, object?[]! args, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! virtual Microsoft.AspNetCore.SignalR.Client.HubConnection.StartAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! diff --git a/src/SignalR/clients/csharp/Client.Core/src/PublicAPI.Unshipped.txt b/src/SignalR/clients/csharp/Client.Core/src/PublicAPI.Unshipped.txt index 40077fde5c02..7dc5c58110bf 100644 --- a/src/SignalR/clients/csharp/Client.Core/src/PublicAPI.Unshipped.txt +++ b/src/SignalR/clients/csharp/Client.Core/src/PublicAPI.Unshipped.txt @@ -1,21 +1 @@ #nullable enable -static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func!>! handler) -> System.IDisposable! -static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! -static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func!>! handler) -> System.IDisposable! -static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! -static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func!>! handler) -> System.IDisposable! -static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! -static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func!>! handler) -> System.IDisposable! -static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! -static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func!>! handler) -> System.IDisposable! -static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! -static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func!>! handler) -> System.IDisposable! -static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! -static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func!>! handler) -> System.IDisposable! -static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! -static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func!>! handler) -> System.IDisposable! -static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! -static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func!>! handler) -> System.IDisposable! -static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Func! handler) -> System.IDisposable! -static Microsoft.AspNetCore.SignalR.Client.HubConnectionExtensions.On(this Microsoft.AspNetCore.SignalR.Client.HubConnection! hubConnection, string! methodName, System.Type![]! parameterTypes, System.Func!>! handler) -> System.IDisposable! -virtual Microsoft.AspNetCore.SignalR.Client.HubConnection.On(string! methodName, System.Type![]! parameterTypes, System.Func!>! handler, object! state) -> System.IDisposable! diff --git a/src/SignalR/clients/csharp/Http.Connections.Client/src/PublicAPI.Shipped.txt b/src/SignalR/clients/csharp/Http.Connections.Client/src/PublicAPI.Shipped.txt index 6969d0f92b7b..ecdc0f42e13f 100644 --- a/src/SignalR/clients/csharp/Http.Connections.Client/src/PublicAPI.Shipped.txt +++ b/src/SignalR/clients/csharp/Http.Connections.Client/src/PublicAPI.Shipped.txt @@ -1,5 +1,4 @@ #nullable enable -Microsoft.AspNetCore.Http.Connections.Client.HttpConnectionFactory.HttpConnectionFactory(Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void Microsoft.AspNetCore.Http.Connections.Client.HttpConnection Microsoft.AspNetCore.Http.Connections.Client.HttpConnection.HttpConnection(Microsoft.AspNetCore.Http.Connections.Client.HttpConnectionOptions! httpConnectionOptions, Microsoft.Extensions.Logging.ILoggerFactory? loggerFactory) -> void Microsoft.AspNetCore.Http.Connections.Client.HttpConnection.HttpConnection(System.Uri! url) -> void @@ -9,6 +8,7 @@ Microsoft.AspNetCore.Http.Connections.Client.HttpConnection.StartAsync(Microsoft Microsoft.AspNetCore.Http.Connections.Client.HttpConnection.StartAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.Http.Connections.Client.HttpConnectionFactory Microsoft.AspNetCore.Http.Connections.Client.HttpConnectionFactory.ConnectAsync(System.Net.EndPoint! endPoint, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask +Microsoft.AspNetCore.Http.Connections.Client.HttpConnectionFactory.HttpConnectionFactory(Microsoft.Extensions.Options.IOptions! options, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void Microsoft.AspNetCore.Http.Connections.Client.HttpConnectionOptions Microsoft.AspNetCore.Http.Connections.Client.HttpConnectionOptions.AccessTokenProvider.get -> System.Func!>? Microsoft.AspNetCore.Http.Connections.Client.HttpConnectionOptions.AccessTokenProvider.set -> void diff --git a/src/SignalR/common/Http.Connections/src/PublicAPI.Shipped.txt b/src/SignalR/common/Http.Connections/src/PublicAPI.Shipped.txt index 835f01d5ffe2..4790f140787c 100644 --- a/src/SignalR/common/Http.Connections/src/PublicAPI.Shipped.txt +++ b/src/SignalR/common/Http.Connections/src/PublicAPI.Shipped.txt @@ -1,6 +1,7 @@ #nullable enable Microsoft.AspNetCore.Builder.ConnectionEndpointRouteBuilder Microsoft.AspNetCore.Builder.ConnectionEndpointRouteBuilder.Add(System.Action! convention) -> void +Microsoft.AspNetCore.Builder.ConnectionEndpointRouteBuilder.Finally(System.Action! finalConvention) -> void Microsoft.AspNetCore.Builder.ConnectionEndpointRouteBuilderExtensions Microsoft.AspNetCore.Http.Connections.ConnectionOptions Microsoft.AspNetCore.Http.Connections.ConnectionOptions.ConnectionOptions() -> void diff --git a/src/SignalR/common/Http.Connections/src/PublicAPI.Unshipped.txt b/src/SignalR/common/Http.Connections/src/PublicAPI.Unshipped.txt index 36e706a622c1..7dc5c58110bf 100644 --- a/src/SignalR/common/Http.Connections/src/PublicAPI.Unshipped.txt +++ b/src/SignalR/common/Http.Connections/src/PublicAPI.Unshipped.txt @@ -1,2 +1 @@ #nullable enable -Microsoft.AspNetCore.Builder.ConnectionEndpointRouteBuilder.Finally(System.Action! finalConvention) -> void diff --git a/src/SignalR/common/Protocols.Json/src/PublicAPI.Shipped.txt b/src/SignalR/common/Protocols.Json/src/PublicAPI.Shipped.txt index 533bc084242c..2cc05bc257b6 100644 --- a/src/SignalR/common/Protocols.Json/src/PublicAPI.Shipped.txt +++ b/src/SignalR/common/Protocols.Json/src/PublicAPI.Shipped.txt @@ -1,5 +1,4 @@ #nullable enable -Microsoft.AspNetCore.SignalR.Protocol.JsonHubProtocol.JsonHubProtocol(Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.SignalR.JsonHubProtocolOptions Microsoft.AspNetCore.SignalR.JsonHubProtocolOptions.JsonHubProtocolOptions() -> void Microsoft.AspNetCore.SignalR.JsonHubProtocolOptions.PayloadSerializerOptions.get -> System.Text.Json.JsonSerializerOptions! @@ -8,6 +7,7 @@ Microsoft.AspNetCore.SignalR.Protocol.JsonHubProtocol Microsoft.AspNetCore.SignalR.Protocol.JsonHubProtocol.GetMessageBytes(Microsoft.AspNetCore.SignalR.Protocol.HubMessage! message) -> System.ReadOnlyMemory Microsoft.AspNetCore.SignalR.Protocol.JsonHubProtocol.IsVersionSupported(int version) -> bool Microsoft.AspNetCore.SignalR.Protocol.JsonHubProtocol.JsonHubProtocol() -> void +Microsoft.AspNetCore.SignalR.Protocol.JsonHubProtocol.JsonHubProtocol(Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.SignalR.Protocol.JsonHubProtocol.Name.get -> string! Microsoft.AspNetCore.SignalR.Protocol.JsonHubProtocol.TransferFormat.get -> Microsoft.AspNetCore.Connections.TransferFormat Microsoft.AspNetCore.SignalR.Protocol.JsonHubProtocol.TryParseMessage(ref System.Buffers.ReadOnlySequence input, Microsoft.AspNetCore.SignalR.IInvocationBinder! binder, out Microsoft.AspNetCore.SignalR.Protocol.HubMessage? message) -> bool diff --git a/src/SignalR/common/Protocols.MessagePack/src/PublicAPI.Shipped.txt b/src/SignalR/common/Protocols.MessagePack/src/PublicAPI.Shipped.txt index 1b3d9e6d4f50..1603a16c8a14 100644 --- a/src/SignalR/common/Protocols.MessagePack/src/PublicAPI.Shipped.txt +++ b/src/SignalR/common/Protocols.MessagePack/src/PublicAPI.Shipped.txt @@ -1,5 +1,4 @@ #nullable enable -Microsoft.AspNetCore.SignalR.Protocol.MessagePackHubProtocol.MessagePackHubProtocol(Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.SignalR.MessagePackHubProtocolOptions Microsoft.AspNetCore.SignalR.MessagePackHubProtocolOptions.MessagePackHubProtocolOptions() -> void Microsoft.AspNetCore.SignalR.MessagePackHubProtocolOptions.SerializerOptions.get -> MessagePack.MessagePackSerializerOptions! @@ -8,6 +7,7 @@ Microsoft.AspNetCore.SignalR.Protocol.MessagePackHubProtocol Microsoft.AspNetCore.SignalR.Protocol.MessagePackHubProtocol.GetMessageBytes(Microsoft.AspNetCore.SignalR.Protocol.HubMessage! message) -> System.ReadOnlyMemory Microsoft.AspNetCore.SignalR.Protocol.MessagePackHubProtocol.IsVersionSupported(int version) -> bool Microsoft.AspNetCore.SignalR.Protocol.MessagePackHubProtocol.MessagePackHubProtocol() -> void +Microsoft.AspNetCore.SignalR.Protocol.MessagePackHubProtocol.MessagePackHubProtocol(Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.SignalR.Protocol.MessagePackHubProtocol.Name.get -> string! Microsoft.AspNetCore.SignalR.Protocol.MessagePackHubProtocol.TransferFormat.get -> Microsoft.AspNetCore.Connections.TransferFormat Microsoft.AspNetCore.SignalR.Protocol.MessagePackHubProtocol.TryParseMessage(ref System.Buffers.ReadOnlySequence input, Microsoft.AspNetCore.SignalR.IInvocationBinder! binder, out Microsoft.AspNetCore.SignalR.Protocol.HubMessage? message) -> bool diff --git a/src/SignalR/common/Protocols.NewtonsoftJson/src/PublicAPI.Shipped.txt b/src/SignalR/common/Protocols.NewtonsoftJson/src/PublicAPI.Shipped.txt index 59f4cc718f50..8350e7069a59 100644 --- a/src/SignalR/common/Protocols.NewtonsoftJson/src/PublicAPI.Shipped.txt +++ b/src/SignalR/common/Protocols.NewtonsoftJson/src/PublicAPI.Shipped.txt @@ -1,5 +1,4 @@ #nullable enable -Microsoft.AspNetCore.SignalR.Protocol.NewtonsoftJsonHubProtocol.NewtonsoftJsonHubProtocol(Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.SignalR.NewtonsoftJsonHubProtocolOptions Microsoft.AspNetCore.SignalR.NewtonsoftJsonHubProtocolOptions.NewtonsoftJsonHubProtocolOptions() -> void Microsoft.AspNetCore.SignalR.NewtonsoftJsonHubProtocolOptions.PayloadSerializerSettings.get -> Newtonsoft.Json.JsonSerializerSettings! @@ -9,6 +8,7 @@ Microsoft.AspNetCore.SignalR.Protocol.NewtonsoftJsonHubProtocol.GetMessageBytes( Microsoft.AspNetCore.SignalR.Protocol.NewtonsoftJsonHubProtocol.IsVersionSupported(int version) -> bool Microsoft.AspNetCore.SignalR.Protocol.NewtonsoftJsonHubProtocol.Name.get -> string! Microsoft.AspNetCore.SignalR.Protocol.NewtonsoftJsonHubProtocol.NewtonsoftJsonHubProtocol() -> void +Microsoft.AspNetCore.SignalR.Protocol.NewtonsoftJsonHubProtocol.NewtonsoftJsonHubProtocol(Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.SignalR.Protocol.NewtonsoftJsonHubProtocol.PayloadSerializer.get -> Newtonsoft.Json.JsonSerializer! Microsoft.AspNetCore.SignalR.Protocol.NewtonsoftJsonHubProtocol.TransferFormat.get -> Microsoft.AspNetCore.Connections.TransferFormat Microsoft.AspNetCore.SignalR.Protocol.NewtonsoftJsonHubProtocol.TryParseMessage(ref System.Buffers.ReadOnlySequence input, Microsoft.AspNetCore.SignalR.IInvocationBinder! binder, out Microsoft.AspNetCore.SignalR.Protocol.HubMessage? message) -> bool diff --git a/src/SignalR/common/SignalR.Common/src/PublicAPI/net462/PublicAPI.Shipped.txt b/src/SignalR/common/SignalR.Common/src/PublicAPI/net462/PublicAPI.Shipped.txt index 644b23ecd44b..39a3b7ab9bdc 100644 --- a/src/SignalR/common/SignalR.Common/src/PublicAPI/net462/PublicAPI.Shipped.txt +++ b/src/SignalR/common/SignalR.Common/src/PublicAPI/net462/PublicAPI.Shipped.txt @@ -69,6 +69,9 @@ Microsoft.AspNetCore.SignalR.Protocol.InvocationMessage.InvocationMessage(string Microsoft.AspNetCore.SignalR.Protocol.InvocationMessage.InvocationMessage(string? invocationId, string! target, object?[]! arguments) -> void Microsoft.AspNetCore.SignalR.Protocol.InvocationMessage.InvocationMessage(string? invocationId, string! target, object?[]! arguments, string![]? streamIds) -> void Microsoft.AspNetCore.SignalR.Protocol.PingMessage +Microsoft.AspNetCore.SignalR.Protocol.RawResult +Microsoft.AspNetCore.SignalR.Protocol.RawResult.RawResult(System.Buffers.ReadOnlySequence rawBytes) -> void +Microsoft.AspNetCore.SignalR.Protocol.RawResult.RawSerializedData.get -> System.Buffers.ReadOnlySequence Microsoft.AspNetCore.SignalR.Protocol.StreamBindingFailureMessage Microsoft.AspNetCore.SignalR.Protocol.StreamBindingFailureMessage.BindingFailure.get -> System.Runtime.ExceptionServices.ExceptionDispatchInfo! Microsoft.AspNetCore.SignalR.Protocol.StreamBindingFailureMessage.Id.get -> string! diff --git a/src/SignalR/common/SignalR.Common/src/PublicAPI/net462/PublicAPI.Unshipped.txt b/src/SignalR/common/SignalR.Common/src/PublicAPI/net462/PublicAPI.Unshipped.txt index 76fd06c813c2..7dc5c58110bf 100644 --- a/src/SignalR/common/SignalR.Common/src/PublicAPI/net462/PublicAPI.Unshipped.txt +++ b/src/SignalR/common/SignalR.Common/src/PublicAPI/net462/PublicAPI.Unshipped.txt @@ -1,4 +1 @@ #nullable enable -Microsoft.AspNetCore.SignalR.Protocol.RawResult -Microsoft.AspNetCore.SignalR.Protocol.RawResult.RawResult(System.Buffers.ReadOnlySequence rawBytes) -> void -Microsoft.AspNetCore.SignalR.Protocol.RawResult.RawSerializedData.get -> System.Buffers.ReadOnlySequence diff --git a/src/SignalR/common/SignalR.Common/src/PublicAPI/net7.0/PublicAPI.Shipped.txt b/src/SignalR/common/SignalR.Common/src/PublicAPI/net7.0/PublicAPI.Shipped.txt index 644b23ecd44b..6df62484dc61 100644 --- a/src/SignalR/common/SignalR.Common/src/PublicAPI/net7.0/PublicAPI.Shipped.txt +++ b/src/SignalR/common/SignalR.Common/src/PublicAPI/net7.0/PublicAPI.Shipped.txt @@ -15,6 +15,7 @@ Microsoft.AspNetCore.SignalR.IInvocationBinder Microsoft.AspNetCore.SignalR.IInvocationBinder.GetParameterTypes(string! methodName) -> System.Collections.Generic.IReadOnlyList! Microsoft.AspNetCore.SignalR.IInvocationBinder.GetReturnType(string! invocationId) -> System.Type! Microsoft.AspNetCore.SignalR.IInvocationBinder.GetStreamItemType(string! streamId) -> System.Type! +Microsoft.AspNetCore.SignalR.IInvocationBinder.GetTarget(System.ReadOnlySpan utf8Bytes) -> string? Microsoft.AspNetCore.SignalR.ISignalRBuilder Microsoft.AspNetCore.SignalR.ISignalRBuilder.Services.get -> Microsoft.Extensions.DependencyInjection.IServiceCollection! Microsoft.AspNetCore.SignalR.Protocol.CancelInvocationMessage @@ -69,6 +70,9 @@ Microsoft.AspNetCore.SignalR.Protocol.InvocationMessage.InvocationMessage(string Microsoft.AspNetCore.SignalR.Protocol.InvocationMessage.InvocationMessage(string? invocationId, string! target, object?[]! arguments) -> void Microsoft.AspNetCore.SignalR.Protocol.InvocationMessage.InvocationMessage(string? invocationId, string! target, object?[]! arguments, string![]? streamIds) -> void Microsoft.AspNetCore.SignalR.Protocol.PingMessage +Microsoft.AspNetCore.SignalR.Protocol.RawResult +Microsoft.AspNetCore.SignalR.Protocol.RawResult.RawResult(System.Buffers.ReadOnlySequence rawBytes) -> void +Microsoft.AspNetCore.SignalR.Protocol.RawResult.RawSerializedData.get -> System.Buffers.ReadOnlySequence Microsoft.AspNetCore.SignalR.Protocol.StreamBindingFailureMessage Microsoft.AspNetCore.SignalR.Protocol.StreamBindingFailureMessage.BindingFailure.get -> System.Runtime.ExceptionServices.ExceptionDispatchInfo! Microsoft.AspNetCore.SignalR.Protocol.StreamBindingFailureMessage.Id.get -> string! diff --git a/src/SignalR/common/SignalR.Common/src/PublicAPI/net7.0/PublicAPI.Unshipped.txt b/src/SignalR/common/SignalR.Common/src/PublicAPI/net7.0/PublicAPI.Unshipped.txt index abbf7421f958..7dc5c58110bf 100644 --- a/src/SignalR/common/SignalR.Common/src/PublicAPI/net7.0/PublicAPI.Unshipped.txt +++ b/src/SignalR/common/SignalR.Common/src/PublicAPI/net7.0/PublicAPI.Unshipped.txt @@ -1,5 +1 @@ #nullable enable -Microsoft.AspNetCore.SignalR.IInvocationBinder.GetTarget(System.ReadOnlySpan utf8Bytes) -> string? -Microsoft.AspNetCore.SignalR.Protocol.RawResult -Microsoft.AspNetCore.SignalR.Protocol.RawResult.RawResult(System.Buffers.ReadOnlySequence rawBytes) -> void -Microsoft.AspNetCore.SignalR.Protocol.RawResult.RawSerializedData.get -> System.Buffers.ReadOnlySequence diff --git a/src/SignalR/common/SignalR.Common/src/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt b/src/SignalR/common/SignalR.Common/src/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt index 644b23ecd44b..39a3b7ab9bdc 100644 --- a/src/SignalR/common/SignalR.Common/src/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt +++ b/src/SignalR/common/SignalR.Common/src/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt @@ -69,6 +69,9 @@ Microsoft.AspNetCore.SignalR.Protocol.InvocationMessage.InvocationMessage(string Microsoft.AspNetCore.SignalR.Protocol.InvocationMessage.InvocationMessage(string? invocationId, string! target, object?[]! arguments) -> void Microsoft.AspNetCore.SignalR.Protocol.InvocationMessage.InvocationMessage(string? invocationId, string! target, object?[]! arguments, string![]? streamIds) -> void Microsoft.AspNetCore.SignalR.Protocol.PingMessage +Microsoft.AspNetCore.SignalR.Protocol.RawResult +Microsoft.AspNetCore.SignalR.Protocol.RawResult.RawResult(System.Buffers.ReadOnlySequence rawBytes) -> void +Microsoft.AspNetCore.SignalR.Protocol.RawResult.RawSerializedData.get -> System.Buffers.ReadOnlySequence Microsoft.AspNetCore.SignalR.Protocol.StreamBindingFailureMessage Microsoft.AspNetCore.SignalR.Protocol.StreamBindingFailureMessage.BindingFailure.get -> System.Runtime.ExceptionServices.ExceptionDispatchInfo! Microsoft.AspNetCore.SignalR.Protocol.StreamBindingFailureMessage.Id.get -> string! diff --git a/src/SignalR/common/SignalR.Common/src/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt b/src/SignalR/common/SignalR.Common/src/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt index 76fd06c813c2..7dc5c58110bf 100644 --- a/src/SignalR/common/SignalR.Common/src/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt +++ b/src/SignalR/common/SignalR.Common/src/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt @@ -1,4 +1 @@ #nullable enable -Microsoft.AspNetCore.SignalR.Protocol.RawResult -Microsoft.AspNetCore.SignalR.Protocol.RawResult.RawResult(System.Buffers.ReadOnlySequence rawBytes) -> void -Microsoft.AspNetCore.SignalR.Protocol.RawResult.RawSerializedData.get -> System.Buffers.ReadOnlySequence diff --git a/src/SignalR/server/Core/src/PublicAPI.Shipped.txt b/src/SignalR/server/Core/src/PublicAPI.Shipped.txt index bc3896b65d14..091a6ec97192 100644 --- a/src/SignalR/server/Core/src/PublicAPI.Shipped.txt +++ b/src/SignalR/server/Core/src/PublicAPI.Shipped.txt @@ -1,15 +1,4 @@ #nullable enable -Microsoft.AspNetCore.SignalR.DefaultHubLifetimeManager -Microsoft.AspNetCore.SignalR.Hub -Microsoft.AspNetCore.SignalR.HubConnectionHandler -Microsoft.AspNetCore.SignalR.HubConnectionHandler.HubConnectionHandler(Microsoft.AspNetCore.SignalR.HubLifetimeManager! lifetimeManager, Microsoft.AspNetCore.SignalR.IHubProtocolResolver! protocolResolver, Microsoft.Extensions.Options.IOptions! globalHubOptions, Microsoft.Extensions.Options.IOptions!>! hubOptions, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.AspNetCore.SignalR.IUserIdProvider! userIdProvider, Microsoft.Extensions.DependencyInjection.IServiceScopeFactory! serviceScopeFactory) -> void -Microsoft.AspNetCore.SignalR.HubLifetimeManager -Microsoft.AspNetCore.SignalR.HubOptions -Microsoft.AspNetCore.SignalR.HubOptionsSetup -Microsoft.AspNetCore.SignalR.HubOptionsSetup.HubOptionsSetup(Microsoft.Extensions.Options.IOptions! options) -> void -Microsoft.AspNetCore.SignalR.IHubActivator -Microsoft.AspNetCore.SignalR.IHubContext -Microsoft.AspNetCore.SignalR.IHubContext abstract Microsoft.AspNetCore.SignalR.HubCallerContext.Abort() -> void abstract Microsoft.AspNetCore.SignalR.HubCallerContext.ConnectionAborted.get -> System.Threading.CancellationToken abstract Microsoft.AspNetCore.SignalR.HubCallerContext.ConnectionId.get -> string! @@ -31,6 +20,7 @@ abstract Microsoft.AspNetCore.SignalR.HubLifetimeManager.SendGroupsAsync(S abstract Microsoft.AspNetCore.SignalR.HubLifetimeManager.SendUserAsync(string! userId, string! methodName, object?[]! args, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! abstract Microsoft.AspNetCore.SignalR.HubLifetimeManager.SendUsersAsync(System.Collections.Generic.IReadOnlyList! userIds, string! methodName, object?[]! args, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.SignalR.ClientProxyExtensions +Microsoft.AspNetCore.SignalR.DefaultHubLifetimeManager Microsoft.AspNetCore.SignalR.DefaultHubLifetimeManager.DefaultHubLifetimeManager(Microsoft.Extensions.Logging.ILogger!>! logger) -> void Microsoft.AspNetCore.SignalR.DefaultUserIdProvider Microsoft.AspNetCore.SignalR.DefaultUserIdProvider.DefaultUserIdProvider() -> void @@ -61,6 +51,7 @@ Microsoft.AspNetCore.SignalR.Hub.Dispose() -> void Microsoft.AspNetCore.SignalR.Hub.Groups.get -> Microsoft.AspNetCore.SignalR.IGroupManager! Microsoft.AspNetCore.SignalR.Hub.Groups.set -> void Microsoft.AspNetCore.SignalR.Hub.Hub() -> void +Microsoft.AspNetCore.SignalR.Hub Microsoft.AspNetCore.SignalR.Hub.Clients.get -> Microsoft.AspNetCore.SignalR.IHubCallerClients! Microsoft.AspNetCore.SignalR.Hub.Clients.set -> void Microsoft.AspNetCore.SignalR.Hub.Hub() -> void @@ -83,13 +74,15 @@ Microsoft.AspNetCore.SignalR.HubConnectionContextOptions.MaximumReceiveMessageSi Microsoft.AspNetCore.SignalR.HubConnectionContextOptions.MaximumReceiveMessageSize.set -> void Microsoft.AspNetCore.SignalR.HubConnectionContextOptions.StreamBufferCapacity.get -> int Microsoft.AspNetCore.SignalR.HubConnectionContextOptions.StreamBufferCapacity.set -> void +Microsoft.AspNetCore.SignalR.HubConnectionHandler +Microsoft.AspNetCore.SignalR.HubConnectionHandler.HubConnectionHandler(Microsoft.AspNetCore.SignalR.HubLifetimeManager! lifetimeManager, Microsoft.AspNetCore.SignalR.IHubProtocolResolver! protocolResolver, Microsoft.Extensions.Options.IOptions! globalHubOptions, Microsoft.Extensions.Options.IOptions!>! hubOptions, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory, Microsoft.AspNetCore.SignalR.IUserIdProvider! userIdProvider, Microsoft.Extensions.DependencyInjection.IServiceScopeFactory! serviceScopeFactory) -> void Microsoft.AspNetCore.SignalR.HubConnectionStore Microsoft.AspNetCore.SignalR.HubConnectionStore.Add(Microsoft.AspNetCore.SignalR.HubConnectionContext! connection) -> void Microsoft.AspNetCore.SignalR.HubConnectionStore.Count.get -> int Microsoft.AspNetCore.SignalR.HubConnectionStore.Enumerator -Microsoft.AspNetCore.SignalR.HubConnectionStore.Enumerator.Enumerator() -> void Microsoft.AspNetCore.SignalR.HubConnectionStore.Enumerator.Current.get -> Microsoft.AspNetCore.SignalR.HubConnectionContext! Microsoft.AspNetCore.SignalR.HubConnectionStore.Enumerator.Dispose() -> void +Microsoft.AspNetCore.SignalR.HubConnectionStore.Enumerator.Enumerator() -> void Microsoft.AspNetCore.SignalR.HubConnectionStore.Enumerator.Enumerator(Microsoft.AspNetCore.SignalR.HubConnectionStore! hubConnectionList) -> void Microsoft.AspNetCore.SignalR.HubConnectionStore.Enumerator.MoveNext() -> bool Microsoft.AspNetCore.SignalR.HubConnectionStore.Enumerator.Reset() -> void @@ -110,6 +103,7 @@ Microsoft.AspNetCore.SignalR.HubLifetimeContext.Context.get -> Microsoft.AspNetC Microsoft.AspNetCore.SignalR.HubLifetimeContext.Hub.get -> Microsoft.AspNetCore.SignalR.Hub! Microsoft.AspNetCore.SignalR.HubLifetimeContext.HubLifetimeContext(Microsoft.AspNetCore.SignalR.HubCallerContext! context, System.IServiceProvider! serviceProvider, Microsoft.AspNetCore.SignalR.Hub! hub) -> void Microsoft.AspNetCore.SignalR.HubLifetimeContext.ServiceProvider.get -> System.IServiceProvider! +Microsoft.AspNetCore.SignalR.HubLifetimeManager Microsoft.AspNetCore.SignalR.HubLifetimeManager.HubLifetimeManager() -> void Microsoft.AspNetCore.SignalR.HubMetadata Microsoft.AspNetCore.SignalR.HubMetadata.HubMetadata(System.Type! hubType) -> void @@ -120,6 +114,8 @@ Microsoft.AspNetCore.SignalR.HubMethodNameAttribute.Name.get -> string! Microsoft.AspNetCore.SignalR.HubOptions Microsoft.AspNetCore.SignalR.HubOptions.ClientTimeoutInterval.get -> System.TimeSpan? Microsoft.AspNetCore.SignalR.HubOptions.ClientTimeoutInterval.set -> void +Microsoft.AspNetCore.SignalR.HubOptions.DisableImplicitFromServicesParameters.get -> bool +Microsoft.AspNetCore.SignalR.HubOptions.DisableImplicitFromServicesParameters.set -> void Microsoft.AspNetCore.SignalR.HubOptions.EnableDetailedErrors.get -> bool? Microsoft.AspNetCore.SignalR.HubOptions.EnableDetailedErrors.set -> void Microsoft.AspNetCore.SignalR.HubOptions.HandshakeTimeout.get -> System.TimeSpan? @@ -135,25 +131,32 @@ Microsoft.AspNetCore.SignalR.HubOptions.StreamBufferCapacity.get -> int? Microsoft.AspNetCore.SignalR.HubOptions.StreamBufferCapacity.set -> void Microsoft.AspNetCore.SignalR.HubOptions.SupportedProtocols.get -> System.Collections.Generic.IList? Microsoft.AspNetCore.SignalR.HubOptions.SupportedProtocols.set -> void +Microsoft.AspNetCore.SignalR.HubOptions Microsoft.AspNetCore.SignalR.HubOptions.HubOptions() -> void Microsoft.AspNetCore.SignalR.HubOptionsExtensions Microsoft.AspNetCore.SignalR.HubOptionsSetup Microsoft.AspNetCore.SignalR.HubOptionsSetup.Configure(Microsoft.AspNetCore.SignalR.HubOptions! options) -> void Microsoft.AspNetCore.SignalR.HubOptionsSetup.HubOptionsSetup(System.Collections.Generic.IEnumerable! protocols) -> void +Microsoft.AspNetCore.SignalR.HubOptionsSetup Microsoft.AspNetCore.SignalR.HubOptionsSetup.Configure(Microsoft.AspNetCore.SignalR.HubOptions! options) -> void +Microsoft.AspNetCore.SignalR.HubOptionsSetup.HubOptionsSetup(Microsoft.Extensions.Options.IOptions! options) -> void Microsoft.AspNetCore.SignalR.IClientProxy Microsoft.AspNetCore.SignalR.IClientProxy.SendCoreAsync(string! method, object?[]! args, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.SignalR.IGroupManager Microsoft.AspNetCore.SignalR.IGroupManager.AddToGroupAsync(string! connectionId, string! groupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.SignalR.IGroupManager.RemoveFromGroupAsync(string! connectionId, string! groupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +Microsoft.AspNetCore.SignalR.IHubActivator Microsoft.AspNetCore.SignalR.IHubActivator.Create() -> THub! Microsoft.AspNetCore.SignalR.IHubActivator.Release(THub! hub) -> void Microsoft.AspNetCore.SignalR.IHubCallerClients +Microsoft.AspNetCore.SignalR.IHubCallerClients.Caller.get -> Microsoft.AspNetCore.SignalR.ISingleClientProxy! +Microsoft.AspNetCore.SignalR.IHubCallerClients.Client(string! connectionId) -> Microsoft.AspNetCore.SignalR.ISingleClientProxy! Microsoft.AspNetCore.SignalR.IHubCallerClients Microsoft.AspNetCore.SignalR.IHubCallerClients.Caller.get -> T Microsoft.AspNetCore.SignalR.IHubCallerClients.Others.get -> T Microsoft.AspNetCore.SignalR.IHubCallerClients.OthersInGroup(string! groupName) -> T Microsoft.AspNetCore.SignalR.IHubClients +Microsoft.AspNetCore.SignalR.IHubClients.Client(string! connectionId) -> Microsoft.AspNetCore.SignalR.ISingleClientProxy! Microsoft.AspNetCore.SignalR.IHubClients Microsoft.AspNetCore.SignalR.IHubClients.All.get -> T Microsoft.AspNetCore.SignalR.IHubClients.AllExcept(System.Collections.Generic.IReadOnlyList! excludedConnectionIds) -> T @@ -167,8 +170,10 @@ Microsoft.AspNetCore.SignalR.IHubClients.Users(System.Collections.Generic.IRe Microsoft.AspNetCore.SignalR.IHubContext Microsoft.AspNetCore.SignalR.IHubContext.Clients.get -> Microsoft.AspNetCore.SignalR.IHubClients! Microsoft.AspNetCore.SignalR.IHubContext.Groups.get -> Microsoft.AspNetCore.SignalR.IGroupManager! +Microsoft.AspNetCore.SignalR.IHubContext Microsoft.AspNetCore.SignalR.IHubContext.Clients.get -> Microsoft.AspNetCore.SignalR.IHubClients! Microsoft.AspNetCore.SignalR.IHubContext.Groups.get -> Microsoft.AspNetCore.SignalR.IGroupManager! +Microsoft.AspNetCore.SignalR.IHubContext Microsoft.AspNetCore.SignalR.IHubContext.Clients.get -> Microsoft.AspNetCore.SignalR.IHubClients! Microsoft.AspNetCore.SignalR.IHubContext.Groups.get -> Microsoft.AspNetCore.SignalR.IGroupManager! Microsoft.AspNetCore.SignalR.IHubFilter @@ -179,6 +184,8 @@ Microsoft.AspNetCore.SignalR.IHubProtocolResolver Microsoft.AspNetCore.SignalR.IHubProtocolResolver.AllProtocols.get -> System.Collections.Generic.IReadOnlyList! Microsoft.AspNetCore.SignalR.IHubProtocolResolver.GetProtocol(string! protocolName, System.Collections.Generic.IReadOnlyList? supportedProtocols) -> Microsoft.AspNetCore.SignalR.Protocol.IHubProtocol? Microsoft.AspNetCore.SignalR.ISignalRServerBuilder +Microsoft.AspNetCore.SignalR.ISingleClientProxy +Microsoft.AspNetCore.SignalR.ISingleClientProxy.InvokeCoreAsync(string! method, object?[]! args, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! Microsoft.AspNetCore.SignalR.IUserIdProvider Microsoft.AspNetCore.SignalR.IUserIdProvider.GetUserId(Microsoft.AspNetCore.SignalR.HubConnectionContext! connection) -> string? Microsoft.AspNetCore.SignalR.SerializedHubMessage @@ -187,13 +194,14 @@ Microsoft.AspNetCore.SignalR.SerializedHubMessage.Message.get -> Microsoft.AspNe Microsoft.AspNetCore.SignalR.SerializedHubMessage.SerializedHubMessage(Microsoft.AspNetCore.SignalR.Protocol.HubMessage! message) -> void Microsoft.AspNetCore.SignalR.SerializedHubMessage.SerializedHubMessage(System.Collections.Generic.IReadOnlyList! messages) -> void Microsoft.AspNetCore.SignalR.SerializedMessage -Microsoft.AspNetCore.SignalR.SerializedMessage.SerializedMessage() -> void Microsoft.AspNetCore.SignalR.SerializedMessage.ProtocolName.get -> string! Microsoft.AspNetCore.SignalR.SerializedMessage.Serialized.get -> System.ReadOnlyMemory +Microsoft.AspNetCore.SignalR.SerializedMessage.SerializedMessage() -> void Microsoft.AspNetCore.SignalR.SerializedMessage.SerializedMessage(string! protocolName, System.ReadOnlyMemory serialized) -> void Microsoft.AspNetCore.SignalR.SignalRConnectionBuilderExtensions Microsoft.Extensions.DependencyInjection.SignalRDependencyInjectionExtensions override Microsoft.AspNetCore.SignalR.DefaultHubLifetimeManager.AddToGroupAsync(string! connectionId, string! groupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +override Microsoft.AspNetCore.SignalR.DefaultHubLifetimeManager.InvokeConnectionAsync(string! connectionId, string! methodName, object?[]! args, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! override Microsoft.AspNetCore.SignalR.DefaultHubLifetimeManager.OnConnectedAsync(Microsoft.AspNetCore.SignalR.HubConnectionContext! connection) -> System.Threading.Tasks.Task! override Microsoft.AspNetCore.SignalR.DefaultHubLifetimeManager.OnDisconnectedAsync(Microsoft.AspNetCore.SignalR.HubConnectionContext! connection) -> System.Threading.Tasks.Task! override Microsoft.AspNetCore.SignalR.DefaultHubLifetimeManager.RemoveFromGroupAsync(string! connectionId, string! groupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! @@ -206,7 +214,20 @@ override Microsoft.AspNetCore.SignalR.DefaultHubLifetimeManager.SendGroupE override Microsoft.AspNetCore.SignalR.DefaultHubLifetimeManager.SendGroupsAsync(System.Collections.Generic.IReadOnlyList! groupNames, string! methodName, object?[]! args, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! override Microsoft.AspNetCore.SignalR.DefaultHubLifetimeManager.SendUserAsync(string! userId, string! methodName, object?[]! args, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! override Microsoft.AspNetCore.SignalR.DefaultHubLifetimeManager.SendUsersAsync(System.Collections.Generic.IReadOnlyList! userIds, string! methodName, object?[]! args, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +override Microsoft.AspNetCore.SignalR.DefaultHubLifetimeManager.SetConnectionResultAsync(string! connectionId, Microsoft.AspNetCore.SignalR.Protocol.CompletionMessage! result) -> System.Threading.Tasks.Task! +override Microsoft.AspNetCore.SignalR.DefaultHubLifetimeManager.TryGetReturnType(string! invocationId, out System.Type? type) -> bool override Microsoft.AspNetCore.SignalR.HubConnectionHandler.OnConnectedAsync(Microsoft.AspNetCore.Connections.ConnectionContext! connection) -> System.Threading.Tasks.Task! +static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.InvokeAsync(this Microsoft.AspNetCore.SignalR.ISingleClientProxy! clientProxy, string! method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, object? arg7, object? arg8, object? arg9, object? arg10, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! +static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.InvokeAsync(this Microsoft.AspNetCore.SignalR.ISingleClientProxy! clientProxy, string! method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, object? arg7, object? arg8, object? arg9, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! +static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.InvokeAsync(this Microsoft.AspNetCore.SignalR.ISingleClientProxy! clientProxy, string! method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, object? arg7, object? arg8, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! +static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.InvokeAsync(this Microsoft.AspNetCore.SignalR.ISingleClientProxy! clientProxy, string! method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, object? arg7, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! +static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.InvokeAsync(this Microsoft.AspNetCore.SignalR.ISingleClientProxy! clientProxy, string! method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! +static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.InvokeAsync(this Microsoft.AspNetCore.SignalR.ISingleClientProxy! clientProxy, string! method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! +static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.InvokeAsync(this Microsoft.AspNetCore.SignalR.ISingleClientProxy! clientProxy, string! method, object? arg1, object? arg2, object? arg3, object? arg4, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! +static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.InvokeAsync(this Microsoft.AspNetCore.SignalR.ISingleClientProxy! clientProxy, string! method, object? arg1, object? arg2, object? arg3, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! +static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.InvokeAsync(this Microsoft.AspNetCore.SignalR.ISingleClientProxy! clientProxy, string! method, object? arg1, object? arg2, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! +static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.InvokeAsync(this Microsoft.AspNetCore.SignalR.ISingleClientProxy! clientProxy, string! method, object? arg1, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! +static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.InvokeAsync(this Microsoft.AspNetCore.SignalR.ISingleClientProxy! clientProxy, string! method, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.SendAsync(this Microsoft.AspNetCore.SignalR.IClientProxy! clientProxy, string! method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, object? arg7, object? arg8, object? arg9, object? arg10, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.SendAsync(this Microsoft.AspNetCore.SignalR.IClientProxy! clientProxy, string! method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, object? arg7, object? arg8, object? arg9, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.SendAsync(this Microsoft.AspNetCore.SignalR.IClientProxy! clientProxy, string! method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, object? arg7, object? arg8, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! @@ -282,3 +303,6 @@ virtual Microsoft.AspNetCore.SignalR.HubConnectionContext.Protocol.set -> void virtual Microsoft.AspNetCore.SignalR.HubConnectionContext.User.get -> System.Security.Claims.ClaimsPrincipal! virtual Microsoft.AspNetCore.SignalR.HubConnectionContext.WriteAsync(Microsoft.AspNetCore.SignalR.Protocol.HubMessage! message, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask virtual Microsoft.AspNetCore.SignalR.HubConnectionContext.WriteAsync(Microsoft.AspNetCore.SignalR.SerializedHubMessage! message, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask +virtual Microsoft.AspNetCore.SignalR.HubLifetimeManager.InvokeConnectionAsync(string! connectionId, string! methodName, object?[]! args, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.SignalR.HubLifetimeManager.SetConnectionResultAsync(string! connectionId, Microsoft.AspNetCore.SignalR.Protocol.CompletionMessage! result) -> System.Threading.Tasks.Task! +virtual Microsoft.AspNetCore.SignalR.HubLifetimeManager.TryGetReturnType(string! invocationId, out System.Type? type) -> bool diff --git a/src/SignalR/server/Core/src/PublicAPI.Unshipped.txt b/src/SignalR/server/Core/src/PublicAPI.Unshipped.txt index f7dd250a0ce1..7dc5c58110bf 100644 --- a/src/SignalR/server/Core/src/PublicAPI.Unshipped.txt +++ b/src/SignalR/server/Core/src/PublicAPI.Unshipped.txt @@ -1,25 +1 @@ #nullable enable -Microsoft.AspNetCore.SignalR.HubOptions.DisableImplicitFromServicesParameters.get -> bool -Microsoft.AspNetCore.SignalR.HubOptions.DisableImplicitFromServicesParameters.set -> void -Microsoft.AspNetCore.SignalR.IHubCallerClients.Caller.get -> Microsoft.AspNetCore.SignalR.ISingleClientProxy! -Microsoft.AspNetCore.SignalR.IHubCallerClients.Client(string! connectionId) -> Microsoft.AspNetCore.SignalR.ISingleClientProxy! -Microsoft.AspNetCore.SignalR.IHubClients.Client(string! connectionId) -> Microsoft.AspNetCore.SignalR.ISingleClientProxy! -Microsoft.AspNetCore.SignalR.ISingleClientProxy -Microsoft.AspNetCore.SignalR.ISingleClientProxy.InvokeCoreAsync(string! method, object?[]! args, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! -override Microsoft.AspNetCore.SignalR.DefaultHubLifetimeManager.InvokeConnectionAsync(string! connectionId, string! methodName, object?[]! args, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! -override Microsoft.AspNetCore.SignalR.DefaultHubLifetimeManager.SetConnectionResultAsync(string! connectionId, Microsoft.AspNetCore.SignalR.Protocol.CompletionMessage! result) -> System.Threading.Tasks.Task! -override Microsoft.AspNetCore.SignalR.DefaultHubLifetimeManager.TryGetReturnType(string! invocationId, out System.Type? type) -> bool -static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.InvokeAsync(this Microsoft.AspNetCore.SignalR.ISingleClientProxy! clientProxy, string! method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, object? arg7, object? arg8, object? arg9, object? arg10, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! -static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.InvokeAsync(this Microsoft.AspNetCore.SignalR.ISingleClientProxy! clientProxy, string! method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, object? arg7, object? arg8, object? arg9, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! -static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.InvokeAsync(this Microsoft.AspNetCore.SignalR.ISingleClientProxy! clientProxy, string! method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, object? arg7, object? arg8, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! -static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.InvokeAsync(this Microsoft.AspNetCore.SignalR.ISingleClientProxy! clientProxy, string! method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, object? arg7, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! -static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.InvokeAsync(this Microsoft.AspNetCore.SignalR.ISingleClientProxy! clientProxy, string! method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! -static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.InvokeAsync(this Microsoft.AspNetCore.SignalR.ISingleClientProxy! clientProxy, string! method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! -static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.InvokeAsync(this Microsoft.AspNetCore.SignalR.ISingleClientProxy! clientProxy, string! method, object? arg1, object? arg2, object? arg3, object? arg4, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! -static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.InvokeAsync(this Microsoft.AspNetCore.SignalR.ISingleClientProxy! clientProxy, string! method, object? arg1, object? arg2, object? arg3, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! -static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.InvokeAsync(this Microsoft.AspNetCore.SignalR.ISingleClientProxy! clientProxy, string! method, object? arg1, object? arg2, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! -static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.InvokeAsync(this Microsoft.AspNetCore.SignalR.ISingleClientProxy! clientProxy, string! method, object? arg1, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! -static Microsoft.AspNetCore.SignalR.ClientProxyExtensions.InvokeAsync(this Microsoft.AspNetCore.SignalR.ISingleClientProxy! clientProxy, string! method, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.SignalR.HubLifetimeManager.InvokeConnectionAsync(string! connectionId, string! methodName, object?[]! args, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.SignalR.HubLifetimeManager.SetConnectionResultAsync(string! connectionId, Microsoft.AspNetCore.SignalR.Protocol.CompletionMessage! result) -> System.Threading.Tasks.Task! -virtual Microsoft.AspNetCore.SignalR.HubLifetimeManager.TryGetReturnType(string! invocationId, out System.Type? type) -> bool diff --git a/src/SignalR/server/SignalR/src/PublicAPI.Shipped.txt b/src/SignalR/server/SignalR/src/PublicAPI.Shipped.txt index e0bf2ccaa353..85586c088eb3 100644 --- a/src/SignalR/server/SignalR/src/PublicAPI.Shipped.txt +++ b/src/SignalR/server/SignalR/src/PublicAPI.Shipped.txt @@ -1,6 +1,7 @@ #nullable enable Microsoft.AspNetCore.Builder.HubEndpointConventionBuilder Microsoft.AspNetCore.Builder.HubEndpointConventionBuilder.Add(System.Action! convention) -> void +Microsoft.AspNetCore.Builder.HubEndpointConventionBuilder.Finally(System.Action! finalConvention) -> void Microsoft.AspNetCore.Builder.HubEndpointRouteBuilderExtensions Microsoft.AspNetCore.Builder.IHubEndpointConventionBuilder Microsoft.AspNetCore.SignalR.GetHttpContextExtensions diff --git a/src/SignalR/server/SignalR/src/PublicAPI.Unshipped.txt b/src/SignalR/server/SignalR/src/PublicAPI.Unshipped.txt index aaa77a7632b2..7dc5c58110bf 100644 --- a/src/SignalR/server/SignalR/src/PublicAPI.Unshipped.txt +++ b/src/SignalR/server/SignalR/src/PublicAPI.Unshipped.txt @@ -1,2 +1 @@ #nullable enable -Microsoft.AspNetCore.Builder.HubEndpointConventionBuilder.Finally(System.Action! finalConvention) -> void diff --git a/src/SignalR/server/StackExchangeRedis/src/PublicAPI.Shipped.txt b/src/SignalR/server/StackExchangeRedis/src/PublicAPI.Shipped.txt index 3259c2463e7c..6cf60f197d27 100644 --- a/src/SignalR/server/StackExchangeRedis/src/PublicAPI.Shipped.txt +++ b/src/SignalR/server/StackExchangeRedis/src/PublicAPI.Shipped.txt @@ -1,8 +1,8 @@ #nullable enable Microsoft.AspNetCore.SignalR.StackExchangeRedis.RedisHubLifetimeManager +Microsoft.AspNetCore.SignalR.StackExchangeRedis.RedisHubLifetimeManager.Dispose() -> void Microsoft.AspNetCore.SignalR.StackExchangeRedis.RedisHubLifetimeManager.RedisHubLifetimeManager(Microsoft.Extensions.Logging.ILogger!>! logger, Microsoft.Extensions.Options.IOptions! options, Microsoft.AspNetCore.SignalR.IHubProtocolResolver! hubProtocolResolver) -> void Microsoft.AspNetCore.SignalR.StackExchangeRedis.RedisHubLifetimeManager.RedisHubLifetimeManager(Microsoft.Extensions.Logging.ILogger!>! logger, Microsoft.Extensions.Options.IOptions! options, Microsoft.AspNetCore.SignalR.IHubProtocolResolver! hubProtocolResolver, Microsoft.Extensions.Options.IOptions? globalHubOptions, Microsoft.Extensions.Options.IOptions!>? hubOptions) -> void -Microsoft.AspNetCore.SignalR.StackExchangeRedis.RedisHubLifetimeManager.Dispose() -> void Microsoft.AspNetCore.SignalR.StackExchangeRedis.RedisOptions Microsoft.AspNetCore.SignalR.StackExchangeRedis.RedisOptions.Configuration.get -> StackExchange.Redis.ConfigurationOptions! Microsoft.AspNetCore.SignalR.StackExchangeRedis.RedisOptions.Configuration.set -> void @@ -11,6 +11,7 @@ Microsoft.AspNetCore.SignalR.StackExchangeRedis.RedisOptions.ConnectionFactory.s Microsoft.AspNetCore.SignalR.StackExchangeRedis.RedisOptions.RedisOptions() -> void Microsoft.Extensions.DependencyInjection.StackExchangeRedisDependencyInjectionExtensions override Microsoft.AspNetCore.SignalR.StackExchangeRedis.RedisHubLifetimeManager.AddToGroupAsync(string! connectionId, string! groupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +override Microsoft.AspNetCore.SignalR.StackExchangeRedis.RedisHubLifetimeManager.InvokeConnectionAsync(string! connectionId, string! methodName, object?[]! args, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! override Microsoft.AspNetCore.SignalR.StackExchangeRedis.RedisHubLifetimeManager.OnConnectedAsync(Microsoft.AspNetCore.SignalR.HubConnectionContext! connection) -> System.Threading.Tasks.Task! override Microsoft.AspNetCore.SignalR.StackExchangeRedis.RedisHubLifetimeManager.OnDisconnectedAsync(Microsoft.AspNetCore.SignalR.HubConnectionContext! connection) -> System.Threading.Tasks.Task! override Microsoft.AspNetCore.SignalR.StackExchangeRedis.RedisHubLifetimeManager.RemoveFromGroupAsync(string! connectionId, string! groupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! @@ -23,6 +24,8 @@ override Microsoft.AspNetCore.SignalR.StackExchangeRedis.RedisHubLifetimeManager override Microsoft.AspNetCore.SignalR.StackExchangeRedis.RedisHubLifetimeManager.SendGroupsAsync(System.Collections.Generic.IReadOnlyList! groupNames, string! methodName, object?[]! args, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! override Microsoft.AspNetCore.SignalR.StackExchangeRedis.RedisHubLifetimeManager.SendUserAsync(string! userId, string! methodName, object?[]! args, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! override Microsoft.AspNetCore.SignalR.StackExchangeRedis.RedisHubLifetimeManager.SendUsersAsync(System.Collections.Generic.IReadOnlyList! userIds, string! methodName, object?[]! args, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.Task! +override Microsoft.AspNetCore.SignalR.StackExchangeRedis.RedisHubLifetimeManager.SetConnectionResultAsync(string! connectionId, Microsoft.AspNetCore.SignalR.Protocol.CompletionMessage! result) -> System.Threading.Tasks.Task! +override Microsoft.AspNetCore.SignalR.StackExchangeRedis.RedisHubLifetimeManager.TryGetReturnType(string! invocationId, out System.Type? type) -> bool static Microsoft.Extensions.DependencyInjection.StackExchangeRedisDependencyInjectionExtensions.AddStackExchangeRedis(this Microsoft.AspNetCore.SignalR.ISignalRServerBuilder! signalrBuilder) -> Microsoft.AspNetCore.SignalR.ISignalRServerBuilder! static Microsoft.Extensions.DependencyInjection.StackExchangeRedisDependencyInjectionExtensions.AddStackExchangeRedis(this Microsoft.AspNetCore.SignalR.ISignalRServerBuilder! signalrBuilder, string! redisConnectionString) -> Microsoft.AspNetCore.SignalR.ISignalRServerBuilder! static Microsoft.Extensions.DependencyInjection.StackExchangeRedisDependencyInjectionExtensions.AddStackExchangeRedis(this Microsoft.AspNetCore.SignalR.ISignalRServerBuilder! signalrBuilder, string! redisConnectionString, System.Action! configure) -> Microsoft.AspNetCore.SignalR.ISignalRServerBuilder! diff --git a/src/SignalR/server/StackExchangeRedis/src/PublicAPI.Unshipped.txt b/src/SignalR/server/StackExchangeRedis/src/PublicAPI.Unshipped.txt index 09d6bc878431..7dc5c58110bf 100644 --- a/src/SignalR/server/StackExchangeRedis/src/PublicAPI.Unshipped.txt +++ b/src/SignalR/server/StackExchangeRedis/src/PublicAPI.Unshipped.txt @@ -1,4 +1 @@ #nullable enable -override Microsoft.AspNetCore.SignalR.StackExchangeRedis.RedisHubLifetimeManager.InvokeConnectionAsync(string! connectionId, string! methodName, object?[]! args, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! -override Microsoft.AspNetCore.SignalR.StackExchangeRedis.RedisHubLifetimeManager.SetConnectionResultAsync(string! connectionId, Microsoft.AspNetCore.SignalR.Protocol.CompletionMessage! result) -> System.Threading.Tasks.Task! -override Microsoft.AspNetCore.SignalR.StackExchangeRedis.RedisHubLifetimeManager.TryGetReturnType(string! invocationId, out System.Type? type) -> bool