NotificationChangeRequest.AddedOrChanged Property
Gets a list of the properties that are requested to be changed or added to the notification.
Namespace: Microsoft.WindowsServerSolutions.Common.ProviderFramework.Notifications
Assembly: CoreProviders (in CoreProviders.dll)
Syntax
[DataMemberAttribute]
public IDictionary<string, object> AddedOrChanged { get; private set; }
public:
[DataMemberAttribute]
property IDictionary<String^, Object^>^ AddedOrChanged {
IDictionary<String^, Object^>^ get();
private: void set(IDictionary<String^, Object^>^ value);
}
<DataMemberAttribute>
Public Property AddedOrChanged As IDictionary(Of String, Object)
Get
Private Set
End Property
Property Value
Type: System.Collections.Generic.IDictionary<String, Object>
A IDictionary<TKey, TValue> of changed or updated properties.
See Also
NotificationChangeRequest Class
Microsoft.WindowsServerSolutions.Common.ProviderFramework.Notifications Namespace
Return to top