Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / DataSourceCacheDurationConverter.cs / 2 / 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. //------------------------------------------------------------------------------ //// 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HwndMouseInputProvider.cs
- TargetControlTypeAttribute.cs
- XmlRootAttribute.cs
- ZipIOExtraFieldPaddingElement.cs
- SimpleWebHandlerParser.cs
- ComNativeDescriptor.cs
- SqlRecordBuffer.cs
- _FtpDataStream.cs
- TimeoutHelper.cs
- QueryReaderSettings.cs
- NumericPagerField.cs
- PeerInvitationResponse.cs
- basevalidator.cs
- DockingAttribute.cs
- FeatureSupport.cs
- DataQuery.cs
- InlinedAggregationOperator.cs
- CodeNamespaceImport.cs
- GeometryGroup.cs
- WriteableBitmap.cs
- PermissionSetEnumerator.cs
- GetImportFileNameRequest.cs
- SectionVisual.cs
- EventData.cs
- DataGridRowClipboardEventArgs.cs
- QuadraticBezierSegment.cs
- ResourceAssociationTypeEnd.cs
- SoapReflectionImporter.cs
- Sql8ExpressionRewriter.cs
- hresults.cs
- DataControlFieldCell.cs
- JoinElimination.cs
- XhtmlBasicPageAdapter.cs
- AutomationElement.cs
- AssemblyBuilder.cs
- PenThread.cs
- DataListDesigner.cs
- FlowDocumentPaginator.cs
- MissingManifestResourceException.cs
- ComboBoxAutomationPeer.cs
- ToolStripDropDownItem.cs
- BeginEvent.cs
- EmbeddedObject.cs
- IdentityReference.cs
- TextViewSelectionProcessor.cs
- FillBehavior.cs
- XmlDomTextWriter.cs
- ServerIdentity.cs
- KerberosReceiverSecurityToken.cs
- TextFormatter.cs
- _ListenerRequestStream.cs
- Regex.cs
- KnownTypes.cs
- ForEach.cs
- InertiaTranslationBehavior.cs
- ScrollProviderWrapper.cs
- FamilyCollection.cs
- JsonDeserializer.cs
- XmlSchemaResource.cs
- FixedPosition.cs
- CodePageEncoding.cs
- SafeTimerHandle.cs
- WindowsSlider.cs
- FontWeight.cs
- TypeDescriptionProviderAttribute.cs
- SchemaImporter.cs
- ToolStripControlHost.cs
- ConditionalDesigner.cs
- QueryInterceptorAttribute.cs
- ControllableStoryboardAction.cs
- SchemaTypeEmitter.cs
- CacheDict.cs
- XmlnsDictionary.cs
- ModuleConfigurationInfo.cs
- WriteableOnDemandStream.cs
- EdmProviderManifest.cs
- GroupAggregateExpr.cs
- Clipboard.cs
- _SpnDictionary.cs
- DataGridPageChangedEventArgs.cs
- SiteOfOriginContainer.cs
- ReservationCollection.cs
- ForeignConstraint.cs
- MembershipUser.cs
- DataServiceClientException.cs
- DiscoveryReferences.cs
- DynamicUpdateCommand.cs
- EventLevel.cs
- OrElse.cs
- cookieexception.cs
- ListViewInsertEventArgs.cs
- odbcmetadatacolumnnames.cs
- TextCollapsingProperties.cs
- PingOptions.cs
- AsymmetricKeyExchangeFormatter.cs
- ArrayItemValue.cs
- DependencyStoreSurrogate.cs
- ADMembershipUser.cs
- OutputWindow.cs
- Int16KeyFrameCollection.cs