[master] Update dependencies from dotnet/arcade (#9715)
* Update dependencies from https://github.com/dotnet/arcade build 20190423.2 - Microsoft.DotNet.GenAPI - 1.0.0-beta.19223.2 * Adjust to GenApi change in `enum` ordering - was sorted by name, now by value
This commit is contained in:
parent
6a99743d33
commit
8eb2e8baec
|
|
@ -380,9 +380,9 @@
|
||||||
<Uri>https://github.com/aspnet/Extensions</Uri>
|
<Uri>https://github.com/aspnet/Extensions</Uri>
|
||||||
<Sha>c3be53d2c8e78d388af8d47827fee604d9dcac59</Sha>
|
<Sha>c3be53d2c8e78d388af8d47827fee604d9dcac59</Sha>
|
||||||
</Dependency>
|
</Dependency>
|
||||||
<Dependency Name="Microsoft.DotNet.GenAPI" Version="1.0.0-beta.19222.2">
|
<Dependency Name="Microsoft.DotNet.GenAPI" Version="1.0.0-beta.19223.2">
|
||||||
<Uri>https://github.com/dotnet/arcade</Uri>
|
<Uri>https://github.com/dotnet/arcade</Uri>
|
||||||
<Sha>851e36df83d3361e4bd8a70a2a8a89f762469f9a</Sha>
|
<Sha>e3919d0c158716ef4685c8e057cc58640af1af83</Sha>
|
||||||
</Dependency>
|
</Dependency>
|
||||||
<Dependency Name="Microsoft.AspNetCore.Testing" Version="3.0.0-preview6.19222.23" CoherentParentDependency="Microsoft.EntityFrameworkCore">
|
<Dependency Name="Microsoft.AspNetCore.Testing" Version="3.0.0-preview6.19222.23" CoherentParentDependency="Microsoft.EntityFrameworkCore">
|
||||||
<Uri>https://github.com/aspnet/Extensions</Uri>
|
<Uri>https://github.com/aspnet/Extensions</Uri>
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
-->
|
-->
|
||||||
<PropertyGroup Label="Automated">
|
<PropertyGroup Label="Automated">
|
||||||
<!-- Packages from dotnet/arcade -->
|
<!-- Packages from dotnet/arcade -->
|
||||||
<MicrosoftDotNetGenAPIPackageVersion>1.0.0-beta.19222.2</MicrosoftDotNetGenAPIPackageVersion>
|
<MicrosoftDotNetGenAPIPackageVersion>1.0.0-beta.19223.2</MicrosoftDotNetGenAPIPackageVersion>
|
||||||
<!-- Packages from dotnet/core-setup -->
|
<!-- Packages from dotnet/core-setup -->
|
||||||
<MicrosoftExtensionsDependencyModelPackageVersion>3.0.0-preview6-27622-26</MicrosoftExtensionsDependencyModelPackageVersion>
|
<MicrosoftExtensionsDependencyModelPackageVersion>3.0.0-preview6-27622-26</MicrosoftExtensionsDependencyModelPackageVersion>
|
||||||
<MicrosoftNETCoreAppPackageVersion>3.0.0-preview6-27622-26</MicrosoftNETCoreAppPackageVersion>
|
<MicrosoftNETCoreAppPackageVersion>3.0.0-preview6-27622-26</MicrosoftNETCoreAppPackageVersion>
|
||||||
|
|
|
||||||
|
|
@ -41,9 +41,9 @@ namespace Microsoft.AspNetCore.Blazor.Http
|
||||||
{
|
{
|
||||||
public enum FetchCredentialsOption
|
public enum FetchCredentialsOption
|
||||||
{
|
{
|
||||||
Include = 2,
|
|
||||||
Omit = 0,
|
Omit = 0,
|
||||||
SameOrigin = 1,
|
SameOrigin = 1,
|
||||||
|
Include = 2,
|
||||||
}
|
}
|
||||||
public partial class WebAssemblyHttpMessageHandler : System.Net.Http.HttpMessageHandler
|
public partial class WebAssemblyHttpMessageHandler : System.Net.Http.HttpMessageHandler
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -781,31 +781,31 @@ namespace Microsoft.AspNetCore.Components.RenderTree
|
||||||
public enum RenderTreeEditType
|
public enum RenderTreeEditType
|
||||||
{
|
{
|
||||||
PrependFrame = 1,
|
PrependFrame = 1,
|
||||||
RemoveAttribute = 4,
|
|
||||||
RemoveFrame = 2,
|
RemoveFrame = 2,
|
||||||
SetAttribute = 3,
|
SetAttribute = 3,
|
||||||
|
RemoveAttribute = 4,
|
||||||
|
UpdateText = 5,
|
||||||
StepIn = 6,
|
StepIn = 6,
|
||||||
StepOut = 7,
|
StepOut = 7,
|
||||||
UpdateMarkup = 8,
|
UpdateMarkup = 8,
|
||||||
UpdateText = 5,
|
|
||||||
}
|
}
|
||||||
public enum RenderTreeFrameType
|
public enum RenderTreeFrameType
|
||||||
{
|
{
|
||||||
|
Element = 1,
|
||||||
|
Text = 2,
|
||||||
Attribute = 3,
|
Attribute = 3,
|
||||||
Component = 4,
|
Component = 4,
|
||||||
ComponentReferenceCapture = 7,
|
|
||||||
Element = 1,
|
|
||||||
ElementReferenceCapture = 6,
|
|
||||||
Markup = 8,
|
|
||||||
Region = 5,
|
Region = 5,
|
||||||
Text = 2,
|
ElementReferenceCapture = 6,
|
||||||
|
ComponentReferenceCapture = 7,
|
||||||
|
Markup = 8,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
namespace Microsoft.AspNetCore.Components.Routing
|
namespace Microsoft.AspNetCore.Components.Routing
|
||||||
{
|
{
|
||||||
public enum NavLinkMatch
|
public enum NavLinkMatch
|
||||||
{
|
{
|
||||||
All = 1,
|
|
||||||
Prefix = 0,
|
Prefix = 0,
|
||||||
|
All = 1,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -92,10 +92,10 @@ namespace Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption
|
||||||
public enum EncryptionAlgorithm
|
public enum EncryptionAlgorithm
|
||||||
{
|
{
|
||||||
AES_128_CBC = 0,
|
AES_128_CBC = 0,
|
||||||
AES_128_GCM = 3,
|
|
||||||
AES_192_CBC = 1,
|
AES_192_CBC = 1,
|
||||||
AES_192_GCM = 4,
|
|
||||||
AES_256_CBC = 2,
|
AES_256_CBC = 2,
|
||||||
|
AES_128_GCM = 3,
|
||||||
|
AES_192_GCM = 4,
|
||||||
AES_256_GCM = 5,
|
AES_256_GCM = 5,
|
||||||
}
|
}
|
||||||
public partial interface IAuthenticatedEncryptor
|
public partial interface IAuthenticatedEncryptor
|
||||||
|
|
@ -369,9 +369,9 @@ namespace Microsoft.AspNetCore.DataProtection.XmlEncryption
|
||||||
[System.FlagsAttribute]
|
[System.FlagsAttribute]
|
||||||
public enum DpapiNGProtectionDescriptorFlags
|
public enum DpapiNGProtectionDescriptorFlags
|
||||||
{
|
{
|
||||||
MachineKey = 32,
|
|
||||||
NamedDescriptor = 1,
|
|
||||||
None = 0,
|
None = 0,
|
||||||
|
NamedDescriptor = 1,
|
||||||
|
MachineKey = 32,
|
||||||
}
|
}
|
||||||
public sealed partial class DpapiNGXmlDecryptor : Microsoft.AspNetCore.DataProtection.XmlEncryption.IXmlDecryptor
|
public sealed partial class DpapiNGXmlDecryptor : Microsoft.AspNetCore.DataProtection.XmlEncryption.IXmlDecryptor
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -216,8 +216,8 @@ namespace Microsoft.AspNetCore.JsonPatch.Internal
|
||||||
protected enum OperationType
|
protected enum OperationType
|
||||||
{
|
{
|
||||||
Add = 0,
|
Add = 0,
|
||||||
Get = 2,
|
|
||||||
Remove = 1,
|
Remove = 1,
|
||||||
|
Get = 2,
|
||||||
Replace = 3,
|
Replace = 3,
|
||||||
}
|
}
|
||||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||||
|
|
@ -230,8 +230,8 @@ namespace Microsoft.AspNetCore.JsonPatch.Internal
|
||||||
}
|
}
|
||||||
protected enum PositionType
|
protected enum PositionType
|
||||||
{
|
{
|
||||||
EndOfList = 1,
|
|
||||||
Index = 0,
|
Index = 0,
|
||||||
|
EndOfList = 1,
|
||||||
Invalid = 2,
|
Invalid = 2,
|
||||||
OutOfBounds = 3,
|
OutOfBounds = 3,
|
||||||
}
|
}
|
||||||
|
|
@ -292,12 +292,12 @@ namespace Microsoft.AspNetCore.JsonPatch.Operations
|
||||||
public enum OperationType
|
public enum OperationType
|
||||||
{
|
{
|
||||||
Add = 0,
|
Add = 0,
|
||||||
Copy = 4,
|
|
||||||
Invalid = 6,
|
|
||||||
Move = 3,
|
|
||||||
Remove = 1,
|
Remove = 1,
|
||||||
Replace = 2,
|
Replace = 2,
|
||||||
|
Move = 3,
|
||||||
|
Copy = 4,
|
||||||
Test = 5,
|
Test = 5,
|
||||||
|
Invalid = 6,
|
||||||
}
|
}
|
||||||
public partial class Operation<TModel> : Microsoft.AspNetCore.JsonPatch.Operations.Operation where TModel : class
|
public partial class Operation<TModel> : Microsoft.AspNetCore.JsonPatch.Operations.Operation where TModel : class
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -316,8 +316,8 @@ namespace Microsoft.Net.Http.Headers
|
||||||
}
|
}
|
||||||
public enum SameSiteMode
|
public enum SameSiteMode
|
||||||
{
|
{
|
||||||
Lax = 1,
|
|
||||||
None = 0,
|
None = 0,
|
||||||
|
Lax = 1,
|
||||||
Strict = 2,
|
Strict = 2,
|
||||||
}
|
}
|
||||||
public partial class SetCookieHeaderValue
|
public partial class SetCookieHeaderValue
|
||||||
|
|
|
||||||
|
|
@ -135,9 +135,9 @@ namespace Microsoft.AspNetCore.Http
|
||||||
}
|
}
|
||||||
public enum CookieSecurePolicy
|
public enum CookieSecurePolicy
|
||||||
{
|
{
|
||||||
|
SameAsRequest = 0,
|
||||||
Always = 1,
|
Always = 1,
|
||||||
None = 2,
|
None = 2,
|
||||||
SameAsRequest = 0,
|
|
||||||
}
|
}
|
||||||
public partial class Endpoint
|
public partial class Endpoint
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -84,8 +84,8 @@ namespace Microsoft.AspNetCore.Http
|
||||||
}
|
}
|
||||||
public enum SameSiteMode
|
public enum SameSiteMode
|
||||||
{
|
{
|
||||||
Lax = 1,
|
|
||||||
None = 0,
|
None = 0,
|
||||||
|
Lax = 1,
|
||||||
Strict = 2,
|
Strict = 2,
|
||||||
}
|
}
|
||||||
public partial class WebSocketAcceptContext
|
public partial class WebSocketAcceptContext
|
||||||
|
|
@ -133,9 +133,9 @@ namespace Microsoft.AspNetCore.Http.Features
|
||||||
}
|
}
|
||||||
public enum HttpsCompressionMode
|
public enum HttpsCompressionMode
|
||||||
{
|
{
|
||||||
Compress = 2,
|
|
||||||
Default = 0,
|
Default = 0,
|
||||||
DoNotCompress = 1,
|
DoNotCompress = 1,
|
||||||
|
Compress = 2,
|
||||||
}
|
}
|
||||||
public partial interface IFeatureCollection : System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.Type, object>>, System.Collections.IEnumerable
|
public partial interface IFeatureCollection : System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.Type, object>>, System.Collections.IEnumerable
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -683,9 +683,9 @@ namespace Microsoft.AspNetCore.Routing.Patterns
|
||||||
}
|
}
|
||||||
public enum RoutePatternParameterKind
|
public enum RoutePatternParameterKind
|
||||||
{
|
{
|
||||||
CatchAll = 2,
|
|
||||||
Optional = 1,
|
|
||||||
Standard = 0,
|
Standard = 0,
|
||||||
|
Optional = 1,
|
||||||
|
CatchAll = 2,
|
||||||
}
|
}
|
||||||
[System.Diagnostics.DebuggerDisplayAttribute("{DebuggerToString()}")]
|
[System.Diagnostics.DebuggerDisplayAttribute("{DebuggerToString()}")]
|
||||||
public sealed partial class RoutePatternParameterPart : Microsoft.AspNetCore.Routing.Patterns.RoutePatternPart
|
public sealed partial class RoutePatternParameterPart : Microsoft.AspNetCore.Routing.Patterns.RoutePatternPart
|
||||||
|
|
|
||||||
|
|
@ -40,11 +40,11 @@ namespace Microsoft.AspNetCore.HttpOverrides
|
||||||
[System.FlagsAttribute]
|
[System.FlagsAttribute]
|
||||||
public enum ForwardedHeaders
|
public enum ForwardedHeaders
|
||||||
{
|
{
|
||||||
All = 7,
|
|
||||||
None = 0,
|
None = 0,
|
||||||
XForwardedFor = 1,
|
XForwardedFor = 1,
|
||||||
XForwardedHost = 2,
|
XForwardedHost = 2,
|
||||||
XForwardedProto = 4,
|
XForwardedProto = 4,
|
||||||
|
All = 7,
|
||||||
}
|
}
|
||||||
public static partial class ForwardedHeadersDefaults
|
public static partial class ForwardedHeadersDefaults
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -184,10 +184,10 @@ namespace Microsoft.AspNetCore.Rewrite.Internal.ApacheModRewrite
|
||||||
}
|
}
|
||||||
public enum ConditionType
|
public enum ConditionType
|
||||||
{
|
{
|
||||||
IntComp = 3,
|
|
||||||
PropertyTest = 1,
|
|
||||||
Regex = 0,
|
Regex = 0,
|
||||||
|
PropertyTest = 1,
|
||||||
StringComp = 2,
|
StringComp = 2,
|
||||||
|
IntComp = 3,
|
||||||
}
|
}
|
||||||
public partial class CookieActionFactory
|
public partial class CookieActionFactory
|
||||||
{
|
{
|
||||||
|
|
@ -216,12 +216,12 @@ namespace Microsoft.AspNetCore.Rewrite.Internal.ApacheModRewrite
|
||||||
}
|
}
|
||||||
public enum FlagType
|
public enum FlagType
|
||||||
{
|
{
|
||||||
|
EscapeBackreference = 0,
|
||||||
Chain = 1,
|
Chain = 1,
|
||||||
Cookie = 2,
|
Cookie = 2,
|
||||||
DiscardPath = 3,
|
DiscardPath = 3,
|
||||||
End = 5,
|
|
||||||
Env = 4,
|
Env = 4,
|
||||||
EscapeBackreference = 0,
|
End = 5,
|
||||||
Forbidden = 6,
|
Forbidden = 6,
|
||||||
Gone = 7,
|
Gone = 7,
|
||||||
Handler = 8,
|
Handler = 8,
|
||||||
|
|
@ -232,8 +232,8 @@ namespace Microsoft.AspNetCore.Rewrite.Internal.ApacheModRewrite
|
||||||
NoSubReq = 13,
|
NoSubReq = 13,
|
||||||
NoVary = 14,
|
NoVary = 14,
|
||||||
Or = 15,
|
Or = 15,
|
||||||
PassThrough = 17,
|
|
||||||
Proxy = 16,
|
Proxy = 16,
|
||||||
|
PassThrough = 17,
|
||||||
QSAppend = 18,
|
QSAppend = 18,
|
||||||
QSDiscard = 19,
|
QSDiscard = 19,
|
||||||
QSLast = 20,
|
QSLast = 20,
|
||||||
|
|
@ -243,20 +243,20 @@ namespace Microsoft.AspNetCore.Rewrite.Internal.ApacheModRewrite
|
||||||
}
|
}
|
||||||
public enum OperationType
|
public enum OperationType
|
||||||
{
|
{
|
||||||
Directory = 7,
|
None = 0,
|
||||||
Equal = 1,
|
Equal = 1,
|
||||||
Executable = 13,
|
|
||||||
ExistingFile = 9,
|
|
||||||
ExistingUrl = 12,
|
|
||||||
Greater = 2,
|
Greater = 2,
|
||||||
GreaterEqual = 3,
|
GreaterEqual = 3,
|
||||||
Less = 4,
|
Less = 4,
|
||||||
LessEqual = 5,
|
LessEqual = 5,
|
||||||
None = 0,
|
|
||||||
NotEqual = 6,
|
NotEqual = 6,
|
||||||
|
Directory = 7,
|
||||||
RegularFile = 8,
|
RegularFile = 8,
|
||||||
Size = 11,
|
ExistingFile = 9,
|
||||||
SymbolicLink = 10,
|
SymbolicLink = 10,
|
||||||
|
Size = 11,
|
||||||
|
ExistingUrl = 12,
|
||||||
|
Executable = 13,
|
||||||
}
|
}
|
||||||
public partial class ParsedModRewriteInput
|
public partial class ParsedModRewriteInput
|
||||||
{
|
{
|
||||||
|
|
@ -283,10 +283,10 @@ namespace Microsoft.AspNetCore.Rewrite.Internal.ApacheModRewrite
|
||||||
}
|
}
|
||||||
public enum SegmentType
|
public enum SegmentType
|
||||||
{
|
{
|
||||||
ConditionParameter = 2,
|
|
||||||
Literal = 0,
|
Literal = 0,
|
||||||
RuleParameter = 3,
|
|
||||||
ServerParameter = 1,
|
ServerParameter = 1,
|
||||||
|
ConditionParameter = 2,
|
||||||
|
RuleParameter = 3,
|
||||||
}
|
}
|
||||||
public static partial class ServerVariables
|
public static partial class ServerVariables
|
||||||
{
|
{
|
||||||
|
|
@ -307,11 +307,11 @@ namespace Microsoft.AspNetCore.Rewrite.Internal.IISUrlRewrite
|
||||||
{
|
{
|
||||||
public enum ActionType
|
public enum ActionType
|
||||||
{
|
{
|
||||||
AbortRequest = 4,
|
|
||||||
CustomResponse = 3,
|
|
||||||
None = 0,
|
None = 0,
|
||||||
Redirect = 2,
|
|
||||||
Rewrite = 1,
|
Rewrite = 1,
|
||||||
|
Redirect = 2,
|
||||||
|
CustomResponse = 3,
|
||||||
|
AbortRequest = 4,
|
||||||
}
|
}
|
||||||
public partial class Condition
|
public partial class Condition
|
||||||
{
|
{
|
||||||
|
|
@ -384,20 +384,20 @@ namespace Microsoft.AspNetCore.Rewrite.Internal.IISUrlRewrite
|
||||||
}
|
}
|
||||||
public enum MatchType
|
public enum MatchType
|
||||||
{
|
{
|
||||||
IsDirectory = 2,
|
|
||||||
IsFile = 1,
|
|
||||||
Pattern = 0,
|
Pattern = 0,
|
||||||
|
IsFile = 1,
|
||||||
|
IsDirectory = 2,
|
||||||
}
|
}
|
||||||
public enum PatternSyntax
|
public enum PatternSyntax
|
||||||
{
|
{
|
||||||
ECMAScript = 0,
|
ECMAScript = 0,
|
||||||
ExactMatch = 2,
|
|
||||||
Wildcard = 1,
|
Wildcard = 1,
|
||||||
|
ExactMatch = 2,
|
||||||
}
|
}
|
||||||
public enum RedirectType
|
public enum RedirectType
|
||||||
{
|
{
|
||||||
Found = 302,
|
|
||||||
Permanent = 301,
|
Permanent = 301,
|
||||||
|
Found = 302,
|
||||||
SeeOther = 303,
|
SeeOther = 303,
|
||||||
Temporary = 307,
|
Temporary = 307,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -814,10 +814,10 @@ namespace Microsoft.AspNetCore.Mvc.ModelBinding
|
||||||
}
|
}
|
||||||
public enum ModelValidationState
|
public enum ModelValidationState
|
||||||
{
|
{
|
||||||
Invalid = 1,
|
|
||||||
Skipped = 3,
|
|
||||||
Unvalidated = 0,
|
Unvalidated = 0,
|
||||||
|
Invalid = 1,
|
||||||
Valid = 2,
|
Valid = 2,
|
||||||
|
Skipped = 3,
|
||||||
}
|
}
|
||||||
public partial class TooManyModelErrorsException : System.Exception
|
public partial class TooManyModelErrorsException : System.Exception
|
||||||
{
|
{
|
||||||
|
|
@ -888,9 +888,9 @@ namespace Microsoft.AspNetCore.Mvc.ModelBinding.Metadata
|
||||||
}
|
}
|
||||||
public enum ModelMetadataKind
|
public enum ModelMetadataKind
|
||||||
{
|
{
|
||||||
Parameter = 2,
|
|
||||||
Property = 1,
|
|
||||||
Type = 0,
|
Type = 0,
|
||||||
|
Property = 1,
|
||||||
|
Parameter = 2,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
namespace Microsoft.AspNetCore.Mvc.ModelBinding.Validation
|
namespace Microsoft.AspNetCore.Mvc.ModelBinding.Validation
|
||||||
|
|
|
||||||
|
|
@ -214,7 +214,6 @@ namespace Microsoft.AspNetCore.Mvc
|
||||||
}
|
}
|
||||||
public enum CompatibilityVersion
|
public enum CompatibilityVersion
|
||||||
{
|
{
|
||||||
Latest = 2147483647,
|
|
||||||
[System.ObsoleteAttribute("This CompatibilityVersion value is obsolete. The recommended alternatives are Version_3_0 or later.")]
|
[System.ObsoleteAttribute("This CompatibilityVersion value is obsolete. The recommended alternatives are Version_3_0 or later.")]
|
||||||
Version_2_0 = 0,
|
Version_2_0 = 0,
|
||||||
[System.ObsoleteAttribute("This CompatibilityVersion value is obsolete. The recommended alternatives are Version_3_0 or later.")]
|
[System.ObsoleteAttribute("This CompatibilityVersion value is obsolete. The recommended alternatives are Version_3_0 or later.")]
|
||||||
|
|
@ -222,6 +221,7 @@ namespace Microsoft.AspNetCore.Mvc
|
||||||
[System.ObsoleteAttribute("This CompatibilityVersion value is obsolete. The recommended alternatives are Version_3_0 or later.")]
|
[System.ObsoleteAttribute("This CompatibilityVersion value is obsolete. The recommended alternatives are Version_3_0 or later.")]
|
||||||
Version_2_2 = 2,
|
Version_2_2 = 2,
|
||||||
Version_3_0 = 3,
|
Version_3_0 = 3,
|
||||||
|
Latest = 2147483647,
|
||||||
}
|
}
|
||||||
[Microsoft.AspNetCore.Mvc.Infrastructure.DefaultStatusCodeAttribute(409)]
|
[Microsoft.AspNetCore.Mvc.Infrastructure.DefaultStatusCodeAttribute(409)]
|
||||||
public partial class ConflictObjectResult : Microsoft.AspNetCore.Mvc.ObjectResult
|
public partial class ConflictObjectResult : Microsoft.AspNetCore.Mvc.ObjectResult
|
||||||
|
|
@ -2120,8 +2120,8 @@ namespace Microsoft.AspNetCore.Mvc.ModelBinding
|
||||||
{
|
{
|
||||||
public enum BindingBehavior
|
public enum BindingBehavior
|
||||||
{
|
{
|
||||||
Never = 1,
|
|
||||||
Optional = 0,
|
Optional = 0,
|
||||||
|
Never = 1,
|
||||||
Required = 2,
|
Required = 2,
|
||||||
}
|
}
|
||||||
[System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Parameter | System.AttributeTargets.Property, AllowMultiple=false, Inherited=true)]
|
[System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Parameter | System.AttributeTargets.Property, AllowMultiple=false, Inherited=true)]
|
||||||
|
|
|
||||||
|
|
@ -5,9 +5,9 @@ namespace Microsoft.AspNetCore.Mvc.Rendering
|
||||||
{
|
{
|
||||||
public enum ValidationSummary
|
public enum ValidationSummary
|
||||||
{
|
{
|
||||||
All = 2,
|
|
||||||
ModelOnly = 1,
|
|
||||||
None = 0,
|
None = 0,
|
||||||
|
ModelOnly = 1,
|
||||||
|
All = 2,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
namespace Microsoft.AspNetCore.Mvc.TagHelpers
|
namespace Microsoft.AspNetCore.Mvc.TagHelpers
|
||||||
|
|
|
||||||
|
|
@ -233,8 +233,8 @@ namespace Microsoft.AspNetCore.Mvc.Rendering
|
||||||
}
|
}
|
||||||
public enum Html5DateRenderingMode
|
public enum Html5DateRenderingMode
|
||||||
{
|
{
|
||||||
CurrentCulture = 1,
|
|
||||||
Rfc3339 = 0,
|
Rfc3339 = 0,
|
||||||
|
CurrentCulture = 1,
|
||||||
}
|
}
|
||||||
public static partial class HtmlHelperDisplayExtensions
|
public static partial class HtmlHelperDisplayExtensions
|
||||||
{
|
{
|
||||||
|
|
@ -575,10 +575,10 @@ namespace Microsoft.AspNetCore.Mvc.Rendering
|
||||||
}
|
}
|
||||||
public enum TagRenderMode
|
public enum TagRenderMode
|
||||||
{
|
{
|
||||||
EndTag = 2,
|
|
||||||
Normal = 0,
|
Normal = 0,
|
||||||
SelfClosing = 3,
|
|
||||||
StartTag = 1,
|
StartTag = 1,
|
||||||
|
EndTag = 2,
|
||||||
|
SelfClosing = 3,
|
||||||
}
|
}
|
||||||
public static partial class ViewComponentHelperExtensions
|
public static partial class ViewComponentHelperExtensions
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -37,9 +37,9 @@ namespace Microsoft.AspNetCore.Razor.TagHelpers
|
||||||
public enum HtmlAttributeValueStyle
|
public enum HtmlAttributeValueStyle
|
||||||
{
|
{
|
||||||
DoubleQuotes = 0,
|
DoubleQuotes = 0,
|
||||||
Minimized = 3,
|
|
||||||
NoQuotes = 2,
|
|
||||||
SingleQuotes = 1,
|
SingleQuotes = 1,
|
||||||
|
NoQuotes = 2,
|
||||||
|
Minimized = 3,
|
||||||
}
|
}
|
||||||
[System.AttributeUsageAttribute(System.AttributeTargets.Class, AllowMultiple=true, Inherited=false)]
|
[System.AttributeUsageAttribute(System.AttributeTargets.Class, AllowMultiple=true, Inherited=false)]
|
||||||
public sealed partial class HtmlTargetElementAttribute : System.Attribute
|
public sealed partial class HtmlTargetElementAttribute : System.Attribute
|
||||||
|
|
@ -204,14 +204,14 @@ namespace Microsoft.AspNetCore.Razor.TagHelpers
|
||||||
}
|
}
|
||||||
public enum TagMode
|
public enum TagMode
|
||||||
{
|
{
|
||||||
SelfClosing = 1,
|
|
||||||
StartTagAndEndTag = 0,
|
StartTagAndEndTag = 0,
|
||||||
|
SelfClosing = 1,
|
||||||
StartTagOnly = 2,
|
StartTagOnly = 2,
|
||||||
}
|
}
|
||||||
public enum TagStructure
|
public enum TagStructure
|
||||||
{
|
{
|
||||||
NormalOrSelfClosing = 1,
|
|
||||||
Unspecified = 0,
|
Unspecified = 0,
|
||||||
|
NormalOrSelfClosing = 1,
|
||||||
WithoutEndTag = 2,
|
WithoutEndTag = 2,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -145,8 +145,8 @@ namespace Microsoft.AspNetCore.Authentication.OpenIdConnect
|
||||||
}
|
}
|
||||||
public enum OpenIdConnectRedirectBehavior
|
public enum OpenIdConnectRedirectBehavior
|
||||||
{
|
{
|
||||||
FormPost = 1,
|
|
||||||
RedirectGet = 0,
|
RedirectGet = 0,
|
||||||
|
FormPost = 1,
|
||||||
}
|
}
|
||||||
public partial class RedirectContext : Microsoft.AspNetCore.Authentication.PropertiesContext<Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions>
|
public partial class RedirectContext : Microsoft.AspNetCore.Authentication.PropertiesContext<Microsoft.AspNetCore.Authentication.OpenIdConnect.OpenIdConnectOptions>
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -52,7 +52,7 @@ namespace Microsoft.AspNetCore.CookiePolicy
|
||||||
}
|
}
|
||||||
public enum HttpOnlyPolicy
|
public enum HttpOnlyPolicy
|
||||||
{
|
{
|
||||||
Always = 1,
|
|
||||||
None = 0,
|
None = 0,
|
||||||
|
Always = 1,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -20,17 +20,17 @@ namespace Microsoft.AspNetCore.Server.HttpSys
|
||||||
[System.FlagsAttribute]
|
[System.FlagsAttribute]
|
||||||
public enum AuthenticationSchemes
|
public enum AuthenticationSchemes
|
||||||
{
|
{
|
||||||
Basic = 1,
|
|
||||||
Kerberos = 16,
|
|
||||||
Negotiate = 8,
|
|
||||||
None = 0,
|
None = 0,
|
||||||
|
Basic = 1,
|
||||||
NTLM = 4,
|
NTLM = 4,
|
||||||
|
Negotiate = 8,
|
||||||
|
Kerberos = 16,
|
||||||
}
|
}
|
||||||
public enum Http503VerbosityLevel : long
|
public enum Http503VerbosityLevel : long
|
||||||
{
|
{
|
||||||
Basic = (long)0,
|
Basic = (long)0,
|
||||||
Full = (long)2,
|
|
||||||
Limited = (long)1,
|
Limited = (long)1,
|
||||||
|
Full = (long)2,
|
||||||
}
|
}
|
||||||
public static partial class HttpSysDefaults
|
public static partial class HttpSysDefaults
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -80,10 +80,10 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Core
|
||||||
[System.FlagsAttribute]
|
[System.FlagsAttribute]
|
||||||
public enum HttpProtocols
|
public enum HttpProtocols
|
||||||
{
|
{
|
||||||
Http1 = 1,
|
|
||||||
Http1AndHttp2 = 3,
|
|
||||||
Http2 = 2,
|
|
||||||
None = 0,
|
None = 0,
|
||||||
|
Http1 = 1,
|
||||||
|
Http2 = 2,
|
||||||
|
Http1AndHttp2 = 3,
|
||||||
}
|
}
|
||||||
public partial class KestrelServer : Microsoft.AspNetCore.Hosting.Server.IServer, System.IDisposable
|
public partial class KestrelServer : Microsoft.AspNetCore.Hosting.Server.IServer, System.IDisposable
|
||||||
{
|
{
|
||||||
|
|
@ -215,17 +215,17 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http
|
||||||
{
|
{
|
||||||
public enum HttpMethod : byte
|
public enum HttpMethod : byte
|
||||||
{
|
{
|
||||||
Connect = (byte)7,
|
|
||||||
Custom = (byte)9,
|
|
||||||
Delete = (byte)2,
|
|
||||||
Get = (byte)0,
|
Get = (byte)0,
|
||||||
Head = (byte)4,
|
|
||||||
None = (byte)255,
|
|
||||||
Options = (byte)8,
|
|
||||||
Patch = (byte)6,
|
|
||||||
Post = (byte)3,
|
|
||||||
Put = (byte)1,
|
Put = (byte)1,
|
||||||
|
Delete = (byte)2,
|
||||||
|
Post = (byte)3,
|
||||||
|
Head = (byte)4,
|
||||||
Trace = (byte)5,
|
Trace = (byte)5,
|
||||||
|
Patch = (byte)6,
|
||||||
|
Connect = (byte)7,
|
||||||
|
Options = (byte)8,
|
||||||
|
Custom = (byte)9,
|
||||||
|
None = (byte)255,
|
||||||
}
|
}
|
||||||
public partial class HttpParser<TRequestHandler> : Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.IHttpParser<TRequestHandler> where TRequestHandler : Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.IHttpHeadersHandler, Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.IHttpRequestLineHandler
|
public partial class HttpParser<TRequestHandler> : Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.IHttpParser<TRequestHandler> where TRequestHandler : Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.IHttpHeadersHandler, Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.IHttpRequestLineHandler
|
||||||
{
|
{
|
||||||
|
|
@ -238,16 +238,16 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http
|
||||||
}
|
}
|
||||||
public enum HttpScheme
|
public enum HttpScheme
|
||||||
{
|
{
|
||||||
|
Unknown = -1,
|
||||||
Http = 0,
|
Http = 0,
|
||||||
Https = 1,
|
Https = 1,
|
||||||
Unknown = -1,
|
|
||||||
}
|
}
|
||||||
public enum HttpVersion
|
public enum HttpVersion
|
||||||
{
|
{
|
||||||
|
Unknown = -1,
|
||||||
Http10 = 0,
|
Http10 = 0,
|
||||||
Http11 = 1,
|
Http11 = 1,
|
||||||
Http2 = 2,
|
Http2 = 2,
|
||||||
Unknown = -1,
|
|
||||||
}
|
}
|
||||||
public partial interface IHttpHeadersHandler
|
public partial interface IHttpHeadersHandler
|
||||||
{
|
{
|
||||||
|
|
@ -290,8 +290,8 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Https
|
||||||
{
|
{
|
||||||
public enum ClientCertificateMode
|
public enum ClientCertificateMode
|
||||||
{
|
{
|
||||||
AllowCertificate = 1,
|
|
||||||
NoCertificate = 0,
|
NoCertificate = 0,
|
||||||
|
AllowCertificate = 1,
|
||||||
RequireCertificate = 2,
|
RequireCertificate = 2,
|
||||||
}
|
}
|
||||||
public partial class HttpsConnectionAdapterOptions
|
public partial class HttpsConnectionAdapterOptions
|
||||||
|
|
|
||||||
|
|
@ -6,8 +6,8 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.Internal
|
||||||
public enum FileHandleType
|
public enum FileHandleType
|
||||||
{
|
{
|
||||||
Auto = 0,
|
Auto = 0,
|
||||||
Pipe = 2,
|
|
||||||
Tcp = 1,
|
Tcp = 1,
|
||||||
|
Pipe = 2,
|
||||||
}
|
}
|
||||||
public partial interface IApplicationTransportFeature
|
public partial interface IApplicationTransportFeature
|
||||||
{
|
{
|
||||||
|
|
@ -49,15 +49,15 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.Internal
|
||||||
}
|
}
|
||||||
public enum ListenType
|
public enum ListenType
|
||||||
{
|
{
|
||||||
FileHandle = 2,
|
|
||||||
IPEndPoint = 0,
|
IPEndPoint = 0,
|
||||||
SocketPath = 1,
|
SocketPath = 1,
|
||||||
|
FileHandle = 2,
|
||||||
}
|
}
|
||||||
public enum SchedulingMode
|
public enum SchedulingMode
|
||||||
{
|
{
|
||||||
Default = 0,
|
Default = 0,
|
||||||
Inline = 2,
|
|
||||||
ThreadPool = 1,
|
ThreadPool = 1,
|
||||||
|
Inline = 2,
|
||||||
}
|
}
|
||||||
public abstract partial class TransportConnection : Microsoft.AspNetCore.Connections.ConnectionContext, Microsoft.AspNetCore.Connections.Features.IConnectionHeartbeatFeature, Microsoft.AspNetCore.Connections.Features.IConnectionIdFeature, Microsoft.AspNetCore.Connections.Features.IConnectionItemsFeature, Microsoft.AspNetCore.Connections.Features.IConnectionLifetimeFeature, Microsoft.AspNetCore.Connections.Features.IConnectionLifetimeNotificationFeature, Microsoft.AspNetCore.Connections.Features.IConnectionTransportFeature, Microsoft.AspNetCore.Connections.Features.IMemoryPoolFeature, Microsoft.AspNetCore.Http.Features.IFeatureCollection, Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature, Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.Internal.IApplicationTransportFeature, Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.Internal.ITransportSchedulerFeature, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.Type, object>>, System.Collections.IEnumerable
|
public abstract partial class TransportConnection : Microsoft.AspNetCore.Connections.ConnectionContext, Microsoft.AspNetCore.Connections.Features.IConnectionHeartbeatFeature, Microsoft.AspNetCore.Connections.Features.IConnectionIdFeature, Microsoft.AspNetCore.Connections.Features.IConnectionItemsFeature, Microsoft.AspNetCore.Connections.Features.IConnectionLifetimeFeature, Microsoft.AspNetCore.Connections.Features.IConnectionLifetimeNotificationFeature, Microsoft.AspNetCore.Connections.Features.IConnectionTransportFeature, Microsoft.AspNetCore.Connections.Features.IMemoryPoolFeature, Microsoft.AspNetCore.Http.Features.IFeatureCollection, Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature, Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.Internal.IApplicationTransportFeature, Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.Internal.ITransportSchedulerFeature, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.Type, object>>, System.Collections.IEnumerable
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -150,8 +150,8 @@ namespace Microsoft.AspNetCore.SignalR.Client
|
||||||
}
|
}
|
||||||
public enum HubConnectionState
|
public enum HubConnectionState
|
||||||
{
|
{
|
||||||
Connected = 1,
|
|
||||||
Disconnected = 0,
|
Disconnected = 0,
|
||||||
|
Connected = 1,
|
||||||
}
|
}
|
||||||
public partial interface IConnectionFactory
|
public partial interface IConnectionFactory
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -138,8 +138,8 @@ namespace Microsoft.AspNetCore.SignalR.Client
|
||||||
}
|
}
|
||||||
public enum HubConnectionState
|
public enum HubConnectionState
|
||||||
{
|
{
|
||||||
Connected = 1,
|
|
||||||
Disconnected = 0,
|
Disconnected = 0,
|
||||||
|
Connected = 1,
|
||||||
}
|
}
|
||||||
public partial interface IConnectionFactory
|
public partial interface IConnectionFactory
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -16,10 +16,10 @@ namespace Microsoft.AspNetCore.Http.Connections
|
||||||
[System.FlagsAttribute]
|
[System.FlagsAttribute]
|
||||||
public enum HttpTransportType
|
public enum HttpTransportType
|
||||||
{
|
{
|
||||||
LongPolling = 4,
|
|
||||||
None = 0,
|
None = 0,
|
||||||
ServerSentEvents = 2,
|
|
||||||
WebSockets = 1,
|
WebSockets = 1,
|
||||||
|
ServerSentEvents = 2,
|
||||||
|
LongPolling = 4,
|
||||||
}
|
}
|
||||||
public static partial class NegotiateProtocol
|
public static partial class NegotiateProtocol
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -16,10 +16,10 @@ namespace Microsoft.AspNetCore.Http.Connections
|
||||||
[System.FlagsAttribute]
|
[System.FlagsAttribute]
|
||||||
public enum HttpTransportType
|
public enum HttpTransportType
|
||||||
{
|
{
|
||||||
LongPolling = 4,
|
|
||||||
None = 0,
|
None = 0,
|
||||||
ServerSentEvents = 2,
|
|
||||||
WebSockets = 1,
|
WebSockets = 1,
|
||||||
|
ServerSentEvents = 2,
|
||||||
|
LongPolling = 4,
|
||||||
}
|
}
|
||||||
public static partial class NegotiateProtocol
|
public static partial class NegotiateProtocol
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -134,9 +134,9 @@ namespace Microsoft.AspNetCore.Http.Connections.Internal
|
||||||
}
|
}
|
||||||
public enum HttpConnectionStatus
|
public enum HttpConnectionStatus
|
||||||
{
|
{
|
||||||
|
Inactive = 0,
|
||||||
Active = 1,
|
Active = 1,
|
||||||
Disposed = 2,
|
Disposed = 2,
|
||||||
Inactive = 0,
|
|
||||||
}
|
}
|
||||||
public static partial class ServerSentEventsMessageFormatter
|
public static partial class ServerSentEventsMessageFormatter
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue