Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- FunctionDetailsReader.cs
- XsltException.cs
- LineUtil.cs
- StrongNamePublicKeyBlob.cs
- EntityTemplateFactory.cs
- PerfService.cs
- UnknownBitmapEncoder.cs
- SimpleWorkerRequest.cs
- ReachDocumentReferenceCollectionSerializer.cs
- ScalarOps.cs
- ButtonField.cs
- StringOutput.cs
- RootDesignerSerializerAttribute.cs
- TimeoutException.cs
- PrintPageEvent.cs
- Wizard.cs
- RSAPKCS1SignatureDeformatter.cs
- HttpListener.cs
- PageHandlerFactory.cs
- DataGridTable.cs
- UInt64Storage.cs
- DateRangeEvent.cs
- DragEvent.cs
- PersonalizationEntry.cs
- XmlAttributeCollection.cs
- DataGridViewComboBoxColumn.cs
- WinHttpWebProxyFinder.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- HostedBindingBehavior.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- AttributeSetAction.cs
- ObjectKeyFrameCollection.cs
- CheckBox.cs
- XmlSchemaValidator.cs
- DropShadowEffect.cs
- CopyOnWriteList.cs
- GridSplitterAutomationPeer.cs
- HostingEnvironmentSection.cs
- OwnerDrawPropertyBag.cs
- XmlNamespaceDeclarationsAttribute.cs
- LogicalExpressionTypeConverter.cs
- ServiceOperationParameter.cs
- Profiler.cs
- StateChangeEvent.cs
- MultipartIdentifier.cs
- BooleanFacetDescriptionElement.cs
- util.cs
- OleDbRowUpdatingEvent.cs
- BitmapEffectInput.cs
- SignatureHelper.cs
- RootContext.cs
- HttpModuleActionCollection.cs
- HTMLTextWriter.cs
- DbUpdateCommandTree.cs
- UIElement.cs
- AttachedAnnotation.cs
- ClientSettingsSection.cs
- UserValidatedEventArgs.cs
- AffineTransform3D.cs
- KeyEvent.cs
- ChannelManager.cs
- OdbcInfoMessageEvent.cs
- XmlSchemaParticle.cs
- SelectionHighlightInfo.cs
- TableParagraph.cs
- PlanCompilerUtil.cs
- SocketConnection.cs
- SystemMulticastIPAddressInformation.cs
- DecimalConverter.cs
- EUCJPEncoding.cs
- Pair.cs
- DbProviderFactories.cs
- MailWebEventProvider.cs
- PngBitmapEncoder.cs
- ClickablePoint.cs
- ReadWriteSpinLock.cs
- TemplateControlBuildProvider.cs
- ToolboxCategory.cs
- SerializationInfo.cs
- TreeNodeClickEventArgs.cs
- BaseCollection.cs
- DbConnectionPoolGroupProviderInfo.cs
- AxisAngleRotation3D.cs
- ListDesigner.cs
- UserInitiatedRoutedEventPermissionAttribute.cs
- PagerSettings.cs
- TransactionProtocolConverter.cs
- SchemaComplexType.cs
- columnmapkeybuilder.cs
- AsynchronousChannel.cs
- QueryContinueDragEvent.cs
- SspiNegotiationTokenAuthenticatorState.cs
- InvokePattern.cs
- JsonQueryStringConverter.cs
- ConfigurationValue.cs
- AvTraceDetails.cs
- RenderOptions.cs
- CheckBoxList.cs
- ChangeToolStripParentVerb.cs
- KnownBoxes.cs