Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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; } } } // 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. ///// 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
- ListenerElementsCollection.cs
- HelpProvider.cs
- SelectedCellsChangedEventArgs.cs
- QilScopedVisitor.cs
- Classification.cs
- XmlSchemaNotation.cs
- EndEvent.cs
- ToolStripOverflow.cs
- PrimitiveXmlSerializers.cs
- ValidatingReaderNodeData.cs
- ControlBuilder.cs
- DbBuffer.cs
- XmlUnspecifiedAttribute.cs
- OdbcError.cs
- XsltContext.cs
- SerializationFieldInfo.cs
- DeploymentSection.cs
- ConsoleKeyInfo.cs
- TransformPatternIdentifiers.cs
- CompositeDuplexBindingElement.cs
- NativeObjectSecurity.cs
- PartialCachingAttribute.cs
- WizardStepBase.cs
- XmlJsonWriter.cs
- XmlLangPropertyAttribute.cs
- DataGridViewButtonColumn.cs
- Operator.cs
- ExpressionBuilder.cs
- StackBuilderSink.cs
- Helpers.cs
- GeneratedContractType.cs
- WorkflowMarkupSerializationProvider.cs
- WebEncodingValidatorAttribute.cs
- ClientFactory.cs
- EllipseGeometry.cs
- Assert.cs
- XmlQueryType.cs
- FontCollection.cs
- ListBoxItem.cs
- Variant.cs
- QuadraticBezierSegment.cs
- DefaultWorkflowLoaderService.cs
- CodeCatchClause.cs
- FlowDocument.cs
- PolyQuadraticBezierSegmentFigureLogic.cs
- PropertyChangedEventArgs.cs
- CodeIterationStatement.cs
- ComponentEditorForm.cs
- ChannelReliableSession.cs
- Baml2006ReaderContext.cs
- StorageFunctionMapping.cs
- SqlDependencyListener.cs
- ResXResourceWriter.cs
- StrongNameMembershipCondition.cs
- ToolStripLabel.cs
- DetailsViewCommandEventArgs.cs
- GenericQueueSurrogate.cs
- ProfileSection.cs
- PropertyCondition.cs
- CompilationUnit.cs
- PackUriHelper.cs
- DataGridViewTextBoxEditingControl.cs
- ChangeConflicts.cs
- Attributes.cs
- LifetimeServices.cs
- ColumnMapProcessor.cs
- OdbcTransaction.cs
- KoreanCalendar.cs
- MutexSecurity.cs
- KeyFrames.cs
- TemplatePropertyEntry.cs
- EnumBuilder.cs
- SqlLiftWhereClauses.cs
- RootProfilePropertySettingsCollection.cs
- TouchDevice.cs
- TextSearch.cs
- FilterableData.cs
- ListSortDescriptionCollection.cs
- BaseDataList.cs
- HtmlHead.cs
- VectorCollectionConverter.cs
- XmlDictionaryWriter.cs
- HandleRef.cs
- ControlIdConverter.cs
- IisTraceWebEventProvider.cs
- NumericUpDownAcceleration.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- ProfileInfo.cs
- DockPanel.cs
- SystemFonts.cs
- ColumnMap.cs
- ZipIOLocalFileBlock.cs
- MenuStrip.cs
- ClientTargetCollection.cs
- DoubleCollection.cs
- TiffBitmapEncoder.cs
- ElementUtil.cs
- NeutralResourcesLanguageAttribute.cs
- QuestionEventArgs.cs
- RotateTransform3D.cs