Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / DataSourceCacheDurationConverter.cs / 1305376 / DataSourceCacheDurationConverter.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Web.UI {
using System;
using System.Collections;
using System.ComponentModel;
using System.ComponentModel.Design.Serialization;
using System.Globalization;
using System.Reflection;
using System.Security.Permissions;
using System.Web.Util;
///
/// Converts a cache duration such as an integer or the text "Infinite" to a cache duration, where "Infinite" implies zero (0).
///
public class DataSourceCacheDurationConverter : Int32Converter {
private StandardValuesCollection _values;
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) {
if (sourceType == typeof(string)) {
return true;
}
else {
return base.CanConvertFrom(context, sourceType);
}
}
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) {
if (value == null)
return null;
string stringValue = value as string;
if (stringValue != null) {
string textValue = stringValue.Trim();
if (textValue.Length == 0) {
return 0;
}
if (String.Equals(textValue, "infinite", StringComparison.OrdinalIgnoreCase)) {
return 0;
}
}
return base.ConvertFrom(context, culture, value);
}
public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) {
if (destinationType == typeof(string)) {
return true;
}
else {
return base.CanConvertTo(context, destinationType);
}
}
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) {
if ((value != null) && (destinationType == typeof(string)) && ((int)value == 0)) {
return "Infinite";
}
else {
return base.ConvertTo(context, culture, value, destinationType);
}
}
public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) {
if (_values == null) {
object[] values = new object[] { 0 };
_values = new StandardValuesCollection(values);
}
return _values;
}
public override bool GetStandardValuesExclusive(ITypeDescriptorContext context) {
return false;
}
public override bool GetStandardValuesSupported(ITypeDescriptorContext context) {
return true;
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Web.UI {
using System;
using System.Collections;
using System.ComponentModel;
using System.ComponentModel.Design.Serialization;
using System.Globalization;
using System.Reflection;
using System.Security.Permissions;
using System.Web.Util;
///
/// Converts a cache duration such as an integer or the text "Infinite" to a cache duration, where "Infinite" implies zero (0).
///
public class DataSourceCacheDurationConverter : Int32Converter {
private StandardValuesCollection _values;
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) {
if (sourceType == typeof(string)) {
return true;
}
else {
return base.CanConvertFrom(context, sourceType);
}
}
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) {
if (value == null)
return null;
string stringValue = value as string;
if (stringValue != null) {
string textValue = stringValue.Trim();
if (textValue.Length == 0) {
return 0;
}
if (String.Equals(textValue, "infinite", StringComparison.OrdinalIgnoreCase)) {
return 0;
}
}
return base.ConvertFrom(context, culture, value);
}
public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) {
if (destinationType == typeof(string)) {
return true;
}
else {
return base.CanConvertTo(context, destinationType);
}
}
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) {
if ((value != null) && (destinationType == typeof(string)) && ((int)value == 0)) {
return "Infinite";
}
else {
return base.ConvertTo(context, culture, value, destinationType);
}
}
public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) {
if (_values == null) {
object[] values = new object[] { 0 };
_values = new StandardValuesCollection(values);
}
return _values;
}
public override bool GetStandardValuesExclusive(ITypeDescriptorContext context) {
return false;
}
public override bool GetStandardValuesSupported(ITypeDescriptorContext context) {
return true;
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ReferentialConstraint.cs
- IDictionary.cs
- PackWebRequest.cs
- DiagnosticTrace.cs
- DataGridItemAutomationPeer.cs
- WsatTransactionFormatter.cs
- BeginEvent.cs
- ColorTypeConverter.cs
- PrintDialog.cs
- GridViewDeleteEventArgs.cs
- PerformanceCountersElement.cs
- SettingsBase.cs
- HtmlMeta.cs
- TreeNodeSelectionProcessor.cs
- QueryOpeningEnumerator.cs
- Graphics.cs
- DateTimeValueSerializerContext.cs
- counter.cs
- MetadataItemEmitter.cs
- ZoneButton.cs
- Brushes.cs
- ScriptIgnoreAttribute.cs
- CodeMethodInvokeExpression.cs
- CompatibleComparer.cs
- __FastResourceComparer.cs
- OdbcDataAdapter.cs
- dataSvcMapFileLoader.cs
- EditorZone.cs
- FontWeights.cs
- DataViewManager.cs
- CollectionBase.cs
- DesignerAutoFormat.cs
- Helper.cs
- PropertyDescriptorGridEntry.cs
- BitConverter.cs
- DesignerVerb.cs
- XmlHierarchicalEnumerable.cs
- EntityDataSourceContextCreatingEventArgs.cs
- XmlSchemaType.cs
- MimeBasePart.cs
- SurrogateEncoder.cs
- PersistencePipeline.cs
- WebCategoryAttribute.cs
- SettingsSavedEventArgs.cs
- HtmlButton.cs
- DiscoveryClientBindingElement.cs
- CodeTryCatchFinallyStatement.cs
- ValidatingCollection.cs
- _IPv4Address.cs
- SynchronizedInputPattern.cs
- ArrayExtension.cs
- SqlFacetAttribute.cs
- DBConnectionString.cs
- CacheOutputQuery.cs
- XmlLinkedNode.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- DrawingAttributes.cs
- TrackPointCollection.cs
- Light.cs
- GroupStyle.cs
- ScriptingWebServicesSectionGroup.cs
- XmlSchemaInfo.cs
- CultureInfo.cs
- CodeTypeReferenceExpression.cs
- ServicesExceptionNotHandledEventArgs.cs
- LogPolicy.cs
- MissingMemberException.cs
- StatusStrip.cs
- StorageFunctionMapping.cs
- LogReserveAndAppendState.cs
- CompilerResults.cs
- PropertyDescriptor.cs
- ProfileSettings.cs
- RawMouseInputReport.cs
- WebServiceReceiveDesigner.cs
- FontEmbeddingManager.cs
- ScriptMethodAttribute.cs
- PropertyEmitter.cs
- MessageQueuePermissionEntry.cs
- TextFormatter.cs
- SoapMessage.cs
- BindingBase.cs
- ServerTooBusyException.cs
- FontUnit.cs
- EntityProxyFactory.cs
- XmlSchemaComplexContentRestriction.cs
- CssStyleCollection.cs
- EntityViewGenerationAttribute.cs
- TransformedBitmap.cs
- CancellationState.cs
- ToolStripDropDownClosingEventArgs.cs
- EnumerableRowCollection.cs
- TrustManagerPromptUI.cs
- PropertyMap.cs
- HashCodeCombiner.cs
- MemoryRecordBuffer.cs
- BrowserInteropHelper.cs
- ConditionValidator.cs
- Token.cs
- XmlQualifiedName.cs