Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CompMod / System / ComponentModel / BooleanConverter.cs / 1 / BooleanConverter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using Microsoft.Win32; using System.Collections; using System.ComponentModel; using System.Diagnostics; using System.Globalization; using System.Runtime.InteropServices; using System.Runtime.Remoting; using System.Runtime.Serialization.Formatters; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] public class BooleanConverter : TypeConverter { private static StandardValuesCollection values; ///Provides a type converter to convert /// Boolean objects to and from various other representations. ////// public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { if (sourceType == typeof(string)) { return true; } return base.CanConvertFrom(context, sourceType); } ///Gets a value indicating whether this converter can /// convert an object in the given source type to a Boolean object using the /// specified context. ////// public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { if (value is string) { string text = ((string)value).Trim(); try { return Boolean.Parse(text); } catch (FormatException e) { throw new FormatException(SR.GetString(SR.ConvertInvalidPrimitive, (string)value, "Boolean"), e); } } return base.ConvertFrom(context, culture, value); } ///Converts the given value /// object to a Boolean object. ////// public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) { if (values == null) { values = new StandardValuesCollection(new object[] {true, false}); } return values; } ///Gets a collection of standard values /// for the Boolean data type. ////// public override bool GetStandardValuesExclusive(ITypeDescriptorContext context) { return true; } ///Gets a value indicating whether the list of standard values returned from /// ///is an exclusive list. /// public override bool GetStandardValuesSupported(ITypeDescriptorContext context) { return true; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Gets a value indicating whether this object supports a standard set of values /// that can be picked from a list. ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using Microsoft.Win32; using System.Collections; using System.ComponentModel; using System.Diagnostics; using System.Globalization; using System.Runtime.InteropServices; using System.Runtime.Remoting; using System.Runtime.Serialization.Formatters; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] public class BooleanConverter : TypeConverter { private static StandardValuesCollection values; ///Provides a type converter to convert /// Boolean objects to and from various other representations. ////// public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { if (sourceType == typeof(string)) { return true; } return base.CanConvertFrom(context, sourceType); } ///Gets a value indicating whether this converter can /// convert an object in the given source type to a Boolean object using the /// specified context. ////// public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { if (value is string) { string text = ((string)value).Trim(); try { return Boolean.Parse(text); } catch (FormatException e) { throw new FormatException(SR.GetString(SR.ConvertInvalidPrimitive, (string)value, "Boolean"), e); } } return base.ConvertFrom(context, culture, value); } ///Converts the given value /// object to a Boolean object. ////// public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) { if (values == null) { values = new StandardValuesCollection(new object[] {true, false}); } return values; } ///Gets a collection of standard values /// for the Boolean data type. ////// public override bool GetStandardValuesExclusive(ITypeDescriptorContext context) { return true; } ///Gets a value indicating whether the list of standard values returned from /// ///is an exclusive list. /// public override bool GetStandardValuesSupported(ITypeDescriptorContext context) { return true; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Gets a value indicating whether this object supports a standard set of values /// that can be picked from a list. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AssociatedControlConverter.cs
- CssTextWriter.cs
- SQLString.cs
- PropertyChangedEventManager.cs
- TrustLevel.cs
- PageCatalogPart.cs
- ByteAnimation.cs
- GroupBoxRenderer.cs
- EditorReuseAttribute.cs
- DoubleConverter.cs
- GroupBoxRenderer.cs
- PixelFormatConverter.cs
- SqlConnectionPoolGroupProviderInfo.cs
- ValueConversionAttribute.cs
- SendingRequestEventArgs.cs
- QilGenerator.cs
- PackageFilter.cs
- CodeTypeParameter.cs
- Variant.cs
- SqlVersion.cs
- TextRangeAdaptor.cs
- _SecureChannel.cs
- ClientCredentialsSecurityTokenManager.cs
- Matrix3D.cs
- ScriptControl.cs
- X509ChainElement.cs
- HScrollProperties.cs
- OperationResponse.cs
- WorkflowIdleBehavior.cs
- StreamSecurityUpgradeProvider.cs
- ToolStripSeparator.cs
- MemberHolder.cs
- MsdtcClusterUtils.cs
- SiteMapHierarchicalDataSourceView.cs
- DiagnosticTraceRecords.cs
- DataFieldEditor.cs
- GeneralTransform3DGroup.cs
- BreakRecordTable.cs
- Int32AnimationBase.cs
- CatalogPartDesigner.cs
- Point3D.cs
- HostProtectionException.cs
- TextEditorSpelling.cs
- FrameworkElement.cs
- SafeNativeMethods.cs
- WorkflowInstanceExtensionCollection.cs
- StateDesigner.LayoutSelectionGlyph.cs
- SkinBuilder.cs
- X509Certificate2Collection.cs
- MenuTracker.cs
- ComboBoxDesigner.cs
- Accessible.cs
- ProfileParameter.cs
- OperatingSystemVersionCheck.cs
- Trigger.cs
- KeyProperty.cs
- DrawToolTipEventArgs.cs
- ArrayElementGridEntry.cs
- MetaModel.cs
- GlyphRunDrawing.cs
- Types.cs
- HttpBrowserCapabilitiesBase.cs
- CompositeCollectionView.cs
- ReliableMessagingVersionConverter.cs
- SettingsPropertyNotFoundException.cs
- FrameworkReadOnlyPropertyMetadata.cs
- EntityKeyElement.cs
- ControlCodeDomSerializer.cs
- BlobPersonalizationState.cs
- ChildChangedEventArgs.cs
- ProtocolsConfiguration.cs
- ParsedAttributeCollection.cs
- SocketPermission.cs
- GenericWebPart.cs
- QueryContinueDragEvent.cs
- ColorIndependentAnimationStorage.cs
- ParseNumbers.cs
- EpmCustomContentDeSerializer.cs
- InheritedPropertyDescriptor.cs
- GlobalizationAssembly.cs
- CodeAccessPermission.cs
- WindowsGraphicsCacheManager.cs
- OleDbStruct.cs
- MouseActionConverter.cs
- DataGridViewTextBoxCell.cs
- SqlGatherConsumedAliases.cs
- QilFactory.cs
- HttpCookiesSection.cs
- SystemNetworkInterface.cs
- InputElement.cs
- ValidationSummary.cs
- RedirectionProxy.cs
- ServiceHostingEnvironment.cs
- COM2TypeInfoProcessor.cs
- IEnumerable.cs
- ZipIOCentralDirectoryBlock.cs
- InputGestureCollection.cs
- TimelineGroup.cs
- ToolStripItem.cs
- PolyBezierSegment.cs