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
- ObjectListCommandEventArgs.cs
- ImageSourceConverter.cs
- AccessDataSourceView.cs
- SymmetricKey.cs
- EditorZoneBase.cs
- MaterialCollection.cs
- HttpConfigurationContext.cs
- VisualBasicSettingsHandler.cs
- ElementsClipboardData.cs
- FormViewUpdateEventArgs.cs
- Triplet.cs
- DetailsViewInsertEventArgs.cs
- FragmentNavigationEventArgs.cs
- SchemaNamespaceManager.cs
- BlockUIContainer.cs
- SqlDeflator.cs
- ImageAutomationPeer.cs
- DataControlFieldCollection.cs
- BindToObject.cs
- OracleCommandSet.cs
- SqlBooleanizer.cs
- List.cs
- RectConverter.cs
- Table.cs
- SourceLineInfo.cs
- ApplicationContext.cs
- RegexRunnerFactory.cs
- ProcessThread.cs
- FreezableCollection.cs
- SessionPageStateSection.cs
- DynamicDataRouteHandler.cs
- ElementAction.cs
- DesignRelationCollection.cs
- MouseButtonEventArgs.cs
- ComponentCommands.cs
- NavigationHelper.cs
- ComponentEditorForm.cs
- CopyAttributesAction.cs
- MdiWindowListItemConverter.cs
- COAUTHINFO.cs
- ColumnResizeUndoUnit.cs
- TextElementCollectionHelper.cs
- TextServicesCompartmentEventSink.cs
- Speller.cs
- DataConnectionHelper.cs
- XmlAnyAttributeAttribute.cs
- MetadataSource.cs
- ExplicitDiscriminatorMap.cs
- BitmapDownload.cs
- SynchronousChannelMergeEnumerator.cs
- CookieHandler.cs
- CalloutQueueItem.cs
- AttributeCollection.cs
- GacUtil.cs
- ByeMessageApril2005.cs
- GenericAuthenticationEventArgs.cs
- OdbcConnectionStringbuilder.cs
- SiteMapDataSourceView.cs
- SqlConnectionPoolGroupProviderInfo.cs
- SoundPlayerAction.cs
- RowParagraph.cs
- XmlCollation.cs
- ArrayWithOffset.cs
- ActivityTypeResolver.xaml.cs
- NumberFormatter.cs
- URI.cs
- CryptoHelper.cs
- UnknownBitmapEncoder.cs
- LinqDataSourceSelectEventArgs.cs
- FolderNameEditor.cs
- GroupBoxAutomationPeer.cs
- RightsManagementProvider.cs
- OrthographicCamera.cs
- StylusPlugin.cs
- DataContext.cs
- MachineKeySection.cs
- PageContentAsyncResult.cs
- MessageDecoder.cs
- TableRowGroup.cs
- TrackBarRenderer.cs
- SkinBuilder.cs
- TrustLevel.cs
- ObfuscationAttribute.cs
- DataRow.cs
- AppearanceEditorPart.cs
- StringStorage.cs
- IntSecurity.cs
- OdbcException.cs
- CalendarTable.cs
- DelegateInArgument.cs
- _FixedSizeReader.cs
- ApplicationHost.cs
- filewebresponse.cs
- ControlSerializer.cs
- ArgIterator.cs
- SudsWriter.cs
- LinkClickEvent.cs
- XmlElementAttribute.cs
- XmlArrayAttribute.cs
- WS2007HttpBindingCollectionElement.cs