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
ContextParams.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="ContextParams.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Implementation of a lock that waits while</summary>
7//----------------------------------------------------------------------
8using System.Globalization;
9using System.Security.Principal;
10using System.Threading;
11using Csla.Core;
12
13namespace Csla.Threading
14{
18 internal class ContextParams
19 {
20 public ContextParams(ApplicationContext applicationContext)
21 {
22 ApplicationContext = applicationContext;
23 }
24
25 private ApplicationContext ApplicationContext { get; set; }
26
27 public IPrincipal User { get; private set; }
28 public Csla.Core.ContextDictionary ClientContext { get; private set; }
29 public CultureInfo UICulture { get; private set; }
30 public CultureInfo Culture { get; private set; }
31
32 public ContextParams()
33 {
34 this.User = ApplicationContext.User;
35 this.ClientContext = ApplicationContext.ClientContext;
36 this.Culture = System.Globalization.CultureInfo.CurrentCulture;
37 this.UICulture = System.Globalization.CultureInfo.CurrentUICulture;
38 }
39
40 internal void SetThreadContext()
41 {
42 ApplicationContext.User = User;
43 ApplicationContext.SetContext(ClientContext);
44 Thread.CurrentThread.CurrentUICulture = UICulture;
45 Thread.CurrentThread.CurrentCulture = Culture;
46 }
47 }
48}
Dictionary type that is serializable with the SerializationFormatterFactory.GetFormatter().