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.
Activity.cs
Go to the documentation of this file.
1using System;
2
4{
9 public class Activity
10 {
15 public Activity(InterceptArgs result)
16 {
17 ObjectType = result.ObjectType;
18 Operation = result.Operation;
19 Runtime = result.Runtime;
20 Exception = result.Exception;
21 }
22
26 public Type ObjectType { get; private set; }
30 public DataPortalOperations Operation { get; private set; }
35 public TimeSpan Runtime { get; private set; }
40 public Exception Exception { get; private set; }
41 }
42}
Information about a server-side data portal invocation.
Definition: Activity.cs:10
DataPortalOperations Operation
Gets the operation type for the call
Definition: Activity.cs:30
Type ObjectType
Gets the root business object type for the call
Definition: Activity.cs:26
TimeSpan Runtime
Gets the elapsed runtime for the call.
Definition: Activity.cs:35
Activity(InterceptArgs result)
Creates an instance of the type.
Definition: Activity.cs:15
Exception Exception
Gets the exception (if any) resulting from the call.
Definition: Activity.cs:40
Arguments parameter passed to the interceptor methods.
TimeSpan Runtime
Gets or sets a value containing the elapsed runtime for this operation (only valid at end of operatio...
DataPortalOperations Operation
Gets or sets the data portal operation being performed.
Type ObjectType
Gets or sets the business object type.
Exception Exception
Gets or sets the exception that occurred during data portal processing.
DataPortalOperations
List of data portal operations.