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
//-----------------------------------------------------------------------
8
namespace
Csla.Server
9
{
14
public
class
NullAuthorizer
:
IAuthorizeDataPortal
15
{
22
public
void
Authorize
(
AuthorizeRequest
clientRequest)
23
{
/* allow all requests */
}
24
}
25
}
Csla.Server.AuthorizeRequest
Object containing information about the client request to the data portal.
Definition:
AuthorizeRequest.cs:17
Csla.Server.NullAuthorizer
Implementation of the authorizer that allows all data portal calls to pass.
Definition:
NullAuthorizer.cs:15
Csla.Server.NullAuthorizer.Authorize
void Authorize(AuthorizeRequest clientRequest)
Checks authorization rules for the request.
Definition:
NullAuthorizer.cs:22
Csla.Server.IAuthorizeDataPortal
Interface to be implemented by a custom authorization provider.
Definition:
IAuthorizeDataPortal.cs:20
Csla.Server
Definition:
HttpPortal.cs:22
Generated by
1.9.2