File tree Expand file tree Collapse file tree 8 files changed +15
-7
lines changed
dotnetframework/GxClasses/Services
extensions/Azure/Handlers Expand file tree Collapse file tree 8 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 1212
1313namespace GeneXus . Application
1414{
15- public class GXBCRestService : GxRestWrapper
15+ internal class GXBCRestService : GxRestWrapper
1616 {
1717 GxSilentTrnSdt _worker ;
1818 private const string INSERT_OR_UPDATE_PARAMETER = "insertorupdate" ;
Original file line number Diff line number Diff line change 2323
2424namespace GxClasses . Web . Middleware
2525{
26- public class GXRouting : IGXRouting
26+ internal class GXRouting : IGXRouting
2727 {
2828
2929 static readonly ILog log = log4net . LogManager . GetLogger ( typeof ( IGXRouting ) ) ;
Original file line number Diff line number Diff line change 66
77namespace GxClasses . Web
88{
9- public interface IGXRouting
9+ internal interface IGXRouting
1010 {
1111 public Task ProcessRestRequest ( HttpContext context ) ;
1212 public bool ServiceInPath ( String path , out String actualPath ) ;
Original file line number Diff line number Diff line change 22
33
44[ assembly: InternalsVisibleTo ( "DotNetCoreUnitTest" ) ]
5- [ assembly: InternalsVisibleTo ( "GxNetCoreStartup" ) ]
5+ [ assembly: InternalsVisibleTo ( "GxNetCoreStartup" ) ]
6+ [ assembly: InternalsVisibleTo ( "GeneXus.Deploy.AzureFunctions.Handlers" ) ]
7+ [ assembly: InternalsVisibleTo ( "AzureFunctionsTest" ) ]
Original file line number Diff line number Diff line change 44[ assembly: InternalsVisibleTo ( "GxClasses.Web" ) ]
55[ assembly: InternalsVisibleTo ( "GxSearch" ) ]
66[ assembly: InternalsVisibleTo ( "GxNetCoreStartup" ) ]
7+ [ assembly: InternalsVisibleTo ( "GeneXus.Deploy.AzureFunctions.Handlers" ) ]
8+ [ assembly: InternalsVisibleTo ( "AzureFunctionsTest" ) ]
79
Original file line number Diff line number Diff line change @@ -44,9 +44,9 @@ internal static class Synchronizer
4444 }
4545
4646#if NETCORE
47- public class GxRestWrapper
47+ internal class GxRestWrapper
4848#else
49- public class GxRestWrapper : IHttpHandler , IRequiresSessionState
49+ internal class GxRestWrapper : IHttpHandler , IRequiresSessionState
5050#endif
5151 {
5252 static readonly ILog log = log4net . LogManager . GetLogger ( typeof ( GeneXus . Application . GxRestWrapper ) ) ;
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public class HttpTriggerHandler
2929 private IGXRouting _gxRouting ;
3030 private ICacheService2 _redis ;
3131
32- public HttpTriggerHandler ( IGXRouting gxRouting , ICacheService2 redis )
32+ internal HttpTriggerHandler ( IGXRouting gxRouting , ICacheService2 redis )
3333 {
3434 _gxRouting = gxRouting ;
3535 if ( redis != null && redis . GetType ( ) == typeof ( Redis ) )
Original file line number Diff line number Diff line change 1+ using System . Runtime . CompilerServices ;
2+
3+
4+ [ assembly: InternalsVisibleTo ( "AzureFunctionsTest" ) ]
You can’t perform that action at this time.
0 commit comments