Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / UI / DataSourceCacheDurationConverter.cs / 1 / 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). /// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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). /// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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
- Configuration.cs
- CultureMapper.cs
- EntityTypeEmitter.cs
- DataGridItem.cs
- PathData.cs
- Geometry.cs
- BitmapEffectInputData.cs
- KeySpline.cs
- SqlBulkCopyColumnMapping.cs
- ActiveXHelper.cs
- EventInfo.cs
- HashMembershipCondition.cs
- XmlSchemaChoice.cs
- DebugInfoGenerator.cs
- CodeAttributeDeclaration.cs
- JsonReader.cs
- TypeToken.cs
- CodeTypeParameterCollection.cs
- TextEmbeddedObject.cs
- AssertFilter.cs
- NativeStructs.cs
- documentsequencetextview.cs
- DbConnectionPoolGroupProviderInfo.cs
- KeyMatchBuilder.cs
- X509Certificate.cs
- StreamReader.cs
- StringComparer.cs
- IpcPort.cs
- UpdateRecord.cs
- shaperfactory.cs
- ReflectionUtil.cs
- ProtocolsSection.cs
- XmlSchemaSet.cs
- EntitySqlQueryState.cs
- SqlClientWrapperSmiStreamChars.cs
- SafeRightsManagementEnvironmentHandle.cs
- ProtocolsConfigurationHandler.cs
- ToolStripItemClickedEventArgs.cs
- StringUtil.cs
- SessionEndingEventArgs.cs
- SmtpSection.cs
- DataGridRowsPresenter.cs
- Matrix3D.cs
- SHA1Managed.cs
- AssemblyBuilderData.cs
- Tablet.cs
- TextEndOfLine.cs
- Rules.cs
- PointAnimationUsingKeyFrames.cs
- Internal.cs
- ToolStripDropDownClosedEventArgs.cs
- RegexWorker.cs
- SelectionItemProviderWrapper.cs
- SapiRecognizer.cs
- ListenerElementsCollection.cs
- IndicCharClassifier.cs
- FixedFindEngine.cs
- StylusPointPropertyInfoDefaults.cs
- MissingMethodException.cs
- GenericEnumerator.cs
- DesignerUtils.cs
- FileSystemWatcher.cs
- TagMapCollection.cs
- NavigationFailedEventArgs.cs
- InputLanguageEventArgs.cs
- SchemaSetCompiler.cs
- GeometryModel3D.cs
- PenThreadPool.cs
- FilteredXmlReader.cs
- CompiledXpathExpr.cs
- ServicePointManagerElement.cs
- UniqueIdentifierService.cs
- SiteMapDataSource.cs
- LabelTarget.cs
- StrokeNodeData.cs
- PersistChildrenAttribute.cs
- SharedMemory.cs
- OneWayChannelListener.cs
- CounterSampleCalculator.cs
- FrameworkReadOnlyPropertyMetadata.cs
- TranslateTransform3D.cs
- Privilege.cs
- GradientStop.cs
- CharacterShapingProperties.cs
- XmlNamespaceMappingCollection.cs
- DataListCommandEventArgs.cs
- XmlTypeAttribute.cs
- SqlAggregateChecker.cs
- CodeCommentStatementCollection.cs
- CorruptingExceptionCommon.cs
- ContextMenu.cs
- XMLSchema.cs
- RunClient.cs
- ReadOnlyObservableCollection.cs
- ExpressionBuilder.cs
- QueryStringParameter.cs
- WindowsTab.cs
- SchemaExporter.cs
- RoutedEventValueSerializer.cs
- ContainerSelectorBehavior.cs