EasyOC.ReplaceAction
1.0.1
See the version list below for details.
dotnet add package EasyOC.ReplaceAction --version 1.0.1
NuGet\Install-Package EasyOC.ReplaceAction -Version 1.0.1
<PackageReference Include="EasyOC.ReplaceAction" Version="1.0.1" />
paket add EasyOC.ReplaceAction --version 1.0.1
#r "nuget: EasyOC.ReplaceAction, 1.0.1"
// Install EasyOC.ReplaceAction as a Cake Addin #addin nuget:?package=EasyOC.ReplaceAction&version=1.0.1 // Install EasyOC.ReplaceAction as a Cake Tool #tool nuget:?package=EasyOC.ReplaceAction&version=1.0.1
Replace the implementation of the specified controller action in OrchardCore
- Add package reference
dotnet add package EasyOC.ReplaceAction
The package must be added in the startup project,
and the 'PrivateAssets="none" option must be added if referenced in another project(not a startup project)
<PackageReference Include="EasyOC.ReplaceAction" PrivateAssets="none"/>
- Enable the
EasyOC.ReplaceAction
feature - Replace the controller in OrchardCore with your own controller method
update your module's Startup.cs
public override void ConfigureServices(IServiceCollection services)
{
//sample 1
services.ReplaceAction<AccountController, EocAccountController>(nameof(EocAccountController.Login));
//sample 2 , Avoid unnecessary package references
services.ReplaceAction<EocAccountController>("OrchardCore.Users.Controllers.AccountController", "Login");
//sample 3 , mapping diffrent name
services.ReplaceAction<EocAccountController>("OrchardCore.Users.Controllers.AccountController", "ExternalLogin", "MyExternalLogin");
//sample 4 , Advanced configuration
services.ReplaceAction(opt =>
{
var type = typeof(EocAccountController);
opt.Items.Add(new ActionReplaceOptionItem
{
TargetControllerFullName = typeof(AccountController).FullName,
NewController = type,
ActionMapping = new Dictionary<string, MethodInfo> { ["ExternalLogin"] = type.GetMethod("ExternalLogin") }
});
});
//sample 5 , Advanced configuration
services.ReplaceAction(opt =>
{
opt.Items.Add(new ActionReplaceOptionItem
{
CustomAction = (descriptor) =>
{
//Do whatever you want
Console.WriteLine(descriptor.ControllerName);
}
});
});
//sample 6
services.ReplaceActionByActionNames<EocAccountController>(
typeof(AccountController).FullName,
nameof(EocAccountController.LinkLoginCallback),
nameof(EocAccountController.ExternalLogins),
nameof(EocAccountController.LinkExternalLogin),
nameof(EocAccountController.ExternalLoginCallback),
nameof(EocAccountController.RegisterExternalLogin)
);
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- OrchardCore.ContentManagement (>= 1.5.0)
- OrchardCore.ContentTypes.Abstractions (>= 1.5.0)
- OrchardCore.DisplayManagement (>= 1.5.0)
- OrchardCore.Module.Targets (>= 1.5.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on EasyOC.ReplaceAction:
Package | Downloads |
---|---|
EasyOC.Users
This repositry is referencing a stable build of OrchardCore (1.8.0). Please give me a start if you find the module helpful, thanks. https://github.com/EasyOC/EasyOC.Modules 如果您认为该模块对你有帮助,请给我一个start ,谢谢 https://github.com/EasyOC/EasyOC.Modules 国内用户 欢迎加入QQ 群:877196442 |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.8.0-preview.1 | 59 | 4/28/2024 |
1.3.4 | 185 | 10/13/2023 |
1.3.0 | 411 | 4/19/2023 |
1.2.1 | 228 | 4/16/2023 |
1.2.0 | 245 | 4/9/2023 |
1.1.0 | 329 | 3/4/2023 |
1.0.13 | 308 | 2/25/2023 |
1.0.13-preview-4 | 161 | 2/23/2023 |
1.0.12 | 288 | 2/23/2023 |
1.0.11 | 293 | 2/23/2023 |
1.0.10 | 319 | 2/18/2023 |
1.0.9 | 312 | 2/18/2023 |
1.0.8 | 337 | 2/18/2023 |
1.0.7 | 337 | 2/11/2023 |
1.0.2 | 335 | 2/10/2023 |
1.0.1 | 379 | 1/30/2023 |
0.1.1 | 312 | 1/30/2023 |
0.1.1-preview | 170 | 1/30/2023 |
0.0.9-preview | 155 | 1/30/2023 |
0.0.7-preview | 137 | 1/30/2023 |
0.0.6-preview | 157 | 1/30/2023 |
0.0.5-preview | 149 | 1/30/2023 |
0.0.4-preview | 141 | 1/29/2023 |
0.0.3-preview | 151 | 1/29/2023 |
0.0.2-preview | 144 | 1/29/2023 |
0.0.1-preview | 134 | 1/29/2023 |