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.
Mobile/UpdateRequest.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="UpdateRequest.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Message sent to the WCF data portal</summary>
7//-----------------------------------------------------------------------
8using System;
9using System.Runtime.Serialization;
10using System.Security.Principal;
11
13{
17 [DataContract]
18 public class UpdateRequest
19 {
23 [DataMember]
24 public byte[] ObjectData { get; set; }
25
29 [DataMember]
30 public byte[] Principal { get; set; }
31
35 [DataMember]
36 public byte[] GlobalContext { get; set; }
37
41 [DataMember]
42 public byte[] ClientContext { get; set; }
43
48 [DataMember]
49 public string ClientCulture { get; set; }
50
55 [DataMember]
56 public string ClientUICulture { get; set; }
57 }
58}
Message sent to the WCF data portal.
string ClientCulture
Serialized client culture.
string ClientUICulture
Serialized client UI culture.
byte[] Principal
Serialized principal object.
byte[] GlobalContext
Serialized global context object.
byte[] ClientContext
Serialized client context object.
byte[] ObjectData
Serialized object data.