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.
IMobileRequest.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="IMobileRequest.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Interface for all requests from client</summary>
7//-----------------------------------------------------------------------
8using System;
9using Csla.Core;
10using System.Security.Principal;
11
13{
17 public interface IMobileRequest
18 {
22 IPrincipal Principal { get; set; }
34 string ClientCulture { get; set; }
38 string ClientUICulture { get; set; }
39 }
40}
Dictionary type that is serializable with the SerializationFormatterFactory.GetFormatter().
Interface for all requests from client
ContextDictionary GlobalContext
Global context object.
string ClientCulture
The client culture.
string ClientUICulture
The client UI culture.
ContextDictionary ClientContext
Client context object.
IPrincipal Principal
Principal that will be set for the request