!!! Correct condition controlling `public` API analysis !!! (#26797)
* !!! Correct condition controlling `public` API analysis !!! - #26785 demonstrated analyzers were inoperable * Remove unused `public` API files * Update `public` API files - three Components files were missing `#nullable enable` - `nullable` annotations missing or out-of-date elsewhere * Ignore `public` API files completely during source build - do not warn about unused files * Update more `public` API files
This commit is contained in:
parent
b2175f1141
commit
8399c9f3f9
|
|
@ -18,18 +18,18 @@
|
|||
<NoWarn Condition="'$(IsTestProject)' == 'true' OR '$(IsTestAssetProject)' == 'true' OR '$(ISBenchmarkProject)' == 'true' OR '$(IsSampleProject)' == 'true'">$(NoWarn);CA1416</NoWarn>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup Condition=" Exists('$(MSBuildProjectDirectory)\PublicAPI.*.txt') AND
|
||||
'$(IsImplementationProject)' == 'true' AND
|
||||
<ItemGroup Condition=" Exists('$(MSBuildProjectDirectory)\PublicAPI.Shipped.txt') AND
|
||||
'$(DotNetBuildFromSource)' != 'true' AND
|
||||
'$(IsImplementationProject)' == 'true' AND
|
||||
! $(RepoRelativeProjectDir.Contains('Tools')) ">
|
||||
<Reference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" ExcludeAssets="Compile" PrivateAssets="All" />
|
||||
</ItemGroup>
|
||||
<Target Name="_CheckIgnoredPublicApiFiles"
|
||||
BeforeTargets="Build;Restore"
|
||||
Condition=" Exists('$(MSBuildProjectDirectory)\PublicAPI.*.txt') AND
|
||||
!('$(IsImplementationProject)' == 'true' AND
|
||||
Condition=" Exists('$(MSBuildProjectDirectory)\PublicAPI.Shipped.txt') AND
|
||||
'$(DotNetBuildFromSource)' != 'true' AND
|
||||
! $(RepoRelativeProjectDir.Contains('Tools'))) ">
|
||||
!('$(IsImplementationProject)' == 'true' AND
|
||||
! $(RepoRelativeProjectDir.Contains('Tools'))) ">
|
||||
<Warning Text="Public API baseline files ignored." />
|
||||
</Target>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
#nullable enable
|
||||
Microsoft.AspNetCore.Components.BindConverter
|
||||
Microsoft.AspNetCore.Components.BindElementAttribute
|
||||
Microsoft.AspNetCore.Components.BindElementAttribute.BindElementAttribute(string! element, string? suffix, string! valueAttribute, string! changeAttribute) -> void
|
||||
|
|
@ -46,12 +47,12 @@ Microsoft.AspNetCore.Components.EventCallback
|
|||
Microsoft.AspNetCore.Components.EventCallback.EventCallback(Microsoft.AspNetCore.Components.IHandleEvent? receiver, System.MulticastDelegate? delegate) -> void
|
||||
Microsoft.AspNetCore.Components.EventCallback.HasDelegate.get -> bool
|
||||
Microsoft.AspNetCore.Components.EventCallback.InvokeAsync() -> System.Threading.Tasks.Task!
|
||||
Microsoft.AspNetCore.Components.EventCallback.InvokeAsync(object! arg) -> System.Threading.Tasks.Task!
|
||||
Microsoft.AspNetCore.Components.EventCallback.InvokeAsync(object? arg) -> System.Threading.Tasks.Task!
|
||||
Microsoft.AspNetCore.Components.EventCallback<TValue>
|
||||
Microsoft.AspNetCore.Components.EventCallback<TValue>.EventCallback(Microsoft.AspNetCore.Components.IHandleEvent? receiver, System.MulticastDelegate? delegate) -> void
|
||||
Microsoft.AspNetCore.Components.EventCallback<TValue>.HasDelegate.get -> bool
|
||||
Microsoft.AspNetCore.Components.EventCallback<TValue>.InvokeAsync() -> System.Threading.Tasks.Task!
|
||||
Microsoft.AspNetCore.Components.EventCallback<TValue>.InvokeAsync(TValue arg) -> System.Threading.Tasks.Task!
|
||||
Microsoft.AspNetCore.Components.EventCallback<TValue>.InvokeAsync(TValue? arg) -> System.Threading.Tasks.Task!
|
||||
Microsoft.AspNetCore.Components.EventCallbackFactory
|
||||
Microsoft.AspNetCore.Components.EventCallbackFactory.Create(object! receiver, Microsoft.AspNetCore.Components.EventCallback callback) -> Microsoft.AspNetCore.Components.EventCallback
|
||||
Microsoft.AspNetCore.Components.EventCallbackFactory.Create(object! receiver, System.Action! callback) -> Microsoft.AspNetCore.Components.EventCallback
|
||||
|
|
@ -145,7 +146,7 @@ Microsoft.AspNetCore.Components.ParameterView.Enumerator
|
|||
Microsoft.AspNetCore.Components.ParameterView.Enumerator.Current.get -> Microsoft.AspNetCore.Components.ParameterValue
|
||||
Microsoft.AspNetCore.Components.ParameterView.Enumerator.MoveNext() -> bool
|
||||
Microsoft.AspNetCore.Components.ParameterView.GetEnumerator() -> Microsoft.AspNetCore.Components.ParameterView.Enumerator
|
||||
Microsoft.AspNetCore.Components.ParameterView.GetValueOrDefault<TValue>(string! parameterName) -> TValue
|
||||
Microsoft.AspNetCore.Components.ParameterView.GetValueOrDefault<TValue>(string! parameterName) -> TValue?
|
||||
Microsoft.AspNetCore.Components.ParameterView.GetValueOrDefault<TValue>(string! parameterName, TValue defaultValue) -> TValue
|
||||
Microsoft.AspNetCore.Components.ParameterView.SetParameterProperties(object! target) -> void
|
||||
Microsoft.AspNetCore.Components.ParameterView.ToDictionary() -> System.Collections.Generic.IReadOnlyDictionary<string!, object!>!
|
||||
|
|
@ -190,30 +191,13 @@ Microsoft.AspNetCore.Components.RenderTree.RenderTreeEditType.UpdateMarkup = 8 -
|
|||
Microsoft.AspNetCore.Components.RenderTree.RenderTreeEditType.UpdateText = 5 -> Microsoft.AspNetCore.Components.RenderTree.RenderTreeEditType
|
||||
Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame
|
||||
Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.AttributeEventHandlerId.get -> ulong
|
||||
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.AddAttribute(int sequence, string! name, string? value) -> void
|
||||
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.AddComponentReferenceCapture(int sequence, System.Action<object!>! componentReferenceCaptureAction) -> void
|
||||
Microsoft.AspNetCore.Components.Routing.Router.OnNavigateAsync.get -> Microsoft.AspNetCore.Components.EventCallback<Microsoft.AspNetCore.Components.Routing.NavigationContext!>
|
||||
Microsoft.AspNetCore.Components.Routing.Router.OnNavigateAsync.set -> void
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.AttributeEventUpdatesAttributeName.get -> string
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.AttributeName.get -> string
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.AttributeValue.get -> object
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.Component.get -> Microsoft.AspNetCore.Components.IComponent
|
||||
Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.ComponentId.get -> int
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.ComponentKey.get -> object
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.ComponentReferenceCaptureAction.get -> System.Action<object>
|
||||
Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.ComponentReferenceCaptureParentFrameIndex.get -> int
|
||||
Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.ComponentSubtreeLength.get -> int
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.ComponentType.get -> System.Type
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.ElementKey.get -> object
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.ElementName.get -> string
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.ElementReferenceCaptureAction.get -> System.Action<Microsoft.AspNetCore.Components.ElementReference>
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.ElementReferenceCaptureId.get -> string
|
||||
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.MarkupContent.get -> string
|
||||
Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.RegionSubtreeLength.get -> int
|
||||
Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.Sequence.get -> int
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.TextContent.get -> string
|
||||
Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrameType
|
||||
Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrameType.Attribute = 3 -> Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrameType
|
||||
Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrameType.Component = 4 -> Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrameType
|
||||
|
|
@ -243,7 +227,9 @@ Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.AddAttribute(int seq
|
|||
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.AddAttribute(int sequence, string! name, System.MulticastDelegate? value) -> void
|
||||
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.AddAttribute(int sequence, string! name, bool value) -> void
|
||||
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.AddAttribute(int sequence, string! name, object? value) -> void
|
||||
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.AddAttribute(int sequence, string! name, string? value) -> void
|
||||
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.AddAttribute<TArgument>(int sequence, string! name, Microsoft.AspNetCore.Components.EventCallback<TArgument> value) -> void
|
||||
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.AddComponentReferenceCapture(int sequence, System.Action<object!>! 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.RenderFragment? fragment) -> void
|
||||
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.AddContent(int sequence, object? textContent) -> void
|
||||
|
|
@ -303,6 +289,8 @@ Microsoft.AspNetCore.Components.Routing.Router.Navigating.get -> Microsoft.AspNe
|
|||
Microsoft.AspNetCore.Components.Routing.Router.Navigating.set -> void
|
||||
Microsoft.AspNetCore.Components.Routing.Router.NotFound.get -> Microsoft.AspNetCore.Components.RenderFragment!
|
||||
Microsoft.AspNetCore.Components.Routing.Router.NotFound.set -> void
|
||||
Microsoft.AspNetCore.Components.Routing.Router.OnNavigateAsync.get -> Microsoft.AspNetCore.Components.EventCallback<Microsoft.AspNetCore.Components.Routing.NavigationContext!>
|
||||
Microsoft.AspNetCore.Components.Routing.Router.OnNavigateAsync.set -> void
|
||||
Microsoft.AspNetCore.Components.Routing.Router.Router() -> void
|
||||
Microsoft.AspNetCore.Components.Routing.Router.SetParametersAsync(Microsoft.AspNetCore.Components.ParameterView parameters) -> System.Threading.Tasks.Task!
|
||||
abstract Microsoft.AspNetCore.Components.Dispatcher.CheckAccess() -> bool
|
||||
|
|
@ -315,7 +303,6 @@ abstract Microsoft.AspNetCore.Components.RenderTree.Renderer.Dispatcher.get -> M
|
|||
abstract Microsoft.AspNetCore.Components.RenderTree.Renderer.HandleException(System.Exception! exception) -> void
|
||||
abstract Microsoft.AspNetCore.Components.RenderTree.Renderer.UpdateDisplayAsync(in Microsoft.AspNetCore.Components.RenderTree.RenderBatch renderBatch) -> System.Threading.Tasks.Task!
|
||||
override Microsoft.AspNetCore.Components.MarkupString.ToString() -> string!
|
||||
~override Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.ToString() -> string
|
||||
readonly Microsoft.AspNetCore.Components.RenderTree.ArrayRange<T>.Array -> T[]!
|
||||
readonly Microsoft.AspNetCore.Components.RenderTree.ArrayRange<T>.Count -> int
|
||||
readonly Microsoft.AspNetCore.Components.RenderTree.RenderTreeDiff.ComponentId -> int
|
||||
|
|
@ -427,3 +414,17 @@ virtual Microsoft.AspNetCore.Components.RenderTree.Renderer.DispatchEventAsync(u
|
|||
virtual Microsoft.AspNetCore.Components.RenderTree.Renderer.Dispose(bool disposing) -> void
|
||||
virtual Microsoft.AspNetCore.Components.RenderTree.Renderer.ProcessPendingRender() -> void
|
||||
virtual Microsoft.AspNetCore.Components.RouteView.Render(Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder! builder) -> void
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.AttributeEventUpdatesAttributeName.get -> string
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.AttributeName.get -> string
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.AttributeValue.get -> object
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.Component.get -> Microsoft.AspNetCore.Components.IComponent
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.ComponentKey.get -> object
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.ComponentReferenceCaptureAction.get -> System.Action<object>
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.ComponentType.get -> System.Type
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.ElementKey.get -> object
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.ElementName.get -> string
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.ElementReferenceCaptureAction.get -> System.Action<Microsoft.AspNetCore.Components.ElementReference>
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.ElementReferenceCaptureId.get -> string
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.MarkupContent.get -> string
|
||||
~Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.TextContent.get -> string
|
||||
~override Microsoft.AspNetCore.Components.RenderTree.RenderTreeFrame.ToString() -> string
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
Microsoft.AspNetCore.Builder.ComponentEndpointConventionBuilder
|
||||
#nullable enable
|
||||
Microsoft.AspNetCore.Builder.ComponentEndpointConventionBuilder
|
||||
Microsoft.AspNetCore.Builder.ComponentEndpointConventionBuilder.Add(System.Action<Microsoft.AspNetCore.Builder.EndpointBuilder!>! convention) -> void
|
||||
Microsoft.AspNetCore.Builder.ComponentEndpointRouteBuilderExtensions
|
||||
Microsoft.AspNetCore.Components.Server.CircuitOptions
|
||||
|
|
@ -17,6 +18,19 @@ Microsoft.AspNetCore.Components.Server.Circuits.Circuit
|
|||
Microsoft.AspNetCore.Components.Server.Circuits.Circuit.Id.get -> string!
|
||||
Microsoft.AspNetCore.Components.Server.Circuits.CircuitHandler
|
||||
Microsoft.AspNetCore.Components.Server.Circuits.CircuitHandler.CircuitHandler() -> void
|
||||
Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage.ProtectedBrowserStorage
|
||||
Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage.ProtectedBrowserStorage.DeleteAsync(string! key) -> System.Threading.Tasks.ValueTask
|
||||
Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage.ProtectedBrowserStorage.GetAsync<TValue>(string! key) -> System.Threading.Tasks.ValueTask<Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage.ProtectedBrowserStorageResult<TValue>>
|
||||
Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage.ProtectedBrowserStorage.GetAsync<TValue>(string! purpose, string! key) -> System.Threading.Tasks.ValueTask<Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage.ProtectedBrowserStorageResult<TValue>>
|
||||
Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage.ProtectedBrowserStorage.SetAsync(string! key, object! value) -> System.Threading.Tasks.ValueTask
|
||||
Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage.ProtectedBrowserStorage.SetAsync(string! purpose, string! key, object! value) -> System.Threading.Tasks.ValueTask
|
||||
Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage.ProtectedBrowserStorageResult<TValue>
|
||||
Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage.ProtectedBrowserStorageResult<TValue>.Success.get -> bool
|
||||
Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage.ProtectedBrowserStorageResult<TValue>.Value.get -> TValue?
|
||||
Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage.ProtectedLocalStorage
|
||||
Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage.ProtectedLocalStorage.ProtectedLocalStorage(Microsoft.JSInterop.IJSRuntime! jsRuntime, Microsoft.AspNetCore.DataProtection.IDataProtectionProvider! dataProtectionProvider) -> void
|
||||
Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage.ProtectedSessionStorage
|
||||
Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage.ProtectedSessionStorage.ProtectedSessionStorage(Microsoft.JSInterop.IJSRuntime! jsRuntime, Microsoft.AspNetCore.DataProtection.IDataProtectionProvider! dataProtectionProvider) -> void
|
||||
Microsoft.AspNetCore.Components.Server.RevalidatingServerAuthenticationStateProvider
|
||||
Microsoft.AspNetCore.Components.Server.RevalidatingServerAuthenticationStateProvider.RevalidatingServerAuthenticationStateProvider(Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void
|
||||
Microsoft.AspNetCore.Components.Server.ServerAuthenticationStateProvider
|
||||
|
|
@ -41,4 +55,4 @@ virtual Microsoft.AspNetCore.Components.Server.Circuits.CircuitHandler.OnCircuit
|
|||
virtual Microsoft.AspNetCore.Components.Server.Circuits.CircuitHandler.OnConnectionDownAsync(Microsoft.AspNetCore.Components.Server.Circuits.Circuit! circuit, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task!
|
||||
virtual Microsoft.AspNetCore.Components.Server.Circuits.CircuitHandler.OnConnectionUpAsync(Microsoft.AspNetCore.Components.Server.Circuits.Circuit! circuit, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task!
|
||||
virtual Microsoft.AspNetCore.Components.Server.Circuits.CircuitHandler.Order.get -> int
|
||||
virtual Microsoft.AspNetCore.Components.Server.RevalidatingServerAuthenticationStateProvider.Dispose(bool disposing) -> void
|
||||
virtual Microsoft.AspNetCore.Components.Server.RevalidatingServerAuthenticationStateProvider.Dispose(bool disposing) -> void
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
Microsoft.AspNetCore.Components.BindInputElementAttribute
|
||||
#nullable enable
|
||||
Microsoft.AspNetCore.Components.BindInputElementAttribute
|
||||
Microsoft.AspNetCore.Components.BindInputElementAttribute.BindInputElementAttribute(string? type, string? suffix, string? valueAttribute, string? changeAttribute, bool isInvariantCulture, string? format) -> void
|
||||
Microsoft.AspNetCore.Components.BindInputElementAttribute.ChangeAttribute.get -> string?
|
||||
Microsoft.AspNetCore.Components.BindInputElementAttribute.Format.get -> string?
|
||||
|
|
@ -37,7 +38,7 @@ Microsoft.AspNetCore.Components.Forms.InputBase<TValue>
|
|||
Microsoft.AspNetCore.Components.Forms.InputBase<TValue>.AdditionalAttributes.get -> System.Collections.Generic.IReadOnlyDictionary<string!, object!>?
|
||||
Microsoft.AspNetCore.Components.Forms.InputBase<TValue>.AdditionalAttributes.set -> void
|
||||
Microsoft.AspNetCore.Components.Forms.InputBase<TValue>.CssClass.get -> string!
|
||||
Microsoft.AspNetCore.Components.Forms.InputBase<TValue>.CurrentValue.get -> TValue
|
||||
Microsoft.AspNetCore.Components.Forms.InputBase<TValue>.CurrentValue.get -> TValue?
|
||||
Microsoft.AspNetCore.Components.Forms.InputBase<TValue>.CurrentValue.set -> void
|
||||
Microsoft.AspNetCore.Components.Forms.InputBase<TValue>.CurrentValueAsString.get -> string?
|
||||
Microsoft.AspNetCore.Components.Forms.InputBase<TValue>.CurrentValueAsString.set -> void
|
||||
|
|
@ -48,7 +49,7 @@ Microsoft.AspNetCore.Components.Forms.InputBase<TValue>.EditContext.set -> void
|
|||
Microsoft.AspNetCore.Components.Forms.InputBase<TValue>.FieldIdentifier.get -> Microsoft.AspNetCore.Components.Forms.FieldIdentifier
|
||||
Microsoft.AspNetCore.Components.Forms.InputBase<TValue>.FieldIdentifier.set -> void
|
||||
Microsoft.AspNetCore.Components.Forms.InputBase<TValue>.InputBase() -> void
|
||||
Microsoft.AspNetCore.Components.Forms.InputBase<TValue>.Value.get -> TValue
|
||||
Microsoft.AspNetCore.Components.Forms.InputBase<TValue>.Value.get -> TValue?
|
||||
Microsoft.AspNetCore.Components.Forms.InputBase<TValue>.Value.set -> void
|
||||
Microsoft.AspNetCore.Components.Forms.InputBase<TValue>.ValueChanged.get -> Microsoft.AspNetCore.Components.EventCallback<TValue>
|
||||
Microsoft.AspNetCore.Components.Forms.InputBase<TValue>.ValueChanged.set -> void
|
||||
|
|
@ -81,7 +82,7 @@ Microsoft.AspNetCore.Components.Forms.InputRadio<TValue>.AdditionalAttributes.se
|
|||
Microsoft.AspNetCore.Components.Forms.InputRadio<TValue>.InputRadio() -> void
|
||||
Microsoft.AspNetCore.Components.Forms.InputRadio<TValue>.Name.get -> string?
|
||||
Microsoft.AspNetCore.Components.Forms.InputRadio<TValue>.Name.set -> void
|
||||
Microsoft.AspNetCore.Components.Forms.InputRadio<TValue>.Value.get -> TValue
|
||||
Microsoft.AspNetCore.Components.Forms.InputRadio<TValue>.Value.get -> TValue?
|
||||
Microsoft.AspNetCore.Components.Forms.InputRadio<TValue>.Value.set -> void
|
||||
Microsoft.AspNetCore.Components.Forms.InputRadioGroup<TValue>
|
||||
Microsoft.AspNetCore.Components.Forms.InputRadioGroup<TValue>.ChildContent.get -> Microsoft.AspNetCore.Components.RenderFragment?
|
||||
|
|
@ -331,6 +332,7 @@ Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize<TItem>.OverscanCou
|
|||
Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize<TItem>.OverscanCount.set -> void
|
||||
Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize<TItem>.Placeholder.get -> Microsoft.AspNetCore.Components.RenderFragment<Microsoft.AspNetCore.Components.Web.Virtualization.PlaceholderContext>?
|
||||
Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize<TItem>.Placeholder.set -> void
|
||||
Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize<TItem>.RefreshDataAsync() -> System.Threading.Tasks.Task!
|
||||
Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize<TItem>.Virtualize() -> void
|
||||
Microsoft.AspNetCore.Components.Web.WebEventCallbackFactoryEventArgsExtensions
|
||||
Microsoft.AspNetCore.Components.Web.WebRenderTreeBuilderExtensions
|
||||
|
|
@ -353,13 +355,13 @@ override Microsoft.AspNetCore.Components.Forms.InputBase<TValue>.SetParametersAs
|
|||
override Microsoft.AspNetCore.Components.Forms.InputCheckbox.BuildRenderTree(Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder! builder) -> void
|
||||
override Microsoft.AspNetCore.Components.Forms.InputCheckbox.TryParseValueFromString(string? value, out bool result, out string? validationErrorMessage) -> bool
|
||||
override Microsoft.AspNetCore.Components.Forms.InputDate<TValue>.BuildRenderTree(Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder! builder) -> void
|
||||
override Microsoft.AspNetCore.Components.Forms.InputDate<TValue>.FormatValueAsString(TValue value) -> string!
|
||||
override Microsoft.AspNetCore.Components.Forms.InputDate<TValue>.FormatValueAsString(TValue? value) -> string!
|
||||
override Microsoft.AspNetCore.Components.Forms.InputDate<TValue>.TryParseValueFromString(string? value, out TValue result, out string? validationErrorMessage) -> bool
|
||||
override Microsoft.AspNetCore.Components.Forms.InputFile.BuildRenderTree(Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder! builder) -> void
|
||||
override Microsoft.AspNetCore.Components.Forms.InputFile.OnAfterRenderAsync(bool firstRender) -> System.Threading.Tasks.Task!
|
||||
override Microsoft.AspNetCore.Components.Forms.InputFile.OnInitialized() -> void
|
||||
override Microsoft.AspNetCore.Components.Forms.InputNumber<TValue>.BuildRenderTree(Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder! builder) -> void
|
||||
override Microsoft.AspNetCore.Components.Forms.InputNumber<TValue>.FormatValueAsString(TValue value) -> string?
|
||||
override Microsoft.AspNetCore.Components.Forms.InputNumber<TValue>.FormatValueAsString(TValue? value) -> string?
|
||||
override Microsoft.AspNetCore.Components.Forms.InputNumber<TValue>.TryParseValueFromString(string? value, out TValue result, out string? validationErrorMessage) -> bool
|
||||
override Microsoft.AspNetCore.Components.Forms.InputRadio<TValue>.BuildRenderTree(Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder! builder) -> void
|
||||
override Microsoft.AspNetCore.Components.Forms.InputRadio<TValue>.OnParametersSet() -> void
|
||||
|
|
@ -408,6 +410,6 @@ static Microsoft.AspNetCore.Components.Web.WebRenderTreeBuilderExtensions.AddEve
|
|||
static Microsoft.AspNetCore.Components.Web.WebRenderTreeBuilderExtensions.AddEventStopPropagationAttribute(this Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder! builder, int sequence, string! eventName, bool value) -> void
|
||||
virtual Microsoft.AspNetCore.Components.Forms.FieldCssClassProvider.GetFieldCssClass(Microsoft.AspNetCore.Components.Forms.EditContext! editContext, in Microsoft.AspNetCore.Components.Forms.FieldIdentifier fieldIdentifier) -> string!
|
||||
virtual Microsoft.AspNetCore.Components.Forms.InputBase<TValue>.Dispose(bool disposing) -> void
|
||||
virtual Microsoft.AspNetCore.Components.Forms.InputBase<TValue>.FormatValueAsString(TValue value) -> string?
|
||||
virtual Microsoft.AspNetCore.Components.Forms.InputBase<TValue>.FormatValueAsString(TValue? value) -> string?
|
||||
virtual Microsoft.AspNetCore.Components.Forms.ValidationMessage<TValue>.Dispose(bool disposing) -> void
|
||||
virtual Microsoft.AspNetCore.Components.Forms.ValidationSummary.Dispose(bool disposing) -> void
|
||||
virtual Microsoft.AspNetCore.Components.Forms.ValidationSummary.Dispose(bool disposing) -> void
|
||||
|
|
|
|||
|
|
@ -7,7 +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<TContext>
|
||||
~Microsoft.AspNetCore.DataProtection.EntityFrameworkCore.EntityFrameworkCoreXmlRepository<TContext>
|
||||
Microsoft.AspNetCore.DataProtection.EntityFrameworkCore.EntityFrameworkCoreXmlRepository<TContext>.EntityFrameworkCoreXmlRepository(System.IServiceProvider! services, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void
|
||||
Microsoft.AspNetCore.DataProtection.EntityFrameworkCore.EntityFrameworkCoreXmlRepository<TContext>.StoreElement(System.Xml.Linq.XElement! element, string! friendlyName) -> void
|
||||
Microsoft.AspNetCore.DataProtection.EntityFrameworkCore.IDataProtectionKeyContext
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
#nullable enable
|
||||
|
|
@ -1 +0,0 @@
|
|||
#nullable enable
|
||||
|
|
@ -44,7 +44,7 @@ Microsoft.AspNetCore.Authentication.AuthenticationProperties.ExpiresUtc.get -> S
|
|||
Microsoft.AspNetCore.Authentication.AuthenticationProperties.ExpiresUtc.set -> void
|
||||
Microsoft.AspNetCore.Authentication.AuthenticationProperties.GetBool(string! key) -> bool?
|
||||
Microsoft.AspNetCore.Authentication.AuthenticationProperties.GetDateTimeOffset(string! key) -> System.DateTimeOffset?
|
||||
Microsoft.AspNetCore.Authentication.AuthenticationProperties.GetParameter<T>(string! key) -> T
|
||||
Microsoft.AspNetCore.Authentication.AuthenticationProperties.GetParameter<T>(string! key) -> T?
|
||||
Microsoft.AspNetCore.Authentication.AuthenticationProperties.GetString(string! key) -> string?
|
||||
Microsoft.AspNetCore.Authentication.AuthenticationProperties.IsPersistent.get -> bool
|
||||
Microsoft.AspNetCore.Authentication.AuthenticationProperties.IsPersistent.set -> void
|
||||
|
|
|
|||
|
|
@ -23,21 +23,21 @@ Microsoft.AspNetCore.Http.Features.Authentication.IHttpAuthenticationFeature.Use
|
|||
Microsoft.AspNetCore.Http.Features.FeatureCollection
|
||||
Microsoft.AspNetCore.Http.Features.FeatureCollection.FeatureCollection() -> void
|
||||
Microsoft.AspNetCore.Http.Features.FeatureCollection.FeatureCollection(Microsoft.AspNetCore.Http.Features.IFeatureCollection! defaults) -> void
|
||||
Microsoft.AspNetCore.Http.Features.FeatureCollection.Get<TFeature>() -> TFeature
|
||||
Microsoft.AspNetCore.Http.Features.FeatureCollection.Get<TFeature>() -> TFeature?
|
||||
Microsoft.AspNetCore.Http.Features.FeatureCollection.GetEnumerator() -> System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<System.Type!, object!>>!
|
||||
Microsoft.AspNetCore.Http.Features.FeatureCollection.IsReadOnly.get -> bool
|
||||
Microsoft.AspNetCore.Http.Features.FeatureCollection.Set<TFeature>(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.FeatureReference<T>
|
||||
Microsoft.AspNetCore.Http.Features.FeatureReference<T>.Fetch(Microsoft.AspNetCore.Http.Features.IFeatureCollection! features) -> T
|
||||
Microsoft.AspNetCore.Http.Features.FeatureReference<T>.Fetch(Microsoft.AspNetCore.Http.Features.IFeatureCollection! features) -> T?
|
||||
Microsoft.AspNetCore.Http.Features.FeatureReference<T>.Update(Microsoft.AspNetCore.Http.Features.IFeatureCollection! features, T feature) -> T
|
||||
Microsoft.AspNetCore.Http.Features.FeatureReferences<TCache>
|
||||
Microsoft.AspNetCore.Http.Features.FeatureReferences<TCache>.Cache -> TCache
|
||||
Microsoft.AspNetCore.Http.Features.FeatureReferences<TCache>.Cache -> TCache?
|
||||
Microsoft.AspNetCore.Http.Features.FeatureReferences<TCache>.Collection.get -> Microsoft.AspNetCore.Http.Features.IFeatureCollection!
|
||||
Microsoft.AspNetCore.Http.Features.FeatureReferences<TCache>.FeatureReferences(Microsoft.AspNetCore.Http.Features.IFeatureCollection! collection) -> void
|
||||
Microsoft.AspNetCore.Http.Features.FeatureReferences<TCache>.Fetch<TFeature, TState>(ref TFeature cached, TState state, System.Func<TState, TFeature>! factory) -> TFeature
|
||||
Microsoft.AspNetCore.Http.Features.FeatureReferences<TCache>.Fetch<TFeature>(ref TFeature cached, System.Func<Microsoft.AspNetCore.Http.Features.IFeatureCollection!, TFeature>! factory) -> TFeature
|
||||
Microsoft.AspNetCore.Http.Features.FeatureReferences<TCache>.Fetch<TFeature, TState>(ref TFeature? cached, TState state, System.Func<TState, TFeature?>! factory) -> TFeature?
|
||||
Microsoft.AspNetCore.Http.Features.FeatureReferences<TCache>.Fetch<TFeature>(ref TFeature? cached, System.Func<Microsoft.AspNetCore.Http.Features.IFeatureCollection!, TFeature?>! factory) -> TFeature?
|
||||
Microsoft.AspNetCore.Http.Features.FeatureReferences<TCache>.Initalize(Microsoft.AspNetCore.Http.Features.IFeatureCollection! collection) -> void
|
||||
Microsoft.AspNetCore.Http.Features.FeatureReferences<TCache>.Initalize(Microsoft.AspNetCore.Http.Features.IFeatureCollection! collection, int revision) -> void
|
||||
Microsoft.AspNetCore.Http.Features.FeatureReferences<TCache>.Revision.get -> int
|
||||
|
|
|
|||
|
|
@ -175,7 +175,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<TMetadata>
|
||||
~Microsoft.AspNetCore.Routing.Matching.EndpointMetadataComparer<TMetadata>
|
||||
Microsoft.AspNetCore.Routing.Matching.EndpointMetadataComparer<TMetadata>.Compare(Microsoft.AspNetCore.Http.Endpoint? x, Microsoft.AspNetCore.Http.Endpoint? y) -> int
|
||||
Microsoft.AspNetCore.Routing.Matching.EndpointMetadataComparer<TMetadata>.EndpointMetadataComparer() -> void
|
||||
Microsoft.AspNetCore.Routing.Matching.EndpointSelector
|
||||
|
|
|
|||
|
|
@ -1,12 +1,11 @@
|
|||
#nullable enable
|
||||
Microsoft.JSInterop.DotNetObjectReference
|
||||
Microsoft.JSInterop.DotNetObjectReference<TValue>
|
||||
Microsoft.JSInterop.DotNetObjectReference<TValue>.Dispose() -> void
|
||||
Microsoft.JSInterop.DotNetObjectReference<TValue>.Value.get -> TValue!
|
||||
Microsoft.JSInterop.IJSInProcessObjectReference
|
||||
Microsoft.JSInterop.IJSInProcessObjectReference.Invoke<TValue>(string! identifier, params object?[]? args) -> TValue
|
||||
Microsoft.JSInterop.IJSInProcessRuntime
|
||||
Microsoft.JSInterop.IJSInProcessRuntime.Invoke<T>(string! identifier, params object?[]? args) -> T
|
||||
Microsoft.JSInterop.IJSInProcessRuntime.Invoke<TResult>(string! identifier, params object?[]? args) -> TResult
|
||||
Microsoft.JSInterop.IJSObjectReference
|
||||
Microsoft.JSInterop.IJSObjectReference.InvokeAsync<TValue>(string! identifier, System.Threading.CancellationToken cancellationToken, object?[]? args) -> System.Threading.Tasks.ValueTask<TValue>
|
||||
Microsoft.JSInterop.IJSObjectReference.InvokeAsync<TValue>(string! identifier, object?[]? args) -> System.Threading.Tasks.ValueTask<TValue>
|
||||
|
|
@ -87,11 +86,12 @@ static Microsoft.JSInterop.JSObjectReferenceExtensions.InvokeAsync<TValue>(this
|
|||
static Microsoft.JSInterop.JSObjectReferenceExtensions.InvokeVoidAsync(this Microsoft.JSInterop.IJSObjectReference! jsObjectReference, string! identifier, System.Threading.CancellationToken cancellationToken, params object?[]! args) -> System.Threading.Tasks.ValueTask
|
||||
static Microsoft.JSInterop.JSObjectReferenceExtensions.InvokeVoidAsync(this Microsoft.JSInterop.IJSObjectReference! jsObjectReference, string! identifier, System.TimeSpan timeout, params object?[]! args) -> System.Threading.Tasks.ValueTask
|
||||
static Microsoft.JSInterop.JSObjectReferenceExtensions.InvokeVoidAsync(this Microsoft.JSInterop.IJSObjectReference! jsObjectReference, string! identifier, params object?[]! args) -> System.Threading.Tasks.ValueTask
|
||||
static Microsoft.JSInterop.JSRuntimeExtensions.InvokeAsync<TValue>(this Microsoft.JSInterop.IJSRuntime! jsRuntime, string! identifier, System.Threading.CancellationToken cancellationToken, params object![]! args) -> System.Threading.Tasks.ValueTask<TValue>
|
||||
static Microsoft.JSInterop.JSRuntimeExtensions.InvokeAsync<TValue>(this Microsoft.JSInterop.IJSRuntime! jsRuntime, string! identifier, System.TimeSpan timeout, params object![]! args) -> System.Threading.Tasks.ValueTask<TValue>
|
||||
static Microsoft.JSInterop.JSRuntimeExtensions.InvokeAsync<TValue>(this Microsoft.JSInterop.IJSRuntime! jsRuntime, string! identifier, params object![]! args) -> System.Threading.Tasks.ValueTask<TValue>
|
||||
static Microsoft.JSInterop.JSRuntimeExtensions.InvokeAsync<TValue>(this Microsoft.JSInterop.IJSRuntime! jsRuntime, string! identifier, System.Threading.CancellationToken cancellationToken, params object?[]? args) -> System.Threading.Tasks.ValueTask<TValue>
|
||||
static Microsoft.JSInterop.JSRuntimeExtensions.InvokeAsync<TValue>(this Microsoft.JSInterop.IJSRuntime! jsRuntime, string! identifier, System.TimeSpan timeout, params object?[]? args) -> System.Threading.Tasks.ValueTask<TValue>
|
||||
static Microsoft.JSInterop.JSRuntimeExtensions.InvokeAsync<TValue>(this Microsoft.JSInterop.IJSRuntime! jsRuntime, string! identifier, params object?[]? args) -> System.Threading.Tasks.ValueTask<TValue>
|
||||
static Microsoft.JSInterop.JSRuntimeExtensions.InvokeVoidAsync(this Microsoft.JSInterop.IJSRuntime! jsRuntime, string! identifier, System.Threading.CancellationToken cancellationToken, params object![]! args) -> System.Threading.Tasks.ValueTask
|
||||
static Microsoft.JSInterop.JSRuntimeExtensions.InvokeVoidAsync(this Microsoft.JSInterop.IJSRuntime! jsRuntime, string! identifier, System.TimeSpan timeout, params object![]! args) -> System.Threading.Tasks.ValueTask
|
||||
static Microsoft.JSInterop.JSRuntimeExtensions.InvokeVoidAsync(this Microsoft.JSInterop.IJSRuntime! jsRuntime, string! identifier, params object![]! args) -> System.Threading.Tasks.ValueTask
|
||||
virtual Microsoft.JSInterop.JSInProcessRuntime.InvokeJS(string! identifier, string? argsJson) -> string?
|
||||
virtual Microsoft.JSInterop.JSRuntime.BeginInvokeJS(long taskId, string! identifier, string? argsJson) -> void
|
||||
~Microsoft.JSInterop.DotNetObjectReference<TValue>
|
||||
|
|
|
|||
|
|
@ -6,6 +6,8 @@ Microsoft.AspNetCore.Builder.DeveloperExceptionPageOptions.SourceCodeLineCount.g
|
|||
Microsoft.AspNetCore.Builder.DeveloperExceptionPageOptions.SourceCodeLineCount.set -> void
|
||||
Microsoft.AspNetCore.Builder.ExceptionHandlerExtensions
|
||||
Microsoft.AspNetCore.Builder.ExceptionHandlerOptions
|
||||
Microsoft.AspNetCore.Builder.ExceptionHandlerOptions.AllowStatusCode404Response.get -> bool
|
||||
Microsoft.AspNetCore.Builder.ExceptionHandlerOptions.AllowStatusCode404Response.set -> void
|
||||
Microsoft.AspNetCore.Builder.ExceptionHandlerOptions.ExceptionHandlerOptions() -> void
|
||||
Microsoft.AspNetCore.Builder.ExceptionHandlerOptions.ExceptionHandlingPath.get -> Microsoft.AspNetCore.Http.PathString
|
||||
Microsoft.AspNetCore.Builder.ExceptionHandlerOptions.ExceptionHandlingPath.set -> void
|
||||
|
|
|
|||
|
|
@ -2090,6 +2090,7 @@ virtual Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationVisitor.Visit
|
|||
~static Microsoft.AspNetCore.Builder.ControllerEndpointRouteBuilderExtensions.MapDefaultControllerRoute(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints) -> Microsoft.AspNetCore.Builder.ControllerActionEndpointConventionBuilder
|
||||
~static Microsoft.AspNetCore.Builder.ControllerEndpointRouteBuilderExtensions.MapDynamicControllerRoute<TTransformer>(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints, string pattern) -> void
|
||||
~static Microsoft.AspNetCore.Builder.ControllerEndpointRouteBuilderExtensions.MapDynamicControllerRoute<TTransformer>(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints, string pattern, object state) -> void
|
||||
~static Microsoft.AspNetCore.Builder.ControllerEndpointRouteBuilderExtensions.MapDynamicControllerRoute<TTransformer>(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints, string pattern, object state, int order) -> void
|
||||
~static Microsoft.AspNetCore.Builder.ControllerEndpointRouteBuilderExtensions.MapFallbackToAreaController(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints, string action, string controller, string area) -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder
|
||||
~static Microsoft.AspNetCore.Builder.ControllerEndpointRouteBuilderExtensions.MapFallbackToAreaController(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints, string pattern, string action, string controller, string area) -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder
|
||||
~static Microsoft.AspNetCore.Builder.ControllerEndpointRouteBuilderExtensions.MapFallbackToController(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints, string action, string controller) -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder
|
||||
|
|
|
|||
|
|
@ -389,6 +389,7 @@ virtual Microsoft.AspNetCore.Mvc.Filters.PageHandlerExecutedContext.ExceptionHan
|
|||
~override Microsoft.AspNetCore.Mvc.RazorPages.PageResult.ExecuteResultAsync(Microsoft.AspNetCore.Mvc.ActionContext context) -> System.Threading.Tasks.Task
|
||||
~static Microsoft.AspNetCore.Builder.RazorPagesEndpointRouteBuilderExtensions.MapDynamicPageRoute<TTransformer>(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints, string pattern) -> void
|
||||
~static Microsoft.AspNetCore.Builder.RazorPagesEndpointRouteBuilderExtensions.MapDynamicPageRoute<TTransformer>(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints, string pattern, object state) -> void
|
||||
~static Microsoft.AspNetCore.Builder.RazorPagesEndpointRouteBuilderExtensions.MapDynamicPageRoute<TTransformer>(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints, string pattern, object state, int order) -> void
|
||||
~static Microsoft.AspNetCore.Builder.RazorPagesEndpointRouteBuilderExtensions.MapFallbackToAreaPage(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints, string page, string area) -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder
|
||||
~static Microsoft.AspNetCore.Builder.RazorPagesEndpointRouteBuilderExtensions.MapFallbackToAreaPage(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints, string pattern, string page, string area) -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder
|
||||
~static Microsoft.AspNetCore.Builder.RazorPagesEndpointRouteBuilderExtensions.MapFallbackToPage(this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints, string page) -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder
|
||||
|
|
|
|||
|
|
@ -1,22 +1,22 @@
|
|||
#nullable enable
|
||||
Microsoft.Extensions.ObjectPool.DefaultObjectPool<T>
|
||||
~Microsoft.Extensions.ObjectPool.DefaultObjectPool<T>
|
||||
Microsoft.Extensions.ObjectPool.DefaultObjectPool<T>.DefaultObjectPool(Microsoft.Extensions.ObjectPool.IPooledObjectPolicy<T!>! policy) -> void
|
||||
Microsoft.Extensions.ObjectPool.DefaultObjectPool<T>.DefaultObjectPool(Microsoft.Extensions.ObjectPool.IPooledObjectPolicy<T!>! 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<T>
|
||||
~Microsoft.Extensions.ObjectPool.DefaultPooledObjectPolicy<T>
|
||||
Microsoft.Extensions.ObjectPool.DefaultPooledObjectPolicy<T>.DefaultPooledObjectPolicy() -> void
|
||||
Microsoft.Extensions.ObjectPool.IPooledObjectPolicy<T>
|
||||
Microsoft.Extensions.ObjectPool.IPooledObjectPolicy<T>.Create() -> T
|
||||
Microsoft.Extensions.ObjectPool.IPooledObjectPolicy<T>.Return(T obj) -> bool
|
||||
Microsoft.Extensions.ObjectPool.LeakTrackingObjectPool<T>
|
||||
~Microsoft.Extensions.ObjectPool.LeakTrackingObjectPool<T>
|
||||
Microsoft.Extensions.ObjectPool.LeakTrackingObjectPool<T>.LeakTrackingObjectPool(Microsoft.Extensions.ObjectPool.ObjectPool<T!>! 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<T>
|
||||
~Microsoft.Extensions.ObjectPool.ObjectPool<T>
|
||||
Microsoft.Extensions.ObjectPool.ObjectPool<T>.ObjectPool() -> void
|
||||
Microsoft.Extensions.ObjectPool.ObjectPoolProvider
|
||||
Microsoft.Extensions.ObjectPool.ObjectPoolProvider.Create<T>() -> Microsoft.Extensions.ObjectPool.ObjectPool<T!>!
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ 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.AuthenticationHandler<TOptions>
|
||||
~Microsoft.AspNetCore.Authentication.AuthenticationHandler<TOptions>
|
||||
Microsoft.AspNetCore.Authentication.AuthenticationHandler<TOptions>.AuthenticateAsync() -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticateResult!>!
|
||||
Microsoft.AspNetCore.Authentication.AuthenticationHandler<TOptions>.AuthenticationHandler(Microsoft.Extensions.Options.IOptionsMonitor<TOptions!>! options, Microsoft.Extensions.Logging.ILoggerFactory! logger, System.Text.Encodings.Web.UrlEncoder! encoder, Microsoft.AspNetCore.Authentication.ISystemClock! clock) -> void
|
||||
Microsoft.AspNetCore.Authentication.AuthenticationHandler<TOptions>.BuildRedirectUri(string! targetPath) -> string!
|
||||
|
|
@ -60,14 +60,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<TOptions>
|
||||
~Microsoft.AspNetCore.Authentication.BaseContext<TOptions>
|
||||
Microsoft.AspNetCore.Authentication.BaseContext<TOptions>.BaseContext(Microsoft.AspNetCore.Http.HttpContext! context, Microsoft.AspNetCore.Authentication.AuthenticationScheme! scheme, TOptions! options) -> void
|
||||
Microsoft.AspNetCore.Authentication.BaseContext<TOptions>.HttpContext.get -> Microsoft.AspNetCore.Http.HttpContext!
|
||||
Microsoft.AspNetCore.Authentication.BaseContext<TOptions>.Options.get -> TOptions!
|
||||
Microsoft.AspNetCore.Authentication.BaseContext<TOptions>.Request.get -> Microsoft.AspNetCore.Http.HttpRequest!
|
||||
Microsoft.AspNetCore.Authentication.BaseContext<TOptions>.Response.get -> Microsoft.AspNetCore.Http.HttpResponse!
|
||||
Microsoft.AspNetCore.Authentication.BaseContext<TOptions>.Scheme.get -> Microsoft.AspNetCore.Authentication.AuthenticationScheme!
|
||||
Microsoft.AspNetCore.Authentication.HandleRequestContext<TOptions>
|
||||
~Microsoft.AspNetCore.Authentication.HandleRequestContext<TOptions>
|
||||
Microsoft.AspNetCore.Authentication.HandleRequestContext<TOptions>.HandleRequestContext(Microsoft.AspNetCore.Http.HttpContext! context, Microsoft.AspNetCore.Authentication.AuthenticationScheme! scheme, TOptions! options) -> void
|
||||
Microsoft.AspNetCore.Authentication.HandleRequestContext<TOptions>.HandleResponse() -> void
|
||||
Microsoft.AspNetCore.Authentication.HandleRequestContext<TOptions>.Result.get -> Microsoft.AspNetCore.Authentication.HandleRequestResult!
|
||||
|
|
@ -92,19 +92,19 @@ Microsoft.AspNetCore.Authentication.PolicySchemeHandler
|
|||
Microsoft.AspNetCore.Authentication.PolicySchemeHandler.PolicySchemeHandler(Microsoft.Extensions.Options.IOptionsMonitor<Microsoft.AspNetCore.Authentication.PolicySchemeOptions!>! 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<TOptions>
|
||||
~Microsoft.AspNetCore.Authentication.PrincipalContext<TOptions>
|
||||
Microsoft.AspNetCore.Authentication.PrincipalContext<TOptions>.PrincipalContext(Microsoft.AspNetCore.Http.HttpContext! context, Microsoft.AspNetCore.Authentication.AuthenticationScheme! scheme, TOptions! options, Microsoft.AspNetCore.Authentication.AuthenticationProperties? properties) -> void
|
||||
Microsoft.AspNetCore.Authentication.PropertiesContext<TOptions>
|
||||
~Microsoft.AspNetCore.Authentication.PropertiesContext<TOptions>
|
||||
Microsoft.AspNetCore.Authentication.PropertiesContext<TOptions>.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<TOptions>
|
||||
~Microsoft.AspNetCore.Authentication.RedirectContext<TOptions>
|
||||
Microsoft.AspNetCore.Authentication.RedirectContext<TOptions>.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<TOptions>.RedirectUri.get -> string!
|
||||
Microsoft.AspNetCore.Authentication.RedirectContext<TOptions>.RedirectUri.set -> void
|
||||
Microsoft.AspNetCore.Authentication.RemoteAuthenticationContext<TOptions>
|
||||
~Microsoft.AspNetCore.Authentication.RemoteAuthenticationContext<TOptions>
|
||||
Microsoft.AspNetCore.Authentication.RemoteAuthenticationContext<TOptions>.Fail(System.Exception! failure) -> void
|
||||
Microsoft.AspNetCore.Authentication.RemoteAuthenticationContext<TOptions>.Fail(string! failureMessage) -> void
|
||||
Microsoft.AspNetCore.Authentication.RemoteAuthenticationContext<TOptions>.Principal.get -> System.Security.Claims.ClaimsPrincipal?
|
||||
|
|
@ -119,7 +119,7 @@ Microsoft.AspNetCore.Authentication.RemoteAuthenticationEvents.OnRemoteFailure.s
|
|||
Microsoft.AspNetCore.Authentication.RemoteAuthenticationEvents.OnTicketReceived.get -> System.Func<Microsoft.AspNetCore.Authentication.TicketReceivedContext!, System.Threading.Tasks.Task!>!
|
||||
Microsoft.AspNetCore.Authentication.RemoteAuthenticationEvents.OnTicketReceived.set -> void
|
||||
Microsoft.AspNetCore.Authentication.RemoteAuthenticationEvents.RemoteAuthenticationEvents() -> void
|
||||
Microsoft.AspNetCore.Authentication.RemoteAuthenticationHandler<TOptions>
|
||||
~Microsoft.AspNetCore.Authentication.RemoteAuthenticationHandler<TOptions>
|
||||
Microsoft.AspNetCore.Authentication.RemoteAuthenticationHandler<TOptions>.Events.get -> Microsoft.AspNetCore.Authentication.RemoteAuthenticationEvents!
|
||||
Microsoft.AspNetCore.Authentication.RemoteAuthenticationHandler<TOptions>.Events.set -> void
|
||||
Microsoft.AspNetCore.Authentication.RemoteAuthenticationHandler<TOptions>.RemoteAuthenticationHandler(Microsoft.Extensions.Options.IOptionsMonitor<TOptions!>! options, Microsoft.Extensions.Logging.ILoggerFactory! logger, System.Text.Encodings.Web.UrlEncoder! encoder, Microsoft.AspNetCore.Authentication.ISystemClock! clock) -> void
|
||||
|
|
@ -158,7 +158,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<TOptions>
|
||||
~Microsoft.AspNetCore.Authentication.ResultContext<TOptions>
|
||||
Microsoft.AspNetCore.Authentication.ResultContext<TOptions>.Fail(System.Exception! failure) -> void
|
||||
Microsoft.AspNetCore.Authentication.ResultContext<TOptions>.Fail(string! failureMessage) -> void
|
||||
Microsoft.AspNetCore.Authentication.ResultContext<TOptions>.NoResult() -> void
|
||||
|
|
@ -175,9 +175,9 @@ Microsoft.AspNetCore.Authentication.SecureDataFormat<TData>.Protect(TData data,
|
|||
Microsoft.AspNetCore.Authentication.SecureDataFormat<TData>.SecureDataFormat(Microsoft.AspNetCore.Authentication.IDataSerializer<TData>! serializer, Microsoft.AspNetCore.DataProtection.IDataProtector! protector) -> void
|
||||
Microsoft.AspNetCore.Authentication.SecureDataFormat<TData>.Unprotect(string! protectedText) -> TData
|
||||
Microsoft.AspNetCore.Authentication.SecureDataFormat<TData>.Unprotect(string! protectedText, string? purpose) -> TData
|
||||
Microsoft.AspNetCore.Authentication.SignInAuthenticationHandler<TOptions>
|
||||
~Microsoft.AspNetCore.Authentication.SignInAuthenticationHandler<TOptions>
|
||||
Microsoft.AspNetCore.Authentication.SignInAuthenticationHandler<TOptions>.SignInAuthenticationHandler(Microsoft.Extensions.Options.IOptionsMonitor<TOptions!>! options, Microsoft.Extensions.Logging.ILoggerFactory! logger, System.Text.Encodings.Web.UrlEncoder! encoder, Microsoft.AspNetCore.Authentication.ISystemClock! clock) -> void
|
||||
Microsoft.AspNetCore.Authentication.SignOutAuthenticationHandler<TOptions>
|
||||
~Microsoft.AspNetCore.Authentication.SignOutAuthenticationHandler<TOptions>
|
||||
Microsoft.AspNetCore.Authentication.SignOutAuthenticationHandler<TOptions>.SignOutAuthenticationHandler(Microsoft.Extensions.Options.IOptionsMonitor<TOptions!>! 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
|
||||
|
|
|
|||
|
|
@ -6,6 +6,12 @@ Microsoft.AspNetCore.Authentication.Negotiate.ChallengeContext.HandleResponse()
|
|||
Microsoft.AspNetCore.Authentication.Negotiate.ChallengeContext.Handled.get -> bool
|
||||
Microsoft.AspNetCore.Authentication.Negotiate.LdapContext
|
||||
Microsoft.AspNetCore.Authentication.Negotiate.LdapSettings
|
||||
Microsoft.AspNetCore.Authentication.Negotiate.LdapSettings.ClaimsCacheAbsoluteExpiration.get -> System.TimeSpan
|
||||
Microsoft.AspNetCore.Authentication.Negotiate.LdapSettings.ClaimsCacheAbsoluteExpiration.set -> void
|
||||
Microsoft.AspNetCore.Authentication.Negotiate.LdapSettings.ClaimsCacheSize.get -> int
|
||||
Microsoft.AspNetCore.Authentication.Negotiate.LdapSettings.ClaimsCacheSize.set -> void
|
||||
Microsoft.AspNetCore.Authentication.Negotiate.LdapSettings.ClaimsCacheSlidingExpiration.get -> System.TimeSpan
|
||||
Microsoft.AspNetCore.Authentication.Negotiate.LdapSettings.ClaimsCacheSlidingExpiration.set -> void
|
||||
Microsoft.AspNetCore.Authentication.Negotiate.LdapSettings.EnableLdapClaimResolution.get -> bool
|
||||
Microsoft.AspNetCore.Authentication.Negotiate.LdapSettings.EnableLdapClaimResolution.set -> void
|
||||
Microsoft.AspNetCore.Authentication.Negotiate.LdapSettings.IgnoreNestedGroups.get -> bool
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#nullable enable
|
||||
Microsoft.AspNetCore.SignalR.ClientProxyExtensions
|
||||
Microsoft.AspNetCore.SignalR.DefaultHubLifetimeManager<THub>
|
||||
~Microsoft.AspNetCore.SignalR.DefaultHubLifetimeManager<THub>
|
||||
Microsoft.AspNetCore.SignalR.DefaultHubLifetimeManager<THub>.DefaultHubLifetimeManager(Microsoft.Extensions.Logging.ILogger<Microsoft.AspNetCore.SignalR.DefaultHubLifetimeManager<THub!>!>! logger) -> void
|
||||
Microsoft.AspNetCore.SignalR.DefaultUserIdProvider
|
||||
Microsoft.AspNetCore.SignalR.DefaultUserIdProvider.DefaultUserIdProvider() -> void
|
||||
|
|
@ -31,7 +31,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<T>
|
||||
~Microsoft.AspNetCore.SignalR.Hub<T>
|
||||
Microsoft.AspNetCore.SignalR.Hub<T>.Clients.get -> Microsoft.AspNetCore.SignalR.IHubCallerClients<T!>!
|
||||
Microsoft.AspNetCore.SignalR.Hub<T>.Clients.set -> void
|
||||
Microsoft.AspNetCore.SignalR.Hub<T>.Hub() -> void
|
||||
|
|
@ -54,7 +54,7 @@ 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<THub>
|
||||
~Microsoft.AspNetCore.SignalR.HubConnectionHandler<THub>
|
||||
Microsoft.AspNetCore.SignalR.HubConnectionStore
|
||||
Microsoft.AspNetCore.SignalR.HubConnectionStore.Add(Microsoft.AspNetCore.SignalR.HubConnectionContext! connection) -> void
|
||||
Microsoft.AspNetCore.SignalR.HubConnectionStore.Count.get -> int
|
||||
|
|
@ -82,7 +82,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<THub>
|
||||
~Microsoft.AspNetCore.SignalR.HubLifetimeManager<THub>
|
||||
Microsoft.AspNetCore.SignalR.HubLifetimeManager<THub>.HubLifetimeManager() -> void
|
||||
Microsoft.AspNetCore.SignalR.HubMetadata
|
||||
Microsoft.AspNetCore.SignalR.HubMetadata.HubMetadata(System.Type! hubType) -> void
|
||||
|
|
@ -108,20 +108,20 @@ Microsoft.AspNetCore.SignalR.HubOptions.StreamBufferCapacity.get -> int?
|
|||
Microsoft.AspNetCore.SignalR.HubOptions.StreamBufferCapacity.set -> void
|
||||
Microsoft.AspNetCore.SignalR.HubOptions.SupportedProtocols.get -> System.Collections.Generic.IList<string!>?
|
||||
Microsoft.AspNetCore.SignalR.HubOptions.SupportedProtocols.set -> void
|
||||
Microsoft.AspNetCore.SignalR.HubOptions<THub>
|
||||
~Microsoft.AspNetCore.SignalR.HubOptions<THub>
|
||||
Microsoft.AspNetCore.SignalR.HubOptions<THub>.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<Microsoft.AspNetCore.SignalR.Protocol.IHubProtocol!>! protocols) -> void
|
||||
Microsoft.AspNetCore.SignalR.HubOptionsSetup<THub>
|
||||
~Microsoft.AspNetCore.SignalR.HubOptionsSetup<THub>
|
||||
Microsoft.AspNetCore.SignalR.HubOptionsSetup<THub>.Configure(Microsoft.AspNetCore.SignalR.HubOptions<THub!>! 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<THub>
|
||||
~Microsoft.AspNetCore.SignalR.IHubActivator<THub>
|
||||
Microsoft.AspNetCore.SignalR.IHubActivator<THub>.Create() -> THub!
|
||||
Microsoft.AspNetCore.SignalR.IHubActivator<THub>.Release(THub! hub) -> void
|
||||
Microsoft.AspNetCore.SignalR.IHubCallerClients
|
||||
|
|
@ -140,10 +140,10 @@ Microsoft.AspNetCore.SignalR.IHubClients<T>.GroupExcept(string! groupName, Syste
|
|||
Microsoft.AspNetCore.SignalR.IHubClients<T>.Groups(System.Collections.Generic.IReadOnlyList<string!>! groupNames) -> T
|
||||
Microsoft.AspNetCore.SignalR.IHubClients<T>.User(string! userId) -> T
|
||||
Microsoft.AspNetCore.SignalR.IHubClients<T>.Users(System.Collections.Generic.IReadOnlyList<string!>! userIds) -> T
|
||||
Microsoft.AspNetCore.SignalR.IHubContext<THub, T>
|
||||
~Microsoft.AspNetCore.SignalR.IHubContext<THub, T>
|
||||
Microsoft.AspNetCore.SignalR.IHubContext<THub, T>.Clients.get -> Microsoft.AspNetCore.SignalR.IHubClients<T!>!
|
||||
Microsoft.AspNetCore.SignalR.IHubContext<THub, T>.Groups.get -> Microsoft.AspNetCore.SignalR.IGroupManager!
|
||||
Microsoft.AspNetCore.SignalR.IHubContext<THub>
|
||||
~Microsoft.AspNetCore.SignalR.IHubContext<THub>
|
||||
Microsoft.AspNetCore.SignalR.IHubContext<THub>.Clients.get -> Microsoft.AspNetCore.SignalR.IHubClients!
|
||||
Microsoft.AspNetCore.SignalR.IHubContext<THub>.Groups.get -> Microsoft.AspNetCore.SignalR.IGroupManager!
|
||||
Microsoft.AspNetCore.SignalR.IHubFilter
|
||||
|
|
|
|||
Loading…
Reference in New Issue