CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
Csla.Server.IAuthorizeDataPortal Interface Reference

Interface to be implemented by a custom authorization provider. More...

Inheritance diagram for Csla.Server.IAuthorizeDataPortal:
Csla.Server.DataPortal.NullAuthorizer

Public Member Functions

void Authorize (AuthorizeRequest clientRequest)
 Implement this method to perform custom authorization on every data portal call. More...
 

Detailed Description

Interface to be implemented by a custom authorization provider.

Definition at line 19 of file IAuthorizeDataPortal.cs.

Member Function Documentation

◆ Authorize()

void Csla.Server.IAuthorizeDataPortal.Authorize ( AuthorizeRequest  clientRequest)

Implement this method to perform custom authorization on every data portal call.

Parameters
clientRequestObject containing information about the client request.

Implemented in Csla.Server.DataPortal.NullAuthorizer.