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.
MobileResponse.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="MobileResponse.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Object that encompasses the resut of the request from </summary>
7//-----------------------------------------------------------------------
8using System;
9using System.Collections.Generic;
10using System.Linq;
11using System.Text;
12using Csla.Core;
13
15{
20 public class MobileResponse
21 {
26 public Exception Error { get; set; }
30 public ContextDictionary GlobalContext { get; set; }
34 public object Object { get; set; }
35 }
36}
Dictionary type that is serializable with the SerializationFormatterFactory.GetFormatter().
Object that encompasses the resut of the request from a client
ContextDictionary GlobalContext
Global context object.
Exception Error
Exception that occurred during portal execution Null if no exception occurred
object Object
Result of the request