System.Web.UI.DataSourceCacheDurationConverter.GetStandardValuesSupported C# (CSharp) 메소드

GetStandardValuesSupported() 공개 메소드

public GetStandardValuesSupported ( ITypeDescriptorContext context ) : bool
context ITypeDescriptorContext
리턴 bool
		public override bool GetStandardValuesSupported (ITypeDescriptorContext context)
		{
			return true;
		}
	}

Usage Example

		public void GetStandardValuesSupported ()
		{
			var cvt = new DataSourceCacheDurationConverter ();
			Assert.IsTrue (cvt.GetStandardValuesSupported (null), "#A1");
		}