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.
Csla.Test.Authorization.PerTypeAuthDPActivator Class Reference
Inheritance diagram for Csla.Test.Authorization.PerTypeAuthDPActivator:
Csla.Server.IDataPortalActivator

Public Member Functions

object CreateInstance (Type requestedType)
 Gets a new instance of the requested type. More...
 
void FinalizeInstance (object obj)
 Finalizes an existing business object instance. More...
 
void InitializeInstance (object obj)
 Initializes an existing business object instance. More...
 
Type ResolveType (Type requestedType)
 Gets the actual business domain class type based on the requested type (which might be an interface). More...
 

Detailed Description

Definition at line 592 of file AuthTests.cs.

Member Function Documentation

◆ CreateInstance()

object Csla.Test.Authorization.PerTypeAuthDPActivator.CreateInstance ( Type  requestedType)

Gets a new instance of the requested type.

Parameters
requestedTypeRequested business type (class or interface).
Returns
Business object instance.

Implements Csla.Server.IDataPortalActivator.

Definition at line 594 of file AuthTests.cs.

◆ FinalizeInstance()

void Csla.Test.Authorization.PerTypeAuthDPActivator.FinalizeInstance ( object  obj)

Finalizes an existing business object instance.

Called after a data portal operation is complete.

Parameters
objReference to the business object.

Implements Csla.Server.IDataPortalActivator.

Definition at line 599 of file AuthTests.cs.

◆ InitializeInstance()

void Csla.Test.Authorization.PerTypeAuthDPActivator.InitializeInstance ( object  obj)

Initializes an existing business object instance.

Parameters
objReference to the business object.

Implements Csla.Server.IDataPortalActivator.

Definition at line 603 of file AuthTests.cs.

◆ ResolveType()

Type Csla.Test.Authorization.PerTypeAuthDPActivator.ResolveType ( Type  requestedType)

Gets the actual business domain class type based on the requested type (which might be an interface).

Parameters
requestedTypeType requested from the data portal.

Implements Csla.Server.IDataPortalActivator.

Definition at line 607 of file AuthTests.cs.