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.Server
Assembly:  System.ServiceModel.DomainServices.Server (in System.ServiceModel.DomainServices.Server.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.

See Also

Reference

ChangeSetEntry Class

System.ServiceModel.DomainServices.Server Namespace