CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
RabbitMqProxyExtensions.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="RabbitMqProxyExtensions.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Implement extension methods data portal channel</summary>
7//-----------------------------------------------------------------------
8using System;
11
12namespace Csla.Configuration
13{
17 public static class RabbitMqProxyExtensions
18 {
24 public static DataPortalClientOptions UseHttpProxy(
25 this DataPortalClientOptions config, Action<Csla.Channels.RabbitMq.RabbitMqProxyOptions> options)
26 {
27 var proxyOptions = new Csla.Channels.RabbitMq.RabbitMqProxyOptions();
28 options?.Invoke(proxyOptions);
29 config.Services.AddTransient(typeof(IDataPortalProxy),
30 sp =>
31 {
32 var applicationContext = sp.GetRequiredService<ApplicationContext>();
33 return new Csla.Channels.RabbitMq.RabbitMqProxy(applicationContext, proxyOptions);
34 });
35 return config;
36 }
37 }
38}
Implements a data portal proxy to relay data portal calls to a remote application server by using Rab...
Interface implemented by client-side data portal proxy objects.