(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Web / System.Web.Util / DataSourceHelper.cs
blobe387d038917ac509a9828dfa544798d3529a3c8d
2 //
3 // Permission is hereby granted, free of charge, to any person obtaining
4 // a copy of this software and associated documentation files (the
5 // "Software"), to deal in the Software without restriction, including
6 // without limitation the rights to use, copy, modify, merge, publish,
7 // distribute, sublicense, and/or sell copies of the Software, and to
8 // permit persons to whom the Software is furnished to do so, subject to
9 // the following conditions:
10 //
11 // The above copyright notice and this permission notice shall be
12 // included in all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 /**
23 * Namespace: System.Web.UI.Util
24 * Class: DataSourceHelper
26 * Author: Gaurav Vaish
27 * Maintainer: gvaish@iitk.ac.in
28 * Contact: <my_scripts2001@yahoo.com>, <gvaish@iitk.ac.in>
29 * Status: 10%
31 * (C) Gaurav Vaish (2001)
34 using System;
35 using System.Collections;
36 using System.ComponentModel;
38 namespace System.Web.Util
40 internal class DataSourceHelper
42 public static IEnumerable GetResolvedDataSource(object source, string member)
44 if(source != null && source is IListSource)
46 IListSource src = (IListSource)source;
47 IList list = src.GetList();
48 if(!src.ContainsListCollection)
50 return list;
52 if(list != null && list is ITypedList)
54 ITypedList tlist = (ITypedList)list;
55 PropertyDescriptorCollection pdc = tlist.GetItemProperties(new PropertyDescriptor[0]);
56 if(pdc != null && pdc.Count > 0)
58 PropertyDescriptor pd = null;
59 if(member != null && member.Length > 0)
61 pd = pdc.Find(member, true);
62 } else
64 pd = pdc[0];
66 if(pd != null)
68 object rv = pd.GetValue(list[0]);
69 if(rv != null && rv is IEnumerable)
71 return (IEnumerable)rv;
74 throw new HttpException(
75 HttpRuntime.FormatResourceString("ListSource_Missing_DataMember", member));
77 throw new HttpException(
78 HttpRuntime.FormatResourceString("ListSource_Without_DataMembers"));
81 if(source is IEnumerable)
83 return (IEnumerable)source;
85 return null;