You've already forked linux-packaging-mono
Imported Upstream version 5.2.0.175
Former-commit-id: bb0468d0f257ff100aa895eb5fe583fb5dfbf900
This commit is contained in:
parent
4bdbaf4a88
commit
966bba02bb
@ -38,21 +38,21 @@ namespace System.Web.UI {
|
||||
object propertyValue;
|
||||
Type propertyType;
|
||||
|
||||
public ControlValuePropertyAttribute (string propName)
|
||||
public ControlValuePropertyAttribute (string name)
|
||||
{
|
||||
this.propertyName = propName;
|
||||
this.propertyName = name;
|
||||
}
|
||||
|
||||
public ControlValuePropertyAttribute (string propName, object propValue)
|
||||
public ControlValuePropertyAttribute (string name, object defaultValue)
|
||||
{
|
||||
this.propertyName = propName;
|
||||
this.propertyValue = propValue;
|
||||
this.propertyName = name;
|
||||
this.propertyValue = defaultValue;
|
||||
}
|
||||
|
||||
public ControlValuePropertyAttribute (string propName, Type type, string propValue)
|
||||
public ControlValuePropertyAttribute (string name, Type type, string defaultValue)
|
||||
{
|
||||
this.propertyName = propName;
|
||||
this.propertyValue = propValue;
|
||||
this.propertyName = name;
|
||||
this.propertyValue = defaultValue;
|
||||
this.propertyType = type;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user