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
GrpcProxyExtensions.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="GrpcProxyExtensions.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;
10using Grpc.Net.Client;
12
13namespace Csla.Configuration
14{
18 public static class GrpcProxyExtensions
19 {
25 public static DataPortalClientOptions UseHttpProxy(
26 this DataPortalClientOptions config, Action<Csla.Channels.Grpc.GrpcProxyOptions> options)
27 {
28 var proxyOptions = new Csla.Channels.Grpc.GrpcProxyOptions();
29 options?.Invoke(proxyOptions);
30 config.Services.AddTransient(typeof(IDataPortalProxy),
31 sp =>
32 {
33 var applicationContext = sp.GetRequiredService<ApplicationContext>();
34 var channel = GrpcChannel.ForAddress(proxyOptions.DataPortalUrl);
35 return new Csla.Channels.Grpc.GrpcProxy(applicationContext, channel, proxyOptions);
36 });
37 return config;
38 }
39 }
40}
Implements a data portal proxy to relay data portal calls to a remote application server by using gRP...
Definition: GrpcProxy.cs:20
Interface implemented by client-side data portal proxy objects.