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

DesignTimeParseData.cs « System.Web.UI « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 901e0c4cb9111a4f6f65779fa949f279176bce0f (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
/**
 * Namespace: System.Web.UI
 * Class:     DesignTimeParseData
 * 
 * Author:  Gaurav Vaish
 * Contact: <gvaish@iitk.ac.in>
 * Status:  ?%
 * 
 * (C) Gaurav Vaish (2001)
 */

using System;
using System.Web;

namespace System.Web.UI
{
	public sealed class DesignTimeParseData
	{
		private static bool inDesigner = false;
		
		internal static bool InDesigner
		{
			get
			{
				return inDesigner;
			}
		}
	}
}