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.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
Csla.Server.Dashboard.IDashboard Interface Reference

Data portal server dashboard. More...

Inheritance diagram for Csla.Server.Dashboard.IDashboard:
Csla.Server.Dashboard.Dashboard Csla.Server.Dashboard.NullDashboard

Public Member Functions

List< ActivityGetRecentActivity ()
 Gets the items in the recent activity queue. More...
 
void InitializeCall (InterceptArgs e)
 Called by the data portal to indicate a call has been inititalized. More...
 
void CompleteCall (InterceptArgs e)
 Called by the data portal to indicate a call has been completed. More...
 

Properties

DateTimeOffset FirstCall [get]
 Gets the time the data portal was first invoked More...
 
DateTimeOffset LastCall [get]
 Gets the most recent time the data portal was invoked More...
 
long TotalCalls [get]
 Gets the total number of times the data portal has been invoked More...
 
long FailedCalls [get]
 Gets the number of times data portal calls have failed More...
 
long CompletedCalls [get]
 Gets the number of times data portal calls have successfully completed More...
 

Detailed Description

Data portal server dashboard.

Definition at line 16 of file IDashboard.cs.

Member Function Documentation

◆ CompleteCall()

void Csla.Server.Dashboard.IDashboard.CompleteCall ( InterceptArgs  e)

Called by the data portal to indicate a call has been completed.

Parameters
eInterceptor arguments

◆ GetRecentActivity()

List< Activity > Csla.Server.Dashboard.IDashboard.GetRecentActivity ( )

Gets the items in the recent activity queue.

Implemented in Csla.Server.Dashboard.Dashboard.

◆ InitializeCall()

void Csla.Server.Dashboard.IDashboard.InitializeCall ( InterceptArgs  e)

Called by the data portal to indicate a call has been inititalized.

Parameters
eInterceptor arguments

Property Documentation

◆ CompletedCalls

long Csla.Server.Dashboard.IDashboard.CompletedCalls
get

Gets the number of times data portal calls have successfully completed

Definition at line 45 of file IDashboard.cs.

◆ FailedCalls

long Csla.Server.Dashboard.IDashboard.FailedCalls
get

Gets the number of times data portal calls have failed

Definition at line 36 of file IDashboard.cs.

◆ FirstCall

DateTimeOffset Csla.Server.Dashboard.IDashboard.FirstCall
get

Gets the time the data portal was first invoked

Definition at line 21 of file IDashboard.cs.

◆ LastCall

DateTimeOffset Csla.Server.Dashboard.IDashboard.LastCall
get

Gets the most recent time the data portal was invoked

Definition at line 26 of file IDashboard.cs.

◆ TotalCalls

long Csla.Server.Dashboard.IDashboard.TotalCalls
get

Gets the total number of times the data portal has been invoked

Definition at line 31 of file IDashboard.cs.