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
- PropertyFilterAttribute.cs
- TextAdaptor.cs
- UriSection.cs
- WmlLabelAdapter.cs
- XmlSerializationGeneratedCode.cs
- SByteStorage.cs
- IgnoreFileBuildProvider.cs
- WrappedReader.cs
- XmlUnspecifiedAttribute.cs
- Property.cs
- WindowsSlider.cs
- ExtensionWindow.cs
- GenericTypeParameterConverter.cs
- DBParameter.cs
- MachineSettingsSection.cs
- RelationshipConstraintValidator.cs
- TextElementCollection.cs
- HttpHandlersSection.cs
- WebPartConnectionCollection.cs
- Label.cs
- CodeGotoStatement.cs
- ServiceDescriptionReflector.cs
- Html32TextWriter.cs
- TemplateLookupAction.cs
- RegexReplacement.cs
- DisplayInformation.cs
- Stopwatch.cs
- PauseStoryboard.cs
- XmlNamespaceMapping.cs
- SortedList.cs
- safex509handles.cs
- MailWebEventProvider.cs
- UrlPath.cs
- RepeaterItemCollection.cs
- FormsAuthenticationConfiguration.cs
- GAC.cs
- ScriptManager.cs
- RoleProviderPrincipal.cs
- ListBase.cs
- Misc.cs
- DocumentPageViewAutomationPeer.cs
- ReverseInheritProperty.cs
- CodeVariableReferenceExpression.cs
- QilStrConcat.cs
- CodeCommentStatementCollection.cs
- StackBuilderSink.cs
- InputScopeAttribute.cs
- GestureRecognizer.cs
- ActivityTypeResolver.xaml.cs
- SqlException.cs
- Compiler.cs
- coordinator.cs
- SplashScreen.cs
- HttpServerVarsCollection.cs
- SystemIPv6InterfaceProperties.cs
- TypeTypeConverter.cs
- EntityDataSourceSelectedEventArgs.cs
- LinkTarget.cs
- SingleResultAttribute.cs
- Attributes.cs
- ApplicationBuildProvider.cs
- PrinterResolution.cs
- SettingsPropertyIsReadOnlyException.cs
- SimpleBitVector32.cs
- _LocalDataStoreMgr.cs
- AnimationStorage.cs
- SmiEventSink_Default.cs
- ExtentKey.cs
- FormViewModeEventArgs.cs
- DiffuseMaterial.cs
- MultiBindingExpression.cs
- DispatcherSynchronizationContext.cs
- StreamWriter.cs
- GeneratedContractType.cs
- RecommendedAsConfigurableAttribute.cs
- Intellisense.cs
- NamedPipeProcessProtocolHandler.cs
- DecoderFallbackWithFailureFlag.cs
- ToolStripItemDesigner.cs
- securitycriticaldataClass.cs
- SchemaElement.cs
- Timer.cs
- DataViewListener.cs
- TextShapeableCharacters.cs
- ScriptComponentDescriptor.cs
- ISCIIEncoding.cs
- RoleService.cs
- QueryCacheManager.cs
- XmlNamespaceDeclarationsAttribute.cs
- Span.cs
- SqlDataSourceView.cs
- CSharpCodeProvider.cs
- AttributeEmitter.cs
- ProbeMatchesMessage11.cs
- LicenseException.cs
- UntypedNullExpression.cs
- ModuleBuilder.cs
- EndEvent.cs
- GlobalizationSection.cs
- HitTestWithPointDrawingContextWalker.cs