Code:
/ DotNET / DotNET / 8.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
- EventLogPermissionAttribute.cs
- DefaultTraceListener.cs
- UriTemplate.cs
- PropertyPath.cs
- QueryStringParameter.cs
- SqlLiftIndependentRowExpressions.cs
- Win32.cs
- XmlSchema.cs
- StateBag.cs
- CipherData.cs
- CollectionsUtil.cs
- HttpApplicationFactory.cs
- TouchDevice.cs
- PaginationProgressEventArgs.cs
- RuntimeCompatibilityAttribute.cs
- SQLSingle.cs
- AttributeCollection.cs
- Animatable.cs
- ContextItemManager.cs
- BulletChrome.cs
- OdbcFactory.cs
- Choices.cs
- ImageConverter.cs
- LicenseManager.cs
- CodeSubDirectory.cs
- KeyPullup.cs
- QueryCorrelationInitializer.cs
- Convert.cs
- SignatureResourcePool.cs
- MimeFormatExtensions.cs
- XmlAttributeOverrides.cs
- ProtocolElement.cs
- IsolatedStorageException.cs
- InputLanguage.cs
- CheckBoxAutomationPeer.cs
- IdentityModelDictionary.cs
- Scheduler.cs
- TimeSpanSecondsConverter.cs
- XPathParser.cs
- formatter.cs
- TaskbarItemInfo.cs
- EventPropertyMap.cs
- TableRow.cs
- PtsCache.cs
- ExpressionBindingCollection.cs
- NodeFunctions.cs
- FastEncoder.cs
- DoubleMinMaxAggregationOperator.cs
- PickDesigner.xaml.cs
- ClientConfigurationSystem.cs
- RecordConverter.cs
- ParserContext.cs
- HandleRef.cs
- ScrollChangedEventArgs.cs
- LinkButton.cs
- VerticalAlignConverter.cs
- TableDetailsRow.cs
- ErrorTableItemStyle.cs
- TripleDESCryptoServiceProvider.cs
- PageBuildProvider.cs
- ZipIORawDataFileBlock.cs
- SymbolType.cs
- UpdateCommand.cs
- InternalControlCollection.cs
- ConsoleTraceListener.cs
- LassoHelper.cs
- NullReferenceException.cs
- ServiceBuildProvider.cs
- DisplayInformation.cs
- BinaryWriter.cs
- StatusStrip.cs
- __Filters.cs
- FlowDecisionDesigner.xaml.cs
- TraceContext.cs
- XmlCustomFormatter.cs
- Padding.cs
- PropertyInformationCollection.cs
- SafeReadContext.cs
- RequestCacheValidator.cs
- NumericUpDownAccelerationCollection.cs
- ListMarkerSourceInfo.cs
- NotifyParentPropertyAttribute.cs
- RegexParser.cs
- _SecureChannel.cs
- SystemTcpConnection.cs
- ObjectViewListener.cs
- PackWebRequest.cs
- LoginCancelEventArgs.cs
- CompileLiteralTextParser.cs
- ConfigurationLockCollection.cs
- ManagedIStream.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- SuppressMergeCheckAttribute.cs
- TreeNodeCollection.cs
- FilterElement.cs
- Preprocessor.cs
- XmlDataProvider.cs
- SizeF.cs
- WmlPhoneCallAdapter.cs
- MobileSysDescriptionAttribute.cs