Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / ComponentModel / CharConverter.cs / 1 / CharConverter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using Microsoft.Win32; using System.ComponentModel; using System.Diagnostics; using System.Globalization; using System.Runtime.Serialization.Formatters; using System.Runtime.Remoting; using System.Runtime.InteropServices; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] public class CharConverter : TypeConverter { ///Provides /// a type converter to convert Unicode /// character 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 Unicode character object using /// the specified context. ////// Converts the given object to another type. /// public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == typeof(string) && value is char) { if ((char)value == (char)0) { return ""; } } return base.ConvertTo(context, culture, value, destinationType); } ////// public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { if (value is string) { string text = (string)value; if (text.Length > 1) { text = text.Trim(); } if (text != null && text.Length > 0) { if (text.Length != 1) { throw new FormatException(SR.GetString(SR.ConvertInvalidPrimitive, text, "Char")); } return text[0]; } return '\0'; } return base.ConvertFrom(context, culture, value); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Converts the given object to a Unicode character object. ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using Microsoft.Win32; using System.ComponentModel; using System.Diagnostics; using System.Globalization; using System.Runtime.Serialization.Formatters; using System.Runtime.Remoting; using System.Runtime.InteropServices; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] public class CharConverter : TypeConverter { ///Provides /// a type converter to convert Unicode /// character 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 Unicode character object using /// the specified context. ////// Converts the given object to another type. /// public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == typeof(string) && value is char) { if ((char)value == (char)0) { return ""; } } return base.ConvertTo(context, culture, value, destinationType); } ////// public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { if (value is string) { string text = (string)value; if (text.Length > 1) { text = text.Trim(); } if (text != null && text.Length > 0) { if (text.Length != 1) { throw new FormatException(SR.GetString(SR.ConvertInvalidPrimitive, text, "Char")); } return text[0]; } return '\0'; } return base.ConvertFrom(context, culture, value); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Converts the given object to a Unicode character object. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- NativeMethodsCLR.cs
- FirstQueryOperator.cs
- CustomPopupPlacement.cs
- StylusPointPropertyUnit.cs
- GeneralTransform2DTo3D.cs
- IxmlLineInfo.cs
- HttpListenerException.cs
- HtmlSelect.cs
- WebRequestModuleElementCollection.cs
- SqlError.cs
- CodeMemberProperty.cs
- TextRangeBase.cs
- DBConnectionString.cs
- DataSetSchema.cs
- HtmlButton.cs
- Synchronization.cs
- RbTree.cs
- FileDialogPermission.cs
- Variant.cs
- RuntimeIdentifierPropertyAttribute.cs
- RemoteWebConfigurationHostStream.cs
- ServiceNameElement.cs
- FontNameConverter.cs
- WsatServiceCertificate.cs
- URIFormatException.cs
- FileNotFoundException.cs
- ProxyFragment.cs
- DynamicResourceExtension.cs
- DataStorage.cs
- FixedLineResult.cs
- CaseInsensitiveHashCodeProvider.cs
- SplitterEvent.cs
- WebScriptMetadataInstanceContextProvider.cs
- SecureConversationServiceElement.cs
- GPStream.cs
- ControlBindingsCollection.cs
- WindowsUserNameSecurityTokenAuthenticator.cs
- SimplePropertyEntry.cs
- OSFeature.cs
- Tokenizer.cs
- AppDomainInfo.cs
- Focus.cs
- DataGridItemEventArgs.cs
- ReferenceConverter.cs
- ListBoxAutomationPeer.cs
- StringBlob.cs
- GenericPrincipal.cs
- InstanceDataCollection.cs
- IisTraceListener.cs
- AutoCompleteStringCollection.cs
- XmlStreamStore.cs
- XmlElementCollection.cs
- CharacterString.cs
- ProfessionalColorTable.cs
- DateTimeOffset.cs
- HttpDateParse.cs
- SearchForVirtualItemEventArgs.cs
- WebContext.cs
- ClientConfigPaths.cs
- CellTreeNodeVisitors.cs
- AspNetSynchronizationContext.cs
- _HeaderInfoTable.cs
- InputScopeAttribute.cs
- DuplicateWaitObjectException.cs
- CharacterMetricsDictionary.cs
- SplitterCancelEvent.cs
- InputScopeAttribute.cs
- EndOfStreamException.cs
- WeakEventManager.cs
- CorrelationKey.cs
- NamespaceCollection.cs
- Matrix3DConverter.cs
- IdnElement.cs
- ObjectDataSourceFilteringEventArgs.cs
- StringPropertyBuilder.cs
- ToolBarDesigner.cs
- RtfToXamlLexer.cs
- WarningException.cs
- StatusStrip.cs
- EntityContainer.cs
- ProfileManager.cs
- Errors.cs
- PrincipalPermission.cs
- FullTextState.cs
- ViewCellSlot.cs
- VSWCFServiceContractGenerator.cs
- ByteStack.cs
- SspiSecurityTokenProvider.cs
- UpdateTranslator.cs
- PolicyDesigner.cs
- HttpRequest.cs
- DefaultValueTypeConverter.cs
- DeobfuscatingStream.cs
- WebPartTracker.cs
- StatusBar.cs
- Bezier.cs
- NamespaceMapping.cs
- HasCopySemanticsAttribute.cs
- DataGridViewButtonColumn.cs
- BlockCollection.cs