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
LocalProxyExtensions.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="LocalProxyExtensions.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;
9using System.Linq;
10using Csla.Channels.Local;
13
14namespace Csla.Configuration
15{
19 public static class LocalProxyExtensions
20 {
25 public static DataPortalClientOptions UseLocalProxy(this DataPortalClientOptions config)
26 {
27 return UseLocalProxy(config, null);
28 }
29
35 public static DataPortalClientOptions UseLocalProxy(this DataPortalClientOptions config, Action<LocalProxyOptions> options)
36 {
37 var existingOptions = config.Services.Where(i => i.ServiceType.Equals(typeof(IDataPortalProxy))).FirstOrDefault();
38 if (existingOptions?.ImplementationInstance is not LocalProxyOptions proxyOptions)
39 proxyOptions = new LocalProxyOptions();
40 options?.Invoke(proxyOptions);
41 config.Services.AddTransient<IDataPortalProxy, LocalProxy>();
42 config.Services.AddTransient((p) => proxyOptions);
43 return config;
44 }
45 }
46}
Implements a data portal proxy to relay data portal calls to an application server hosted locally in ...
Definition: LocalProxy.cs:25
Interface implemented by client-side data portal proxy objects.