2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
[mono.git] / mcs / class / System.Web / System.Web.UI / DataSourceCacheDurationConverter .jvm.cs
1 using System.Collections;\r
2 using System.ComponentModel;\r
3 using System.Globalization;\r
4 \r
5 #if NET_2_0\r
6 namespace System.Web.UI\r
7 {\r
8         public class DataSourceCacheDurationConverter : Int32Converter\r
9         {\r
10                 public DataSourceCacheDurationConverter () {\r
11                         throw new NotImplementedException ();\r
12                 }\r
13                 public bool CanConvertFrom (Type sourceType) {\r
14                         throw new NotImplementedException ();\r
15                 }\r
16                 public override bool CanConvertFrom (ITypeDescriptorContext context, Type sourceType) {\r
17                         throw new NotImplementedException ();\r
18                 }\r
19                 public bool CanConvertTo (Type destinationType) {\r
20                         throw new NotImplementedException ();\r
21                 }\r
22                 public override bool CanConvertTo (ITypeDescriptorContext context, Type destinationType) {\r
23                         throw new NotImplementedException ();\r
24                 }\r
25                 public Object ConvertFrom (Object value) {\r
26                         throw new NotImplementedException ();\r
27                 }\r
28                 public override Object ConvertFrom (ITypeDescriptorContext context,\r
29                                                                                         CultureInfo culture,\r
30                                                                                         Object value) {\r
31                         throw new NotImplementedException ();\r
32                 }\r
33                 public Object ConvertTo (Object value, Type destinationType) {\r
34                         throw new NotImplementedException ();\r
35                 }\r
36                 public override Object ConvertTo (ITypeDescriptorContext context,\r
37                                                                                 CultureInfo culture,\r
38                                                                                 Object value,\r
39                                                                                 Type destinationType) {\r
40                         throw new NotImplementedException ();\r
41                 }\r
42                 public ICollection GetStandardValues () {\r
43                         throw new NotImplementedException ();\r
44                 }\r
45                 public override StandardValuesCollection GetStandardValues (ITypeDescriptorContext context) {\r
46                         throw new NotImplementedException ();\r
47                 }\r
48                 public bool GetStandardValuesExclusive () {\r
49                         throw new NotImplementedException ();\r
50                 }\r
51                 public override bool GetStandardValuesExclusive (ITypeDescriptorContext context) {\r
52                         throw new NotImplementedException ();\r
53                 }\r
54                 public bool GetStandardValuesSupported () {\r
55                         throw new NotImplementedException ();\r
56                 }\r
57                 public override bool GetStandardValuesSupported (ITypeDescriptorContext context) {\r
58                         throw new NotImplementedException ();\r
59                 }\r
60         }\r
61 }\r
62 #endif\r