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.
IFieldData.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="IFieldData.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Defines the members required by a field</summary>
7//-----------------------------------------------------------------------
9
11{
16 public interface IFieldData : ITrackStatus, IMobileObject
17 {
21 string Name { get; }
27 object Value { get; set; }
31 void MarkClean();
32 }
33}
object Value
Gets or sets the field value.
Definition: IFieldData.cs:27
void MarkClean()
Marks the field as unchanged.
string Name
Gets the name of the field.
Definition: IFieldData.cs:21
Interface to be implemented by any object that supports serialization by the SerializationFormatterFa...