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/WcfResponse.cs
Go to the documentation of this file.
1#if !NETFX_CORE
2//-----------------------------------------------------------------------
3// <copyright file="WcfResponse.cs" company="Marimer LLC">
4// Copyright (c) Marimer LLC. All rights reserved.
5// Website: https://cslanet.com
6// </copyright>
7// <summary>Response message returned from the </summary>
8//-----------------------------------------------------------------------
9using System;
10using System.Runtime.Serialization;
11
13{
18 [DataContract]
19 public class WcfResponse
20 {
24 [DataMember]
25 public byte[] ObjectData { get; set; }
29 [DataMember]
30 public WcfErrorInfo ErrorData { get; set; }
34 [DataMember]
35 public byte[] GlobalContext { get; set; }
36 }
37}
38#endif
Message containing details about any server-side exception.
Definition: WcfErrorInfo.cs:20
Response message returned from the WCF data portal methods.
WcfErrorInfo ErrorData
Serialized error/exception data.
byte[] ObjectData
Serialized object data.
byte[] GlobalContext
Serialized global context data.