Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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; } } }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
- AppDomainFactory.cs
- SqlTypeConverter.cs
- RSAPKCS1KeyExchangeFormatter.cs
- SevenBitStream.cs
- DropAnimation.xaml.cs
- Missing.cs
- Line.cs
- XmlAttributeCache.cs
- LongMinMaxAggregationOperator.cs
- EmbeddedMailObjectsCollection.cs
- PageTheme.cs
- ContentWrapperAttribute.cs
- BitmapEffectrendercontext.cs
- GZipUtils.cs
- safelinkcollection.cs
- WebPartZoneCollection.cs
- ConditionalWeakTable.cs
- Site.cs
- GridViewColumnCollectionChangedEventArgs.cs
- SymLanguageType.cs
- CodeActivityMetadata.cs
- WebDescriptionAttribute.cs
- Facet.cs
- MailHeaderInfo.cs
- XPathBinder.cs
- MetafileHeaderWmf.cs
- ImageFormat.cs
- regiisutil.cs
- AuthenticationException.cs
- ExceptionUtil.cs
- NameValuePermission.cs
- RawMouseInputReport.cs
- WorkingDirectoryEditor.cs
- GenericTypeParameterBuilder.cs
- CommandSet.cs
- FocusManager.cs
- clipboard.cs
- ClientApiGenerator.cs
- DesignerActionItem.cs
- _SslStream.cs
- DbDataReader.cs
- DataGridViewRowStateChangedEventArgs.cs
- RequestCacheEntry.cs
- ReliableOutputSessionChannel.cs
- DesignTimeTemplateParser.cs
- SecurityPermission.cs
- MultipartIdentifier.cs
- ServiceBehaviorElementCollection.cs
- RuleInfoComparer.cs
- HtmlMeta.cs
- SchemaInfo.cs
- CaseInsensitiveComparer.cs
- WebSysDisplayNameAttribute.cs
- PathFigureCollectionConverter.cs
- ScriptResourceAttribute.cs
- RolePrincipal.cs
- XmlObjectSerializerWriteContextComplex.cs
- KeyTime.cs
- Clause.cs
- ConfigXmlElement.cs
- PathParser.cs
- RowToParametersTransformer.cs
- AssemblyHash.cs
- ToolStripContentPanelRenderEventArgs.cs
- ConditionalDesigner.cs
- CodeVariableReferenceExpression.cs
- SuspendDesigner.cs
- ProfileGroupSettings.cs
- CodeAssignStatement.cs
- XmlCountingReader.cs
- ListBindingConverter.cs
- DomNameTable.cs
- SoapSchemaMember.cs
- ProgressChangedEventArgs.cs
- KeyboardDevice.cs
- SQLInt64Storage.cs
- CodeMemberProperty.cs
- DataBinder.cs
- LinkLabelLinkClickedEvent.cs
- ScrollPatternIdentifiers.cs
- TableLayoutSettings.cs
- ParserContext.cs
- DbConnectionStringBuilder.cs
- BitmapCodecInfo.cs
- ChangeInterceptorAttribute.cs
- AnimationStorage.cs
- NullRuntimeConfig.cs
- GregorianCalendarHelper.cs
- ControlPropertyNameConverter.cs
- RegistrationServices.cs
- ListItem.cs
- Vector3DConverter.cs
- Label.cs
- HttpConfigurationContext.cs
- SafeEventLogReadHandle.cs
- OleDbErrorCollection.cs
- OdbcConnectionStringbuilder.cs
- MSAANativeProvider.cs
- COM2Enum.cs
- LiteralDesigner.cs