ISettings.CompareSettingValues Method
Returns a list of changed settings.
Namespace: Microsoft.Data.Schema.Common.Settings
Assembly: Microsoft.Data.Schema (in Microsoft.Data.Schema.dll)
Syntax
'Declaration
Function CompareSettingValues ( _
oldValues As IDictionary(Of String, String) _
) As IList(Of SettingChange)
'Usage
Dim instance As ISettings
Dim oldValues As IDictionary(Of String, String)
Dim returnValue As IList(Of SettingChange)
returnValue = instance.CompareSettingValues(oldValues)
IList<SettingChange> CompareSettingValues(
IDictionary<string, string> oldValues
)
IList<SettingChange^>^ CompareSettingValues(
IDictionary<String^, String^>^ oldValues
)
function CompareSettingValues(
oldValues : IDictionary<String, String>
) : IList<SettingChange>
abstract CompareSettingValues :
oldValues:IDictionary<string, string> -> IList<SettingChange>
Parameters
- oldValues
Type: System.Collections.Generic.IDictionary<String, String>
The collection of old values
Return Value
Type: System.Collections.Generic.IList<SettingChange>
Remarks
If settings changed, fire the SettingsChanged event.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.