X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.Web%2FSystem.Web.UI.WebControls%2FDayRenderEventArgs.cs;h=6ac506b00c4d9a54ac5202df68bf669b2cd5f93a;hb=69fd76078eb720a89f3420bab3fe1bc919896bec;hp=04e36b804f962f4a2e70cc0a71f9aa5498f6781e;hpb=04d1b4116331e3813b8f75304f714a5d61ba1214;p=mono.git diff --git a/mcs/class/System.Web/System.Web.UI.WebControls/DayRenderEventArgs.cs b/mcs/class/System.Web/System.Web.UI.WebControls/DayRenderEventArgs.cs index 04e36b804f9..6ac506b00c4 100644 --- a/mcs/class/System.Web/System.Web.UI.WebControls/DayRenderEventArgs.cs +++ b/mcs/class/System.Web/System.Web.UI.WebControls/DayRenderEventArgs.cs @@ -3,7 +3,7 @@ // // Author: Duncan Mak (duncan@novell.com) // -// Copyright (C) 2005 Novell, Inc (http://www.novell.com) +// Copyright (C) 2005-2010 Novell, Inc (http://www.novell.com) // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the @@ -25,19 +25,26 @@ // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // -namespace System.Web.UI.WebControls { - +namespace System.Web.UI.WebControls +{ public sealed class DayRenderEventArgs { TableCell cell; CalendarDay day; - + string _selectUrl; + public DayRenderEventArgs (TableCell cell, CalendarDay day) { this.cell = cell; this.day = day; } + public DayRenderEventArgs (TableCell cell, CalendarDay day, string selectUrl) + : this (cell, day) + { + _selectUrl = selectUrl; + } + public TableCell Cell { get { return cell; } } @@ -45,5 +52,9 @@ namespace System.Web.UI.WebControls { public CalendarDay Day { get { return day; } } + + public string SelectUrl { + get { return _selectUrl; } + } } }