Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / ArrayConverter.cs / 1305376 / ArrayConverter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using Microsoft.Win32; using System.Collections; 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 ArrayConverter : CollectionConverter { ///Provides a type converter to convert ////// objects to and from various other representations. /// 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 Array) { return SR.GetString(SR.ArrayConverterText, value.GetType().Name); } } return base.ConvertTo(context, culture, value, destinationType); } ///Converts the given value object to the specified destination type. ////// public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) { PropertyDescriptor[] props = null; if (value.GetType().IsArray) { Array valueArray = (Array)value; int length = valueArray.GetLength(0); props = new PropertyDescriptor[length]; Type arrayType = value.GetType(); Type elementType = arrayType.GetElementType(); for (int i = 0; i < length; i++) { props[i] = new ArrayPropertyDescriptor(arrayType, elementType, i); } } return new PropertyDescriptorCollection(props); } ///Gets a collection of properties for the type of array /// specified by the value /// parameter. ////// public override bool GetPropertiesSupported(ITypeDescriptorContext context) { return true; } private class ArrayPropertyDescriptor : SimplePropertyDescriptor { private int index; public ArrayPropertyDescriptor(Type arrayType, Type elementType, int index) : base(arrayType, "[" + index + "]", elementType, null) { this.index = index; } public override object GetValue(object instance) { if (instance is Array) { Array array = (Array)instance; if (array.GetLength(0) > index) { return array.GetValue(index); } } return null; } public override void SetValue(object instance, object value) { if (instance is Array) { Array array = (Array)instance; if (array.GetLength(0) > index) { array.SetValue(value, index); } OnValueChanged(instance, EventArgs.Empty); } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Gets a value indicating whether this object /// supports properties. ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using Microsoft.Win32; using System.Collections; 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 ArrayConverter : CollectionConverter { ///Provides a type converter to convert ////// objects to and from various other representations. /// 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 Array) { return SR.GetString(SR.ArrayConverterText, value.GetType().Name); } } return base.ConvertTo(context, culture, value, destinationType); } ///Converts the given value object to the specified destination type. ////// public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) { PropertyDescriptor[] props = null; if (value.GetType().IsArray) { Array valueArray = (Array)value; int length = valueArray.GetLength(0); props = new PropertyDescriptor[length]; Type arrayType = value.GetType(); Type elementType = arrayType.GetElementType(); for (int i = 0; i < length; i++) { props[i] = new ArrayPropertyDescriptor(arrayType, elementType, i); } } return new PropertyDescriptorCollection(props); } ///Gets a collection of properties for the type of array /// specified by the value /// parameter. ////// public override bool GetPropertiesSupported(ITypeDescriptorContext context) { return true; } private class ArrayPropertyDescriptor : SimplePropertyDescriptor { private int index; public ArrayPropertyDescriptor(Type arrayType, Type elementType, int index) : base(arrayType, "[" + index + "]", elementType, null) { this.index = index; } public override object GetValue(object instance) { if (instance is Array) { Array array = (Array)instance; if (array.GetLength(0) > index) { return array.GetValue(index); } } return null; } public override void SetValue(object instance, object value) { if (instance is Array) { Array array = (Array)instance; if (array.GetLength(0) > index) { array.SetValue(value, index); } OnValueChanged(instance, EventArgs.Empty); } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Gets a value indicating whether this object /// supports properties. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataGridSortCommandEventArgs.cs
- ViewManager.cs
- HttpProfileGroupBase.cs
- StateMachineSubscription.cs
- WindowVisualStateTracker.cs
- MsmqTransportElement.cs
- CodeBinaryOperatorExpression.cs
- TextBlock.cs
- AmbientLight.cs
- FileSystemWatcher.cs
- FunctionMappingTranslator.cs
- PropertyIDSet.cs
- KerberosTicketHashIdentifierClause.cs
- MenuTracker.cs
- ApplicationManager.cs
- SqlRowUpdatingEvent.cs
- SQLBytes.cs
- mansign.cs
- CoTaskMemUnicodeSafeHandle.cs
- RuleRef.cs
- SoapAttributes.cs
- ScaleTransform.cs
- PropertyValueChangedEvent.cs
- SystemDiagnosticsSection.cs
- CodeGotoStatement.cs
- ActivityTypeDesigner.xaml.cs
- ECDiffieHellmanCng.cs
- RoleServiceManager.cs
- DesignerOptionService.cs
- ApplicationTrust.cs
- Closure.cs
- XmlSerializationReader.cs
- AccessDataSource.cs
- TransformerTypeCollection.cs
- TraceUtility.cs
- ListViewCommandEventArgs.cs
- MissingMemberException.cs
- TextTreeInsertElementUndoUnit.cs
- WebAdminConfigurationHelper.cs
- CompiledScopeCriteria.cs
- MultipartIdentifier.cs
- HTTPNotFoundHandler.cs
- EntityClassGenerator.cs
- ApplicationServiceHelper.cs
- SamlSecurityTokenAuthenticator.cs
- QueryPageSettingsEventArgs.cs
- SafeNativeHandle.cs
- DiscoveryExceptionDictionary.cs
- ImplicitInputBrush.cs
- Misc.cs
- ScriptBehaviorDescriptor.cs
- WindowsFormsLinkLabel.cs
- IChannel.cs
- DataRowChangeEvent.cs
- ClientBuildManagerCallback.cs
- TrackingQueryElement.cs
- ProgramPublisher.cs
- exports.cs
- WebPartConnectionsConnectVerb.cs
- DispatcherFrame.cs
- AssemblyNameProxy.cs
- ApplicationContext.cs
- RoleService.cs
- Stackframe.cs
- CultureMapper.cs
- Int32Rect.cs
- DependencyObjectType.cs
- OLEDB_Enum.cs
- WebPartZone.cs
- ColumnReorderedEventArgs.cs
- AppAction.cs
- X509Certificate2.cs
- CompositeDataBoundControl.cs
- SR.cs
- SystemTcpConnection.cs
- TextContainerChangedEventArgs.cs
- CommandID.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- Vector3DConverter.cs
- WinFormsComponentEditor.cs
- WSSecurityOneDotOneReceiveSecurityHeader.cs
- BaseAutoFormat.cs
- GlobalProxySelection.cs
- HttpStreamMessage.cs
- KnownTypesHelper.cs
- ProtocolsConfigurationHandler.cs
- ExtensionDataObject.cs
- PackageDigitalSignatureManager.cs
- compensatingcollection.cs
- PeerDuplexChannelListener.cs
- EntityConnection.cs
- SignedXml.cs
- ProfileServiceManager.cs
- InheritanceContextChangedEventManager.cs
- safelink.cs
- sqlcontext.cs
- EntityWrapperFactory.cs
- XmlEventCache.cs
- ProgressBar.cs
- MissingManifestResourceException.cs