disable broken tests on net_4_0
[mcs.git] / class / System.Web.DynamicData / System.Web.DynamicData / FilterRepeater.cs
blob5ffaed0973210476ba04a770fde8b4f8589e9941
1 //
2 // FilterRepeater.cs
3 //
4 // Author:
5 // Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // Copyright (C) 2008 Novell Inc. http://novell.com
8 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 //
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 //
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 using System;
31 using System.Collections;
32 using System.Collections.Generic;
33 using System.Collections.Specialized;
34 using System.ComponentModel;
35 using System.Globalization;
36 using System.Security.Permissions;
37 using System.Security.Principal;
38 using System.Web.Caching;
39 using System.Web.UI;
40 using System.Web.UI.WebControls;
42 namespace System.Web.DynamicData
44 [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
45 [AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
46 [ParseChildren (true)]
47 // [ToolboxItem]
48 public class FilterRepeater : Repeater, IWhereParametersProvider
50 [MonoTODO]
51 [Themeable (false)]
52 [Category ("Data")]
53 [DefaultValue (null)]
54 public string ContextTypeName { get; set; }
56 [MonoTODO]
57 [Themeable (false)]
58 [Category ("Behavior")]
59 [DefaultValue ("DynamicFilter")]
60 [IDReferenceProperty (typeof (FilterUserControlBase))]
61 public string DynamicFilterContainerId { get; set; }
63 [MonoTODO]
64 public MetaTable Table { get; private set; }
66 [MonoTODO]
67 [Themeable (false)]
68 [Category ("Data")]
69 [DefaultValue (null)]
70 public string TableName { get; set; }
72 [MonoTODO]
73 public override bool Visible { get; set; }
75 [MonoTODO]
76 public override void DataBind ()
78 throw new NotImplementedException ();
81 [MonoTODO]
82 protected internal virtual IEnumerable<MetaColumn> GetFilteredColumns ()
84 throw new NotImplementedException ();
87 [MonoTODO]
88 public virtual IEnumerable<Parameter> GetWhereParameters (IDynamicDataSource dataSource)
90 throw new NotImplementedException ();
93 [MonoTODO]
94 protected virtual void OnFilterItemCreated (RepeaterItem item)
96 throw new NotImplementedException ();
99 [MonoTODO]
100 protected override void OnInit (EventArgs e)
102 throw new NotImplementedException ();
105 [MonoTODO]
106 protected override void OnItemCreated (RepeaterItemEventArgs e)
108 throw new NotImplementedException ();