|
|
@@ -119,129 +119,6 @@ namespace Microsoft.AspNetCore.Components
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-namespace Microsoft.AspNetCore.Components.Forms
|
|
|
-{
|
|
|
- public partial class DataAnnotationsValidator : Microsoft.AspNetCore.Components.ComponentBase
|
|
|
- {
|
|
|
- public DataAnnotationsValidator() { }
|
|
|
- protected override void OnInitialized() { }
|
|
|
- }
|
|
|
-
|
|
|
- public partial class EditForm : Microsoft.AspNetCore.Components.ComponentBase
|
|
|
- {
|
|
|
- public EditForm() { }
|
|
|
- [Parameter(CaptureUnmatchedValues = true)]
|
|
|
- public System.Collections.Generic.IReadOnlyDictionary<string, object> AdditionalAttributes { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } private set { throw null; }}
|
|
|
- [Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
- public Microsoft.AspNetCore.Components.RenderFragment<Microsoft.AspNetCore.Components.Forms.EditContext> ChildContent { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } private set { throw null; }}
|
|
|
- [Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
- public Microsoft.AspNetCore.Components.Forms.EditContext EditContext { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } private set { throw null; }}
|
|
|
- [Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
- public object Model { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } private set { throw null; }}
|
|
|
- [Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
- public Microsoft.AspNetCore.Components.EventCallback<Microsoft.AspNetCore.Components.Forms.EditContext> OnInvalidSubmit { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } private set { throw null; }}
|
|
|
- [Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
- public Microsoft.AspNetCore.Components.EventCallback<Microsoft.AspNetCore.Components.Forms.EditContext> OnSubmit { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } private set { throw null; }}
|
|
|
- [Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
- public Microsoft.AspNetCore.Components.EventCallback<Microsoft.AspNetCore.Components.Forms.EditContext> OnValidSubmit { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } private set { throw null; }}
|
|
|
- protected override void BuildRenderTree(Microsoft.AspNetCore.Components.RenderTree.RenderTreeBuilder builder) { }
|
|
|
- protected override void OnParametersSet() { }
|
|
|
- }
|
|
|
-
|
|
|
- public abstract partial class InputBase<T> : Microsoft.AspNetCore.Components.ComponentBase
|
|
|
- {
|
|
|
- protected InputBase() { }
|
|
|
- [Parameter(CaptureUnmatchedValues = true)]
|
|
|
- public System.Collections.Generic.IReadOnlyDictionary<string, object> AdditionalAttributes { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } private set { throw null; }}
|
|
|
- protected string CssClass { get { throw null; } }
|
|
|
- protected T CurrentValue { get { throw null; } set { } }
|
|
|
- protected string CurrentValueAsString { get { throw null; } set { } }
|
|
|
- protected Microsoft.AspNetCore.Components.Forms.EditContext EditContext { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
- protected string FieldClass { get { throw null; } }
|
|
|
- protected Microsoft.AspNetCore.Components.Forms.FieldIdentifier FieldIdentifier { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
|
|
- [Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
- public T Value { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } private set { throw null; }}
|
|
|
- [Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
- public Microsoft.AspNetCore.Components.EventCallback<T> ValueChanged { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } private set { throw null; }}
|
|
|
- [Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
- public System.Linq.Expressions.Expression<System.Func<T>> ValueExpression { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } private set { throw null; }}
|
|
|
- protected virtual string FormatValueAsString(T value) { throw null; }
|
|
|
- public override System.Threading.Tasks.Task SetParametersAsync(Microsoft.AspNetCore.Components.ParameterCollection parameters) { throw null; }
|
|
|
- protected abstract bool TryParseValueFromString(string value, out T result, out string validationErrorMessage);
|
|
|
- }
|
|
|
-
|
|
|
- public partial class InputCheckbox : Microsoft.AspNetCore.Components.Forms.InputBase<bool>
|
|
|
- {
|
|
|
- public InputCheckbox() { }
|
|
|
- protected override void BuildRenderTree(Microsoft.AspNetCore.Components.RenderTree.RenderTreeBuilder builder) { }
|
|
|
- protected override bool TryParseValueFromString(string value, out bool result, out string validationErrorMessage) { throw null; }
|
|
|
- }
|
|
|
-
|
|
|
- public partial class InputDate<T> : Microsoft.AspNetCore.Components.Forms.InputBase<T>
|
|
|
- {
|
|
|
- public InputDate() { }
|
|
|
- [Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
- public string ParsingErrorMessage { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } private set { throw null; }}
|
|
|
- protected override void BuildRenderTree(Microsoft.AspNetCore.Components.RenderTree.RenderTreeBuilder builder) { }
|
|
|
- protected override string FormatValueAsString(T value) { throw null; }
|
|
|
- protected override bool TryParseValueFromString(string value, out T result, out string validationErrorMessage) { throw null; }
|
|
|
- }
|
|
|
-
|
|
|
- public partial class InputNumber<T> : Microsoft.AspNetCore.Components.Forms.InputBase<T>
|
|
|
- {
|
|
|
- public InputNumber() { }
|
|
|
- [Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
- public string ParsingErrorMessage { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } private set { throw null; }}
|
|
|
- protected override void BuildRenderTree(Microsoft.AspNetCore.Components.RenderTree.RenderTreeBuilder builder) { }
|
|
|
- protected override bool TryParseValueFromString(string value, out T result, out string validationErrorMessage) { throw null; }
|
|
|
- }
|
|
|
-
|
|
|
- public partial class InputSelect<T> : Microsoft.AspNetCore.Components.Forms.InputBase<T>
|
|
|
- {
|
|
|
- public InputSelect() { }
|
|
|
- [Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
- public Microsoft.AspNetCore.Components.RenderFragment ChildContent { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } private set { throw null; }}
|
|
|
- protected override void BuildRenderTree(Microsoft.AspNetCore.Components.RenderTree.RenderTreeBuilder builder) { }
|
|
|
- protected override bool TryParseValueFromString(string value, out T result, out string validationErrorMessage) { throw null; }
|
|
|
- }
|
|
|
-
|
|
|
- public partial class InputText : Microsoft.AspNetCore.Components.Forms.InputBase<string>
|
|
|
- {
|
|
|
- public InputText() { }
|
|
|
- protected override void BuildRenderTree(Microsoft.AspNetCore.Components.RenderTree.RenderTreeBuilder builder) { }
|
|
|
- protected override bool TryParseValueFromString(string value, out string result, out string validationErrorMessage) { throw null; }
|
|
|
- }
|
|
|
-
|
|
|
- public partial class InputTextArea : Microsoft.AspNetCore.Components.Forms.InputBase<string>
|
|
|
- {
|
|
|
- public InputTextArea() { }
|
|
|
- protected override void BuildRenderTree(Microsoft.AspNetCore.Components.RenderTree.RenderTreeBuilder builder) { }
|
|
|
- protected override bool TryParseValueFromString(string value, out string result, out string validationErrorMessage) { throw null; }
|
|
|
- }
|
|
|
-
|
|
|
- public partial class ValidationMessage<T> : Microsoft.AspNetCore.Components.ComponentBase, System.IDisposable
|
|
|
- {
|
|
|
- public ValidationMessage() { }
|
|
|
- [Parameter(CaptureUnmatchedValues = true)]
|
|
|
- public System.Collections.Generic.IReadOnlyDictionary<string, object> AdditionalAttributes { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } private set { throw null; }}
|
|
|
- [Microsoft.AspNetCore.Components.ParameterAttribute]
|
|
|
- public System.Linq.Expressions.Expression<System.Func<T>> For { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } private set { throw null; }}
|
|
|
- protected override void BuildRenderTree(Microsoft.AspNetCore.Components.RenderTree.RenderTreeBuilder builder) { }
|
|
|
- protected override void OnParametersSet() { }
|
|
|
- void System.IDisposable.Dispose() { }
|
|
|
- }
|
|
|
-
|
|
|
- public partial class ValidationSummary : Microsoft.AspNetCore.Components.ComponentBase, System.IDisposable
|
|
|
- {
|
|
|
- public ValidationSummary() { }
|
|
|
- [Parameter(CaptureUnmatchedValues = true)]
|
|
|
- public System.Collections.Generic.IReadOnlyDictionary<string, object> AdditionalAttributes { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } private set { throw null; }}
|
|
|
- protected override void BuildRenderTree(Microsoft.AspNetCore.Components.RenderTree.RenderTreeBuilder builder) { }
|
|
|
- protected override void OnParametersSet() { }
|
|
|
- void System.IDisposable.Dispose() { }
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
namespace Microsoft.AspNetCore.Components.Routing
|
|
|
{
|
|
|
public partial class NavLink : Microsoft.AspNetCore.Components.IComponent, System.IDisposable
|