Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / MultilineStringConverter.cs / 1305376 / MultilineStringConverter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel { using System.ComponentModel; using System.ComponentModel.Design; using System.Diagnostics; using System.Globalization; using System.Security.Permissions; ////// Provides a type converter to convert multiline strings to a simple string. /// [HostProtection(SharedState = true)] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly")] public class MultilineStringConverter : TypeConverter { ////// Converts the given value object to the specified destination type. /// public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == null) { throw new ArgumentNullException("destinationType"); } if (destinationType == typeof(string)) { if (value is string) { return SR.GetString(SR.MultilineStringConverterText); } } return base.ConvertTo(context, culture, value, destinationType); } ////// Gets a collection of properties for the type of array specified by the value /// parameter using the specified context and attributes. /// public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) { return null; } ////// Gets a value indicating whether this object supports properties. /// public override bool GetPropertiesSupported(ITypeDescriptorContext context) { return false; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel { using System.ComponentModel; using System.ComponentModel.Design; using System.Diagnostics; using System.Globalization; using System.Security.Permissions; ////// Provides a type converter to convert multiline strings to a simple string. /// [HostProtection(SharedState = true)] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly")] public class MultilineStringConverter : TypeConverter { ////// Converts the given value object to the specified destination type. /// public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == null) { throw new ArgumentNullException("destinationType"); } if (destinationType == typeof(string)) { if (value is string) { return SR.GetString(SR.MultilineStringConverterText); } } return base.ConvertTo(context, culture, value, destinationType); } ////// Gets a collection of properties for the type of array specified by the value /// parameter using the specified context and attributes. /// public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) { return null; } ////// Gets a value indicating whether this object supports properties. /// public override bool GetPropertiesSupported(ITypeDescriptorContext context) { return false; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DuplicateWaitObjectException.cs
- EventProviderBase.cs
- MbpInfo.cs
- Camera.cs
- XmlEnumAttribute.cs
- C14NUtil.cs
- TreeWalkHelper.cs
- TableItemStyle.cs
- NetTcpBindingCollectionElement.cs
- RegexRunner.cs
- Vector3DValueSerializer.cs
- HostedAspNetEnvironment.cs
- SupportedAddressingMode.cs
- WebPartMovingEventArgs.cs
- BuildManager.cs
- DelayedRegex.cs
- DateTimePicker.cs
- EntityClientCacheEntry.cs
- HtmlToClrEventProxy.cs
- ContentOnlyMessage.cs
- ZoneButton.cs
- TypeForwardedFromAttribute.cs
- HtmlLink.cs
- AssemblyUtil.cs
- Enum.cs
- WebPartConnectionsCancelEventArgs.cs
- ClientRuntime.cs
- PathFigure.cs
- Window.cs
- QueryStringHandler.cs
- DeliveryStrategy.cs
- PseudoWebRequest.cs
- UpDownEvent.cs
- ITreeGenerator.cs
- SQLInt64Storage.cs
- exports.cs
- TrackingProfile.cs
- mediaclock.cs
- PropertyInformationCollection.cs
- FlowDecisionDesigner.xaml.cs
- LineGeometry.cs
- DiagnosticTraceSource.cs
- RuleValidation.cs
- SqlCommandBuilder.cs
- securitycriticaldataformultiplegetandset.cs
- MD5.cs
- DataShape.cs
- GACIdentityPermission.cs
- GenericIdentity.cs
- HtmlShimManager.cs
- DependencyObjectProvider.cs
- BuildProvidersCompiler.cs
- ConfigurationElementCollection.cs
- Rotation3DKeyFrameCollection.cs
- SystemNetworkInterface.cs
- RectangleHotSpot.cs
- LockedBorderGlyph.cs
- DecoderNLS.cs
- CreateUserWizardStep.cs
- TreeNodeConverter.cs
- CollectionViewSource.cs
- FormViewPageEventArgs.cs
- DataStorage.cs
- StorageComplexTypeMapping.cs
- DataBindingCollectionEditor.cs
- DescendantOverDescendantQuery.cs
- PreservationFileWriter.cs
- ThicknessConverter.cs
- SHA1.cs
- UInt16Converter.cs
- ActivityWithResultValueSerializer.cs
- NamespaceInfo.cs
- DesignerView.cs
- TileBrush.cs
- BitmapDownload.cs
- ShadowGlyph.cs
- EndpointInfoCollection.cs
- BaseUriHelper.cs
- MetaForeignKeyColumn.cs
- Publisher.cs
- GridViewPageEventArgs.cs
- TableItemStyle.cs
- BitmapEffectGroup.cs
- datacache.cs
- COM2ComponentEditor.cs
- LocatorPartList.cs
- TrailingSpaceComparer.cs
- CheckedListBox.cs
- DocumentPageView.cs
- SQLGuid.cs
- CodeArrayIndexerExpression.cs
- LoginName.cs
- ResourceCategoryAttribute.cs
- XmlSchemaValidator.cs
- EmptyEnumerator.cs
- XPathNavigatorException.cs
- DataList.cs
- MouseActionConverter.cs
- CompiledIdentityConstraint.cs
- SymbolTable.cs