Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / BooleanConverter.cs / 1305376 / 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
- FileInfo.cs
- UIElementPropertyUndoUnit.cs
- complextypematerializer.cs
- ErrorFormatterPage.cs
- XmlHierarchicalDataSourceView.cs
- WCFBuildProvider.cs
- CompositeCollectionView.cs
- ChangeConflicts.cs
- WebPartEditorApplyVerb.cs
- CodeLabeledStatement.cs
- SystemWebCachingSectionGroup.cs
- SystemMulticastIPAddressInformation.cs
- AdRotator.cs
- WebBrowserSiteBase.cs
- MiniAssembly.cs
- ItemMap.cs
- InfoCardAsymmetricCrypto.cs
- exports.cs
- GrammarBuilderRuleRef.cs
- PropertyGrid.cs
- Translator.cs
- Logging.cs
- StagingAreaInputItem.cs
- TransactionCache.cs
- BamlRecordWriter.cs
- DrawingVisual.cs
- AssociationSetEnd.cs
- CssTextWriter.cs
- Transactions.cs
- Point3DCollection.cs
- DynamicActivityXamlReader.cs
- DataServiceProcessingPipeline.cs
- HtmlInputReset.cs
- PropertyFilterAttribute.cs
- ACL.cs
- Attribute.cs
- SafeThemeHandle.cs
- TextEditorCopyPaste.cs
- Site.cs
- TextTabProperties.cs
- MailMessageEventArgs.cs
- Point4DValueSerializer.cs
- SerializationException.cs
- connectionpool.cs
- EventLogHandle.cs
- ConfigurationHelpers.cs
- ReceiveErrorHandling.cs
- HttpDigestClientCredential.cs
- TypeSystem.cs
- ScriptComponentDescriptor.cs
- ResourceFallbackManager.cs
- PageParserFilter.cs
- Tokenizer.cs
- InternalResources.cs
- ApplicationTrust.cs
- ZipIOCentralDirectoryFileHeader.cs
- ChannelDispatcher.cs
- TranslateTransform3D.cs
- PasswordDeriveBytes.cs
- ColorBlend.cs
- NativeMethods.cs
- basecomparevalidator.cs
- UIntPtr.cs
- ConnectionPointCookie.cs
- SemanticBasicElement.cs
- EnumerableRowCollection.cs
- ToolbarAUtomationPeer.cs
- Function.cs
- WindowsGraphicsCacheManager.cs
- AssemblyName.cs
- WebPartAuthorizationEventArgs.cs
- HostedElements.cs
- XmlDomTextWriter.cs
- IChannel.cs
- GatewayDefinition.cs
- PropertyEntry.cs
- Events.cs
- TypeExtensionConverter.cs
- CodeThrowExceptionStatement.cs
- TransformGroup.cs
- ADMembershipUser.cs
- MiniAssembly.cs
- AdCreatedEventArgs.cs
- SafeSystemMetrics.cs
- WaitHandleCannotBeOpenedException.cs
- TypeForwardedToAttribute.cs
- BoundsDrawingContextWalker.cs
- BackStopAuthenticationModule.cs
- EditingMode.cs
- InternalEnumValidatorAttribute.cs
- TextRunCache.cs
- DataControlFieldCollection.cs
- ReaderOutput.cs
- Section.cs
- CodeCommentStatement.cs
- WindowsGraphics.cs
- PasswordRecoveryAutoFormat.cs
- LifetimeServices.cs
- CopyEncoder.cs
- SqlDataSourceSelectingEventArgs.cs