Code:
/ 4.0 / 4.0 / untmp / 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. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MouseButtonEventArgs.cs
- QueryContinueDragEventArgs.cs
- TreeNodeCollection.cs
- PropertyDescriptor.cs
- InitiatorServiceModelSecurityTokenRequirement.cs
- WebPartZoneDesigner.cs
- WebPartHelpVerb.cs
- RSAPKCS1KeyExchangeFormatter.cs
- FileDialogPermission.cs
- EventLogPermissionAttribute.cs
- DataColumnSelectionConverter.cs
- ContextMarshalException.cs
- ForeignKeyFactory.cs
- FixedDocumentSequencePaginator.cs
- DataGridViewCheckBoxColumn.cs
- ScopedMessagePartSpecification.cs
- XmlILConstructAnalyzer.cs
- DbSourceParameterCollection.cs
- ExtensionFile.cs
- ErrorStyle.cs
- HttpServerUtilityBase.cs
- xmlNames.cs
- EtwTrace.cs
- Win32MouseDevice.cs
- WebPartVerbCollection.cs
- DoubleLinkListEnumerator.cs
- CapabilitiesState.cs
- HttpServerUtilityBase.cs
- Speller.cs
- ImageIndexConverter.cs
- GridViewDeletedEventArgs.cs
- SchemaConstraints.cs
- cookiecollection.cs
- GZipStream.cs
- ListControl.cs
- Claim.cs
- ScrollProperties.cs
- EndEvent.cs
- ProxyAttribute.cs
- DetailsViewDeletedEventArgs.cs
- SQLRoleProvider.cs
- UserPreferenceChangedEventArgs.cs
- SqlCacheDependencyDatabase.cs
- EncoderParameter.cs
- RootBrowserWindowAutomationPeer.cs
- ProxyWebPartManager.cs
- ConnectorDragDropGlyph.cs
- SQLDateTimeStorage.cs
- EntityModelSchemaGenerator.cs
- JsonQNameDataContract.cs
- VisualBrush.cs
- ToolboxItem.cs
- DataGridViewCellStyleBuilderDialog.cs
- WorkflowShape.cs
- Perspective.cs
- ZipArchive.cs
- StateMachineHistory.cs
- CacheMemory.cs
- MSAAEventDispatcher.cs
- WSSecureConversation.cs
- XmlEntityReference.cs
- PersistChildrenAttribute.cs
- SerializerProvider.cs
- PhysicalFontFamily.cs
- EntitySqlQueryCacheEntry.cs
- DynamicFilterExpression.cs
- ReadOnlyObservableCollection.cs
- WebBrowserHelper.cs
- DPCustomTypeDescriptor.cs
- SafeHandles.cs
- Match.cs
- DecoderExceptionFallback.cs
- RuntimeCompatibilityAttribute.cs
- CryptoApi.cs
- FtpRequestCacheValidator.cs
- EventMappingSettings.cs
- Transform.cs
- StateItem.cs
- QueueProcessor.cs
- SystemDropShadowChrome.cs
- RefreshPropertiesAttribute.cs
- ExpandCollapseProviderWrapper.cs
- querybuilder.cs
- PropertyRecord.cs
- ColumnWidthChangingEvent.cs
- OleDbErrorCollection.cs
- GroupStyle.cs
- ColumnResizeAdorner.cs
- OleDbStruct.cs
- FrameworkTextComposition.cs
- InfoCardXmlSerializer.cs
- EventRoute.cs
- WebBrowser.cs
- Util.cs
- peernodeimplementation.cs
- WSDualHttpSecurity.cs
- OutputCacheProviderCollection.cs
- GeneralTransform3DGroup.cs
- AdjustableArrowCap.cs
- Lasso.cs