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
- Condition.cs
- SchemaObjectWriter.cs
- ContainsRowNumberChecker.cs
- TextEncodedRawTextWriter.cs
- XslVisitor.cs
- SmtpTransport.cs
- ValidationHelper.cs
- CommandManager.cs
- DefaultMemberAttribute.cs
- PrimaryKeyTypeConverter.cs
- ExtensionElement.cs
- GridViewPageEventArgs.cs
- PageAsyncTaskManager.cs
- WindowsUserNameSecurityTokenAuthenticator.cs
- XmlChoiceIdentifierAttribute.cs
- HttpProcessUtility.cs
- NamedPermissionSet.cs
- NamespaceEmitter.cs
- AutomationPatternInfo.cs
- ChangeConflicts.cs
- DesignerSelectionListAdapter.cs
- ComponentResourceManager.cs
- WpfMemberInvoker.cs
- ParameterEditorUserControl.cs
- SafeRightsManagementPubHandle.cs
- ByteKeyFrameCollection.cs
- PropertyEntry.cs
- BinHexDecoder.cs
- ExceptionUtil.cs
- Constants.cs
- CheckBoxList.cs
- SafeArrayTypeMismatchException.cs
- UITypeEditor.cs
- ObjectDataSourceMethodEventArgs.cs
- NameValueFileSectionHandler.cs
- BamlCollectionHolder.cs
- RichTextBox.cs
- NetCodeGroup.cs
- ListViewItemMouseHoverEvent.cs
- Compiler.cs
- ColumnMapProcessor.cs
- WebEncodingValidatorAttribute.cs
- PieceDirectory.cs
- DataGridViewUtilities.cs
- ButtonFlatAdapter.cs
- _AutoWebProxyScriptEngine.cs
- FormView.cs
- RtfToXamlLexer.cs
- PenLineCapValidation.cs
- Brush.cs
- HttpResponseWrapper.cs
- CopyNamespacesAction.cs
- AttachedAnnotation.cs
- sqlstateclientmanager.cs
- EntryIndex.cs
- DataGridViewBand.cs
- XmlReader.cs
- JsonEnumDataContract.cs
- SHA256CryptoServiceProvider.cs
- ILGen.cs
- SQLInt64.cs
- DependencyObject.cs
- CodeParameterDeclarationExpression.cs
- OpenTypeCommon.cs
- WebResponse.cs
- configsystem.cs
- ProxyHelper.cs
- ColumnClickEvent.cs
- PhonemeEventArgs.cs
- ZoneMembershipCondition.cs
- Setter.cs
- ExpanderAutomationPeer.cs
- TargetControlTypeCache.cs
- Material.cs
- ManagementDateTime.cs
- Brush.cs
- TypeLibConverter.cs
- ColorEditor.cs
- PolygonHotSpot.cs
- ExtenderProviderService.cs
- InvocationExpression.cs
- BitmapImage.cs
- MouseButtonEventArgs.cs
- ServiceOperationParameter.cs
- CreateParams.cs
- XmlSchemaChoice.cs
- BridgeDataReader.cs
- GridViewCommandEventArgs.cs
- SmiMetaDataProperty.cs
- BindingListCollectionView.cs
- SharedUtils.cs
- ScriptDescriptor.cs
- XmlUnspecifiedAttribute.cs
- RuleSetDialog.cs
- IdentityVerifier.cs
- TraceHandler.cs
- XmlLoader.cs
- TypeDependencyAttribute.cs
- EdmProperty.cs
- Literal.cs