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/CriteriaRequest.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="CriteriaRequest.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;
11using Csla.Core;
12
14{
18 [DataContract]
19 public class CriteriaRequest
20 {
25 [DataMember]
26 public string TypeName { get; set; }
27
31 [DataMember]
32 public byte[] CriteriaData { get; set; }
33
37 [DataMember]
38 public byte[] Principal { get; set; }
39
43 [DataMember]
44 public byte[] GlobalContext { get; set; }
45
49 [DataMember]
50 public byte[] ClientContext { get; set; }
51
56 [DataMember]
57 public string ClientCulture { get; set; }
58
63 [DataMember]
64 public string ClientUICulture { get; set; }
65 }
66}
Message sent to the WCF data portal.
string ClientCulture
Serialized client culture.
string ClientUICulture
Serialized client UI culture.
byte[] Principal
Serialized data for the principal object.
byte[] CriteriaData
Serialized data for the criteria object.
byte[] GlobalContext
Serialized data for the global context object.
string TypeName
Assembly qualified name of the business object type to create.
byte[] ClientContext
Serialized data for the client context object.