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.
NullAuthorizer.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="NullAuthorizer.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Implementation of the authorizer that</summary>
7//-----------------------------------------------------------------------
8namespace Csla.Server
9{
15 {
22 public void Authorize(AuthorizeRequest clientRequest)
23 { /* allow all requests */ }
24 }
25}
Object containing information about the client request to the data portal.
Implementation of the authorizer that allows all data portal calls to pass.
void Authorize(AuthorizeRequest clientRequest)
Checks authorization rules for the request.
Interface to be implemented by a custom authorization provider.