//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Web.ClientServices.Providers {
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
public class SettingsSavedEventArgs : EventArgs {
private ReadOnlyCollection _failedSettingsList;
public SettingsSavedEventArgs(IEnumerable failedSettingsList) {
List list =
(failedSettingsList == null) ? new List() : new List(failedSettingsList);
_failedSettingsList = new ReadOnlyCollection(list);
}
public ReadOnlyCollection FailedSettingsList {
get {
return _failedSettingsList;
}
}
}
}