Skip to content

Commit fbfd056

Browse files
committed
Add more internal types and members
- Identity/Core - Identity/Extensions.Core - Mvc/Mvc.ViewFeatures
1 parent 36c505c commit fbfd056

File tree

5 files changed

+309
-3
lines changed

5 files changed

+309
-3
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// Copyright (c) .NET Foundation. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3+
4+
namespace Microsoft.AspNetCore.Identity
5+
{
6+
public partial class SignInManager<TUser> where TUser : class
7+
{
8+
[System.Diagnostics.DebuggerStepThroughAttribute]
9+
internal System.Threading.Tasks.Task<System.Security.Claims.ClaimsPrincipal> StoreRememberClient(TUser user) { throw null; }
10+
internal System.Security.Claims.ClaimsPrincipal StoreTwoFactorInfo(string userId, string loginProvider) { throw null; }
11+
internal partial class TwoFactorAuthenticationInfo
12+
{
13+
public TwoFactorAuthenticationInfo() { }
14+
public string LoginProvider { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
15+
public string UserId { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
16+
}
17+
}
18+
}

src/Identity/Core/ref/Microsoft.AspNetCore.Identity.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
77
<Compile Include="Microsoft.AspNetCore.Identity.netcoreapp3.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.Identity.Manual.cs" />
89
<Compile Include="../src/Properties/AssemblyInfo.cs" />
910
<Reference Include="Microsoft.AspNetCore.Authentication.Cookies" />
1011
<Reference Include="Microsoft.Extensions.Identity.Core" />
Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
// Copyright (c) .NET Foundation. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3+
4+
namespace Microsoft.AspNetCore.Identity
5+
{
6+
public partial class PasswordHasherOptions
7+
{
8+
internal System.Security.Cryptography.RandomNumberGenerator Rng { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
9+
}
10+
}
11+
namespace Microsoft.Extensions.Identity.Core
12+
{
13+
internal static partial class Resources
14+
{
15+
internal static string ConcurrencyFailure { get { throw null; } }
16+
internal static System.Globalization.CultureInfo Culture { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
17+
internal static string DefaultError { get { throw null; } }
18+
internal static string DuplicateEmail { get { throw null; } }
19+
internal static string DuplicateRoleName { get { throw null; } }
20+
internal static string DuplicateUserName { get { throw null; } }
21+
internal static string InvalidEmail { get { throw null; } }
22+
internal static string InvalidManagerType { get { throw null; } }
23+
internal static string InvalidPasswordHasherCompatibilityMode { get { throw null; } }
24+
internal static string InvalidPasswordHasherIterationCount { get { throw null; } }
25+
internal static string InvalidRoleName { get { throw null; } }
26+
internal static string InvalidToken { get { throw null; } }
27+
internal static string InvalidUserName { get { throw null; } }
28+
internal static string LoginAlreadyAssociated { get { throw null; } }
29+
internal static string MustCallAddIdentity { get { throw null; } }
30+
internal static string NoPersonalDataProtector { get { throw null; } }
31+
internal static string NoRoleType { get { throw null; } }
32+
internal static string NoTokenProvider { get { throw null; } }
33+
internal static string NullSecurityStamp { get { throw null; } }
34+
internal static string PasswordMismatch { get { throw null; } }
35+
internal static string PasswordRequiresDigit { get { throw null; } }
36+
internal static string PasswordRequiresLower { get { throw null; } }
37+
internal static string PasswordRequiresNonAlphanumeric { get { throw null; } }
38+
internal static string PasswordRequiresUniqueChars { get { throw null; } }
39+
internal static string PasswordRequiresUpper { get { throw null; } }
40+
internal static string PasswordTooShort { get { throw null; } }
41+
internal static string RecoveryCodeRedemptionFailed { get { throw null; } }
42+
internal static System.Resources.ResourceManager ResourceManager { get { throw null; } }
43+
internal static string RoleNotFound { get { throw null; } }
44+
internal static string StoreNotIProtectedUserStore { get { throw null; } }
45+
internal static string StoreNotIQueryableRoleStore { get { throw null; } }
46+
internal static string StoreNotIQueryableUserStore { get { throw null; } }
47+
internal static string StoreNotIRoleClaimStore { get { throw null; } }
48+
internal static string StoreNotIUserAuthenticationTokenStore { get { throw null; } }
49+
internal static string StoreNotIUserAuthenticatorKeyStore { get { throw null; } }
50+
internal static string StoreNotIUserClaimStore { get { throw null; } }
51+
internal static string StoreNotIUserConfirmationStore { get { throw null; } }
52+
internal static string StoreNotIUserEmailStore { get { throw null; } }
53+
internal static string StoreNotIUserLockoutStore { get { throw null; } }
54+
internal static string StoreNotIUserLoginStore { get { throw null; } }
55+
internal static string StoreNotIUserPasswordStore { get { throw null; } }
56+
internal static string StoreNotIUserPhoneNumberStore { get { throw null; } }
57+
internal static string StoreNotIUserRoleStore { get { throw null; } }
58+
internal static string StoreNotIUserSecurityStampStore { get { throw null; } }
59+
internal static string StoreNotIUserTwoFactorRecoveryCodeStore { get { throw null; } }
60+
internal static string StoreNotIUserTwoFactorStore { get { throw null; } }
61+
internal static string UserAlreadyHasPassword { get { throw null; } }
62+
internal static string UserAlreadyInRole { get { throw null; } }
63+
internal static string UserLockedOut { get { throw null; } }
64+
internal static string UserLockoutNotEnabled { get { throw null; } }
65+
internal static string UserNameNotFound { get { throw null; } }
66+
internal static string UserNotInRole { get { throw null; } }
67+
internal static string FormatDuplicateEmail(object p0) { throw null; }
68+
internal static string FormatDuplicateRoleName(object p0) { throw null; }
69+
internal static string FormatDuplicateUserName(object p0) { throw null; }
70+
internal static string FormatInvalidEmail(object p0) { throw null; }
71+
internal static string FormatInvalidManagerType(object p0, object p1, object p2) { throw null; }
72+
internal static string FormatInvalidRoleName(object p0) { throw null; }
73+
internal static string FormatInvalidUserName(object p0) { throw null; }
74+
internal static string FormatNoTokenProvider(object p0, object p1) { throw null; }
75+
internal static string FormatPasswordRequiresUniqueChars(object p0) { throw null; }
76+
internal static string FormatPasswordTooShort(object p0) { throw null; }
77+
internal static string FormatRoleNotFound(object p0) { throw null; }
78+
internal static string FormatUserAlreadyInRole(object p0) { throw null; }
79+
internal static string FormatUserNameNotFound(object p0) { throw null; }
80+
internal static string FormatUserNotInRole(object p0) { throw null; }
81+
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]internal static string GetResourceString(string resourceKey, string defaultValue = null) { throw null; }
82+
}
83+
}

src/Identity/Extensions.Core/ref/Microsoft.Extensions.Identity.Core.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
77
<Compile Include="Microsoft.Extensions.Identity.Core.netstandard2.0.cs" />
8+
<Compile Include="Microsoft.Extensions.Identity.Core.Manual.cs" />
89
<Compile Include="../src/Properties/AssemblyInfo.cs" />
910
<Reference Include="Microsoft.AspNetCore.Cryptography.KeyDerivation" />
1011
<Reference Include="Microsoft.Extensions.Logging" />
1112
<Reference Include="Microsoft.Extensions.Options" />
1213
</ItemGroup>
1314
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
1415
<Compile Include="Microsoft.Extensions.Identity.Core.netcoreapp3.0.cs" />
16+
<Compile Include="Microsoft.Extensions.Identity.Core.Manual.cs" />
1517
<Compile Include="../src/Properties/AssemblyInfo.cs" />
1618
<Reference Include="Microsoft.AspNetCore.Cryptography.KeyDerivation" />
1719
<Reference Include="Microsoft.Extensions.Logging" />

0 commit comments

Comments
 (0)