Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Web/System.Web.UI.WebControls/HotSpot.cs')
-rw-r--r--mcs/class/System.Web/System.Web.UI.WebControls/HotSpot.cs55
1 files changed, 27 insertions, 28 deletions
diff --git a/mcs/class/System.Web/System.Web.UI.WebControls/HotSpot.cs b/mcs/class/System.Web/System.Web.UI.WebControls/HotSpot.cs
index 42c55f7b4f2..6c587c26851 100644
--- a/mcs/class/System.Web/System.Web.UI.WebControls/HotSpot.cs
+++ b/mcs/class/System.Web/System.Web.UI.WebControls/HotSpot.cs
@@ -35,15 +35,15 @@ using System.Security.Permissions;
namespace System.Web.UI.WebControls
{
- [TypeConverterAttribute (typeof(ExpandableObjectConverter))]
+ [TypeConverterAttribute (typeof(ExpandableObjectConverter))]
[AspNetHostingPermissionAttribute (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermissionAttribute (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
public abstract class HotSpot: IStateManager
{
StateBag viewState = new StateBag ();
- [LocalizableAttribute (true)]
- [DefaultValueAttribute ("")]
+ [LocalizableAttribute (true)]
+ [DefaultValueAttribute ("")]
public virtual string AccessKey {
get {
object o = viewState ["AccessKey"];
@@ -54,11 +54,10 @@ namespace System.Web.UI.WebControls
}
}
- [LocalizableAttribute (true)]
- [NotifyParentPropertyAttribute (true)]
- [WebCategoryAttribute ("Behavior")]
- [DefaultValueAttribute ("")]
- [BindableAttribute (true)]
+ [NotifyParentPropertyAttribute (true)]
+ [WebCategoryAttribute ("Behavior")]
+ [DefaultValueAttribute ("")]
+ [BindableAttribute (true)]
public virtual string AlternateText {
get {
object o = viewState ["AlternateText"];
@@ -69,9 +68,9 @@ namespace System.Web.UI.WebControls
}
}
- [WebCategoryAttribute ("Behavior")]
- [DefaultValueAttribute (HotSpotMode.NotSet)]
- [NotifyParentPropertyAttribute (true)]
+ [WebCategoryAttribute ("Behavior")]
+ [DefaultValueAttribute (HotSpotMode.NotSet)]
+ [NotifyParentPropertyAttribute (true)]
public virtual HotSpotMode HotSpotMode {
get {
object o = viewState ["HotSpotMode"];
@@ -82,12 +81,12 @@ namespace System.Web.UI.WebControls
}
}
- [DefaultValueAttribute ("")]
- [BindableAttribute (true)]
- [EditorAttribute ("System.Web.UI.Design.UrlEditor, " + Consts.AssemblySystem_Design, "System.Drawing.Design.UITypeEditor, " + Consts.AssemblySystem_Drawing)]
- [NotifyParentPropertyAttribute (true)]
- [UrlPropertyAttribute]
- public string NavigateUrl {
+ [DefaultValueAttribute ("")]
+ [BindableAttribute (true)]
+ [EditorAttribute ("System.Web.UI.Design.UrlEditor, " + Consts.AssemblySystem_Design, "System.Drawing.Design.UITypeEditor, " + Consts.AssemblySystem_Drawing)]
+ [NotifyParentPropertyAttribute (true)]
+ [UrlPropertyAttribute]
+ public virtual string NavigateUrl {
get {
object o = viewState ["NavigateUrl"];
return o != null ? (string) o : "";
@@ -97,11 +96,11 @@ namespace System.Web.UI.WebControls
}
}
- [BindableAttribute (true)]
- [WebCategoryAttribute ("Behavior")]
- [DefaultValueAttribute ("")]
- [NotifyParentPropertyAttribute (true)]
- public string PostBackValue {
+ [BindableAttribute (true)]
+ [WebCategoryAttribute ("Behavior")]
+ [DefaultValueAttribute ("")]
+ [NotifyParentPropertyAttribute (true)]
+ public virtual string PostBackValue {
get {
object o = viewState ["PostBackValue"];
return o != null ? (string) o : "";
@@ -111,8 +110,8 @@ namespace System.Web.UI.WebControls
}
}
- [DefaultValueAttribute ((short)0)]
- [WebCategoryAttribute ("Accessibility")]
+ [DefaultValueAttribute ((short)0)]
+ [WebCategoryAttribute ("Accessibility")]
public virtual short TabIndex {
get {
object o = viewState ["TabIndex"];
@@ -123,10 +122,10 @@ namespace System.Web.UI.WebControls
}
}
- [WebCategoryAttribute ("Behavior")]
- [NotifyParentPropertyAttribute (true)]
- [DefaultValueAttribute ("")]
- [TypeConverterAttribute (typeof(TargetConverter))]
+ [WebCategoryAttribute ("Behavior")]
+ [NotifyParentPropertyAttribute (true)]
+ [DefaultValueAttribute ("")]
+ [TypeConverterAttribute (typeof(TargetConverter))]
public virtual string Target {
get {
object o = viewState ["Target"];