Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Core / CSharp / System / Windows / CultureInfoConverter.cs / 1 / CultureInfoConverter.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: CultureInfoConverter.cs // // Description: Contains the CultureInfoIetfLanguageTagConverter: TypeConverter for the CultureInfo class. // // History: // 01/12/2005 : niklasb - Initial implementation // 02/10/2006 : niklasb - Renamed from CulutureInfoConveter to CultureInfoIetfLanguageTagConverter // //--------------------------------------------------------------------------- using System; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Diagnostics; using System.Globalization; using System.Reflection; using System.Security; namespace System.Windows { ////// CultureInfoIetfLanguageTagConverter - Type converter for converting instances of other types to and from CultureInfo. /// ////// This class differs in two ways from System.ComponentModel.CultureInfoConverter, the default type converter /// for the CultureInfo class. First, it uses a string representation based on the IetfLanguageTag property /// rather than the Name property (i.e., RFC 3066 rather than RFC 1766). Second, when converting from a string, /// the properties of the resulting CultureInfo object depend only on the string and not on user overrides set /// in Control Panel. This makes it possible to create documents the appearance of which do not depend on /// local settings. /// public class CultureInfoIetfLanguageTagConverter : TypeConverter { //------------------------------------------------------------------- // // Public Methods // //------------------------------------------------------------------- #region Public Methods ////// CanConvertFrom - Returns whether or not this class can convert from a given type. /// ////// bool - True if this converter can convert from the provided type, false if not. /// /// The ITypeDescriptorContext for this call. /// The Type being queried for support. public override bool CanConvertFrom(ITypeDescriptorContext typeDescriptorContext, Type sourceType) { // We can only handle strings. return sourceType == typeof(string); } ////// CanConvertTo - Returns whether or not this class can convert to a given type. /// ////// bool - True if this converter can convert to the provided type, false if not. /// /// The ITypeDescriptorContext for this call. /// The Type being queried for support. public override bool CanConvertTo(ITypeDescriptorContext typeDescriptorContext, Type destinationType) { // We can convert to an InstanceDescriptor or to a string. return destinationType == typeof(InstanceDescriptor) || destinationType == typeof(string); } ////// ConvertFrom - Attempt to convert to a CultureInfo from the given object /// ////// A CultureInfo object based on the specified culture name. /// ////// An ArgumentNullException is thrown if the example object is null. /// ////// An ArgumentException is thrown if the example object is not null and is not a valid type /// which can be converted to a CultureInfo. /// /// The ITypeDescriptorContext for this call. /// The CultureInfo which is respected when converting. /// The object to convert to a CultureInfo. public override object ConvertFrom(ITypeDescriptorContext typeDescriptorContext, CultureInfo cultureInfo, object source) { string cultureName = source as string; if (cultureName != null) { return CultureInfo.GetCultureInfoByIetfLanguageTag(cultureName); } throw GetConvertFromException(source); } ////// ConvertTo - Attempt to convert a CultureInfo to the given type /// ////// The object which was constructed. /// ////// An ArgumentNullException is thrown if the example object is null. /// ////// An ArgumentException is thrown if the example object is not null and is not a CultureInfo, /// or if the destinationType isn't one of the valid destination types. /// /// The ITypeDescriptorContext for this call. /// The CultureInfo which is respected when converting. /// The double to convert. /// The type to which to convert the CultureInfo. ////// Critical: calls InstanceDescriptor ctor which LinkDemands /// PublicOK: can only make an InstanceDescriptor for CultureInfo.GetCultureInfo, not an arbitrary class/method /// [SecurityCritical] public override object ConvertTo(ITypeDescriptorContext typeDescriptorContext, CultureInfo cultureInfo, object value, Type destinationType) { if (destinationType == null) { throw new ArgumentNullException("destinationType"); } CultureInfo culture = value as CultureInfo; if (culture != null) { if (destinationType == typeof(string)) { return culture.IetfLanguageTag; } else if (destinationType == typeof(InstanceDescriptor)) { MethodInfo method = typeof(CultureInfo).GetMethod( "GetCultureInfo", BindingFlags.Static | BindingFlags.InvokeMethod | BindingFlags.Public, null, // use default binder new Type[] { typeof(string) }, null // default binder doesn't use parameter modifiers ); return new InstanceDescriptor(method, new object[] { culture.Name }); } } throw GetConvertToException(value, destinationType); } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: CultureInfoConverter.cs // // Description: Contains the CultureInfoIetfLanguageTagConverter: TypeConverter for the CultureInfo class. // // History: // 01/12/2005 : niklasb - Initial implementation // 02/10/2006 : niklasb - Renamed from CulutureInfoConveter to CultureInfoIetfLanguageTagConverter // //--------------------------------------------------------------------------- using System; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Diagnostics; using System.Globalization; using System.Reflection; using System.Security; namespace System.Windows { ////// CultureInfoIetfLanguageTagConverter - Type converter for converting instances of other types to and from CultureInfo. /// ////// This class differs in two ways from System.ComponentModel.CultureInfoConverter, the default type converter /// for the CultureInfo class. First, it uses a string representation based on the IetfLanguageTag property /// rather than the Name property (i.e., RFC 3066 rather than RFC 1766). Second, when converting from a string, /// the properties of the resulting CultureInfo object depend only on the string and not on user overrides set /// in Control Panel. This makes it possible to create documents the appearance of which do not depend on /// local settings. /// public class CultureInfoIetfLanguageTagConverter : TypeConverter { //------------------------------------------------------------------- // // Public Methods // //------------------------------------------------------------------- #region Public Methods ////// CanConvertFrom - Returns whether or not this class can convert from a given type. /// ////// bool - True if this converter can convert from the provided type, false if not. /// /// The ITypeDescriptorContext for this call. /// The Type being queried for support. public override bool CanConvertFrom(ITypeDescriptorContext typeDescriptorContext, Type sourceType) { // We can only handle strings. return sourceType == typeof(string); } ////// CanConvertTo - Returns whether or not this class can convert to a given type. /// ////// bool - True if this converter can convert to the provided type, false if not. /// /// The ITypeDescriptorContext for this call. /// The Type being queried for support. public override bool CanConvertTo(ITypeDescriptorContext typeDescriptorContext, Type destinationType) { // We can convert to an InstanceDescriptor or to a string. return destinationType == typeof(InstanceDescriptor) || destinationType == typeof(string); } ////// ConvertFrom - Attempt to convert to a CultureInfo from the given object /// ////// A CultureInfo object based on the specified culture name. /// ////// An ArgumentNullException is thrown if the example object is null. /// ////// An ArgumentException is thrown if the example object is not null and is not a valid type /// which can be converted to a CultureInfo. /// /// The ITypeDescriptorContext for this call. /// The CultureInfo which is respected when converting. /// The object to convert to a CultureInfo. public override object ConvertFrom(ITypeDescriptorContext typeDescriptorContext, CultureInfo cultureInfo, object source) { string cultureName = source as string; if (cultureName != null) { return CultureInfo.GetCultureInfoByIetfLanguageTag(cultureName); } throw GetConvertFromException(source); } ////// ConvertTo - Attempt to convert a CultureInfo to the given type /// ////// The object which was constructed. /// ////// An ArgumentNullException is thrown if the example object is null. /// ////// An ArgumentException is thrown if the example object is not null and is not a CultureInfo, /// or if the destinationType isn't one of the valid destination types. /// /// The ITypeDescriptorContext for this call. /// The CultureInfo which is respected when converting. /// The double to convert. /// The type to which to convert the CultureInfo. ////// Critical: calls InstanceDescriptor ctor which LinkDemands /// PublicOK: can only make an InstanceDescriptor for CultureInfo.GetCultureInfo, not an arbitrary class/method /// [SecurityCritical] public override object ConvertTo(ITypeDescriptorContext typeDescriptorContext, CultureInfo cultureInfo, object value, Type destinationType) { if (destinationType == null) { throw new ArgumentNullException("destinationType"); } CultureInfo culture = value as CultureInfo; if (culture != null) { if (destinationType == typeof(string)) { return culture.IetfLanguageTag; } else if (destinationType == typeof(InstanceDescriptor)) { MethodInfo method = typeof(CultureInfo).GetMethod( "GetCultureInfo", BindingFlags.Static | BindingFlags.InvokeMethod | BindingFlags.Public, null, // use default binder new Type[] { typeof(string) }, null // default binder doesn't use parameter modifiers ); return new InstanceDescriptor(method, new object[] { culture.Name }); } } throw GetConvertToException(value, destinationType); } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ObjectParameter.cs
- ApplicationProxyInternal.cs
- SqlBooleanizer.cs
- CursorInteropHelper.cs
- ModuleBuilder.cs
- SmtpFailedRecipientsException.cs
- XmlWriter.cs
- DataControlFieldCell.cs
- FieldNameLookup.cs
- ArrangedElement.cs
- FilteredSchemaElementLookUpTable.cs
- Cursors.cs
- RecordsAffectedEventArgs.cs
- RequestCache.cs
- PreloadedPackages.cs
- SettingsSavedEventArgs.cs
- XPathSelectionIterator.cs
- OpacityConverter.cs
- AssertHelper.cs
- IpcClientManager.cs
- ObjectDataSourceStatusEventArgs.cs
- RemotingConfiguration.cs
- ClassHandlersStore.cs
- TextDocumentView.cs
- StaticResourceExtension.cs
- UIElement3DAutomationPeer.cs
- Transform3D.cs
- IdentitySection.cs
- GridItemCollection.cs
- Activity.cs
- StrokeNodeOperations2.cs
- SqlAliaser.cs
- ParseHttpDate.cs
- GestureRecognitionResult.cs
- FileDialogCustomPlacesCollection.cs
- VisualTarget.cs
- RegexCaptureCollection.cs
- TextComposition.cs
- ViewDesigner.cs
- remotingproxy.cs
- Debug.cs
- Authorization.cs
- SwitchElementsCollection.cs
- PropertyDescriptor.cs
- HelloMessageCD1.cs
- SecUtil.cs
- EnvelopedPkcs7.cs
- PatternMatcher.cs
- SymLanguageType.cs
- ActivityXRefConverter.cs
- WorkflowRuntimeBehavior.cs
- ColumnMapVisitor.cs
- XmlTextReader.cs
- CompiledXpathExpr.cs
- DuplicateMessageDetector.cs
- DataGridRow.cs
- Vector.cs
- WorkerRequest.cs
- HMACSHA256.cs
- MasterPageCodeDomTreeGenerator.cs
- KeyedHashAlgorithm.cs
- XmlProcessingInstruction.cs
- BrowserTree.cs
- TextServicesHost.cs
- SQLCharsStorage.cs
- ExtenderControl.cs
- BitmapFrameDecode.cs
- WebContext.cs
- ReadingWritingEntityEventArgs.cs
- AppDomain.cs
- AutoResizedEvent.cs
- BehaviorService.cs
- RestHandlerFactory.cs
- Point3DAnimation.cs
- AuthenticationModuleElementCollection.cs
- IntellisenseTextBox.cs
- CapabilitiesUse.cs
- WsdlInspector.cs
- DataGridTable.cs
- RightsManagementEncryptionTransform.cs
- SessionStateSection.cs
- ArrowControl.xaml.cs
- SecureEnvironment.cs
- SafeProcessHandle.cs
- MasterPageCodeDomTreeGenerator.cs
- StringFormat.cs
- DateTimeFormat.cs
- Errors.cs
- XmlSerializerAssemblyAttribute.cs
- WebMessageFormatHelper.cs
- CodeAttributeDeclarationCollection.cs
- GridViewSortEventArgs.cs
- DomNameTable.cs
- NoClickablePointException.cs
- CompositeScriptReferenceEventArgs.cs
- RemotingConfiguration.cs
- RTTrackingProfile.cs
- WSSecurityPolicy12.cs
- LayoutTable.cs
- SessionStateSection.cs