MetadataBase.HasChanged Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets whether the item of metadata has changed.
public:
property Nullable<bool> HasChanged { Nullable<bool> get(); void set(Nullable<bool> value); };
[System.Runtime.Serialization.DataMember(Order=60)]
public bool? HasChanged { get; set; }
[<System.Runtime.Serialization.DataMember(Order=60)>]
member this.HasChanged : Nullable<bool> with get, set
Public Property HasChanged As Nullable(Of Boolean)
Property Value
true
if metadata item has changed since the last query; otherwise, false
.
- Attributes
Remarks
When metadata is retrieved using RetrieveMetadataChangesRequest, with a valid ClientVersionStamp parameter, the RetrieveMetadataChangesResponse. EntityMetadata property contains an EntityMetadataCollection of all the changed metadata. When a child item has changed but a parent item has not, the HasChanged property of the child will be true
but for the parent it will be false
.
It is not valid to use this attribute as part of a query because the value is calculated. The value will be null except in the results of a query that returns information about changes from a previous query.