ClearCanvas.Common.Configuration.SettingsStoreSettingsProvider.GetPreviousVersion C# (CSharp) Method

GetPreviousVersion() public method

Not implemented.
public GetPreviousVersion ( SettingsContext context, SettingsProperty property ) : SettingsPropertyValue
context System.Configuration.SettingsContext
property System.Configuration.SettingsProperty
return System.Configuration.SettingsPropertyValue
        public SettingsPropertyValue GetPreviousVersion(SettingsContext context, SettingsProperty property)
        {
			SettingsPropertyCollection properties = new SettingsPropertyCollection { property };
			//Stinks that we have to get the whole document each time, but oh well.
        	SettingsPropertyValueCollection values = GetPropertyValues(context, properties, true);
			return values[property.Name];
        }