ChangeSetEntry.HasMemberChanges Property
[WCF RIA Services Version 1 Service Pack 2 is compatible with either .NET framework 4 or .NET Framework 4.5, and with either Silverlight 4 or Silverlight 5.]
Gets or sets a value that indicates whether the entity for this operation has property modifications.
Namespace: System.ServiceModel.DomainServices.Client
Assembly: System.ServiceModel.DomainServices.Client (in System.ServiceModel.DomainServices.Client.dll)
Syntax
'Declaration
<DataMemberAttribute> _
Public Property HasMemberChanges As Boolean
Get
Set
'Usage
Dim instance As ChangeSetEntry
Dim value As Boolean
value = instance.HasMemberChanges
instance.HasMemberChanges = value
[DataMemberAttribute]
public bool HasMemberChanges { get; set; }
[DataMemberAttribute]
public:
property bool HasMemberChanges {
bool get ();
void set (bool value);
}
[<DataMemberAttribute>]
member HasMemberChanges : bool with get, set
function get HasMemberChanges () : boolean
function set HasMemberChanges (value : boolean)
Property Value
Type: System.Boolean
true if the entity for this operation has property modifications; otherwise, false.
Remarks
In the case of entities using a timestamp member for concurrency, the entity may still be modified even if the OriginalEntity property has not been set. This property lets you distinguish that case from an update operation that represents a custom method invocation only.