本文整理匯總了C#中System.Web.UI.DataSourceCacheDurationConverter類的典型用法代碼示例。如果您正苦於以下問題:C# DataSourceCacheDurationConverter類的具體用法?C# DataSourceCacheDurationConverter怎麽用?C# DataSourceCacheDurationConverter使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
DataSourceCacheDurationConverter類屬於System.Web.UI命名空間,在下文中一共展示了DataSourceCacheDurationConverter類的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: NonVisualControl
//引入命名空間
using System;
using System.ComponentModel;
using System.Web.UI;
[ NonVisualControl() ]
public class SomeDataSource : DataSourceControl
{
// Implementation of a custom data source control.
// The SdsCache object is an imaginary cache object
// provided for this example. It has not actual
// implementation.
private SdsCache m_sdsCache = new SdsCache();
internal SdsCache Cache {
get { return m_sdsCache; }
}
[TypeConverterAttribute(typeof(DataSourceCacheDurationConverter))]
public int CacheDuration {
get { return Cache.Duration; }
}
public DataSourceCacheExpiry CacheExpirationPolicy {
get { return Cache.Expiry; }
set { Cache.Expiry = value; }
}
public bool EnableCaching {
get { return Cache.Enabled; }
set { Cache.Enabled = value; }
}
protected override DataSourceView GetView(string viewName)
{
throw new Exception("The method or operation is not implemented.");
}
// ...
}