e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
37 lines
1.2 KiB
C#
37 lines
1.2 KiB
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="ValidatingPropertiesEventArgs.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Web.ApplicationServices
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Web;
|
|
|
|
public class ValidatingPropertiesEventArgs: EventArgs{
|
|
private IDictionary<string,object> _properties;
|
|
public IDictionary<string,object> Properties{
|
|
get{
|
|
return _properties;
|
|
}
|
|
}
|
|
|
|
private Collection<string> _failedProperties;
|
|
public Collection<string> FailedProperties{
|
|
get{
|
|
return _failedProperties;
|
|
}
|
|
}
|
|
internal ValidatingPropertiesEventArgs(){}
|
|
|
|
internal ValidatingPropertiesEventArgs(IDictionary<string,object> properties){
|
|
_properties = properties;
|
|
_failedProperties = new Collection<string>();
|
|
}
|
|
}
|
|
}
|
|
|