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

DataSourceHelper.cs « System.Web.Mobile.Util « System.Web.Mobile « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e8e3a0e320d79ebbe41239ddb4a63e4c035f94c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
 * Project   : Mono
 * Namespace : System.Web.Mobile.Util
 * Class     : DataSourceHelper
 * Author    : Gaurav Vaish
 *
 * Copyright : 2003 with Gaurav Vaish, and with
 *             Ximian Inc
 */

using System.Collections;
using System.Web.UI;
using System.Web.Mobile;
using System.Web.UI.MobileControls;

namespace System.Web.Mobile.Util
{
	internal class DataSourceHelper
	{
		private DataSourceHelper()
		{
		}

		[MonoTODO("Have_to_see_how_I_did_in_WebControls")]
		public static IEnumerable GetResolvedDataSource(object dataSource,
		                                                string dataMember)
		{
			IEnumerable retVal = null;
			if(dataSource != null)
			{
				throw new NotImplementedException();
			}
			return retVal;
		}
	}
}