Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.Activities / System / Activities / DynamicActivityTypeDescriptor.cs / 1305376 / DynamicActivityTypeDescriptor.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.Activities { using System; using System.Collections; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel; using System.Xml.Linq; class DynamicActivityTypeDescriptor : ICustomTypeDescriptor { PropertyDescriptorCollection cachedProperties; Activity owner; public DynamicActivityTypeDescriptor(Activity owner) { this.owner = owner; this.Properties = new ActivityPropertyCollection(this); } public string Name { get; set; } public KeyedCollectionProperties { get; private set; } public AttributeCollection GetAttributes() { return TypeDescriptor.GetAttributes(this.owner, true); } public string GetClassName() { if (this.Name != null) { return this.Name; } return TypeDescriptor.GetClassName(this.owner, true); } public string GetComponentName() { return TypeDescriptor.GetComponentName(this.owner, true); } public TypeConverter GetConverter() { return TypeDescriptor.GetConverter(this.owner, true); } public EventDescriptor GetDefaultEvent() { return TypeDescriptor.GetDefaultEvent(this.owner, true); } public PropertyDescriptor GetDefaultProperty() { return TypeDescriptor.GetDefaultProperty(this.owner, true); } public object GetEditor(Type editorBaseType) { return TypeDescriptor.GetEditor(this.owner, editorBaseType, true); } public EventDescriptorCollection GetEvents(Attribute[] attributes) { return TypeDescriptor.GetEvents(this.owner, attributes, true); } public EventDescriptorCollection GetEvents() { return TypeDescriptor.GetEvents(this.owner, true); } public PropertyDescriptorCollection GetProperties() { return GetProperties(null); } public PropertyDescriptorCollection GetProperties(Attribute[] attributes) { PropertyDescriptorCollection result = this.cachedProperties; if (result != null) { return result; } PropertyDescriptorCollection dynamicProperties; if (attributes != null) { dynamicProperties = TypeDescriptor.GetProperties(this.owner, attributes, true); } else { dynamicProperties = TypeDescriptor.GetProperties(this.owner, true); } // initial capacity is Properties + Name + Body List propertyDescriptors = new List (this.Properties.Count + 2); for (int i = 0; i < dynamicProperties.Count; i++) { PropertyDescriptor dynamicProperty = dynamicProperties[i]; if (dynamicProperty.IsBrowsable) { propertyDescriptors.Add(dynamicProperty); } } foreach (DynamicActivityProperty property in Properties) { if (string.IsNullOrEmpty(property.Name)) { throw FxTrace.Exception.AsError(new ValidationException(SR.ActivityPropertyRequiresName(this.owner.DisplayName))); } if (property.Type == null) { throw FxTrace.Exception.AsError(new ValidationException(SR.ActivityPropertyRequiresType(this.owner.DisplayName))); } propertyDescriptors.Add(new DynamicActivityPropertyDescriptor(property, this.owner.GetType())); } result = new PropertyDescriptorCollection(propertyDescriptors.ToArray()); this.cachedProperties = result; return result; } public object GetPropertyOwner(PropertyDescriptor pd) { return this.owner; } class DynamicActivityPropertyDescriptor : PropertyDescriptor { AttributeCollection attributes; DynamicActivityProperty activityProperty; Type componentType; public DynamicActivityPropertyDescriptor(DynamicActivityProperty activityProperty, Type componentType) : base(activityProperty.Name, null) { this.activityProperty = activityProperty; this.componentType = componentType; } public override Type ComponentType { get { return this.componentType; } } public override AttributeCollection Attributes { get { if (this.attributes == null) { AttributeCollection inheritedAttributes = base.Attributes; Collection propertyAttributes = this.activityProperty.Attributes; Attribute[] totalAttributes = new Attribute[inheritedAttributes.Count + propertyAttributes.Count + 1]; inheritedAttributes.CopyTo(totalAttributes, 0); propertyAttributes.CopyTo(totalAttributes, inheritedAttributes.Count); totalAttributes[inheritedAttributes.Count + propertyAttributes.Count] = new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden); this.attributes = new AttributeCollection(totalAttributes); } return this.attributes; } } public override bool IsReadOnly { get { return false; } } public override Type PropertyType { get { return this.activityProperty.Type; } } public override object GetValue(object component) { IDynamicActivity owner = component as IDynamicActivity; if (owner == null || !owner.Properties.Contains(this.activityProperty)) { throw FxTrace.Exception.AsError(new InvalidOperationException(SR.InvalidDynamicActivityProperty(this.Name))); } return this.activityProperty.Value; } public override void SetValue(object component, object value) { IDynamicActivity owner = component as IDynamicActivity; if (owner == null || !owner.Properties.Contains(this.activityProperty)) { throw FxTrace.Exception.AsError(new InvalidOperationException(SR.InvalidDynamicActivityProperty(this.Name))); } this.activityProperty.Value = value; } public override bool CanResetValue(object component) { return false; } public override void ResetValue(object component) { } public override bool ShouldSerializeValue(object component) { return false; } protected override void FillAttributes(IList attributeList) { if (attributeList == null) { throw FxTrace.Exception.ArgumentNull("attributeList"); } attributeList.Add(new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)); } } class ActivityPropertyCollection : KeyedCollection { DynamicActivityTypeDescriptor parent; public ActivityPropertyCollection(DynamicActivityTypeDescriptor parent) : base() { this.parent = parent; } protected override void InsertItem(int index, DynamicActivityProperty item) { if (item == null) { throw FxTrace.Exception.ArgumentNull("item"); } if (this.Contains(item.Name)) { throw FxTrace.Exception.AsError(new ArgumentException(SR.DynamicActivityDuplicatePropertyDetected(item.Name), "item")); } InvalidateCache(); base.InsertItem(index, item); } protected override void SetItem(int index, DynamicActivityProperty item) { if (item == null) { throw FxTrace.Exception.ArgumentNull("item"); } // We don't want self-assignment to throw. Note that if this[index] has the same // name as item, no other element in the collection can. if (!this[index].Name.Equals(item.Name) && this.Contains(item.Name)) { throw FxTrace.Exception.AsError(new ArgumentException(SR.DynamicActivityDuplicatePropertyDetected(item.Name), "item")); } InvalidateCache(); base.SetItem(index, item); } protected override void RemoveItem(int index) { InvalidateCache(); base.RemoveItem(index); } protected override void ClearItems() { InvalidateCache(); base.ClearItems(); } protected override string GetKeyForItem(DynamicActivityProperty item) { return item.Name; } void InvalidateCache() { this.parent.cachedProperties = null; } } } } // 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
- TextViewSelectionProcessor.cs
- ToolStripItemBehavior.cs
- GeometryGroup.cs
- ResourcePool.cs
- QueuePathEditor.cs
- CompensationToken.cs
- StopStoryboard.cs
- TemplateColumn.cs
- WebPartDescription.cs
- AdPostCacheSubstitution.cs
- ScriptDescriptor.cs
- RankException.cs
- PropertyChangedEventArgs.cs
- SelectionRange.cs
- ForceCopyBuildProvider.cs
- HtmlDocument.cs
- FullTextState.cs
- ServicePoint.cs
- MdImport.cs
- _LocalDataStore.cs
- GatewayIPAddressInformationCollection.cs
- DateTimeConverter2.cs
- MissingMemberException.cs
- CompilerParameters.cs
- RectAnimation.cs
- SwitchElementsCollection.cs
- AuthenticationManager.cs
- FormViewPageEventArgs.cs
- TableLayoutPanelDesigner.cs
- SqlRowUpdatingEvent.cs
- RsaSecurityToken.cs
- FileDataSourceCache.cs
- MembershipUser.cs
- SerializationObjectManager.cs
- StringUtil.cs
- PointLightBase.cs
- ColumnResult.cs
- OleDbMetaDataFactory.cs
- RecognizedWordUnit.cs
- ColorAnimationUsingKeyFrames.cs
- NavigationExpr.cs
- RSAPKCS1SignatureDeformatter.cs
- XmlArrayItemAttributes.cs
- MsmqIntegrationSecurityElement.cs
- SingleQueryOperator.cs
- x509utils.cs
- ProcessModule.cs
- CollectionBuilder.cs
- MatrixCamera.cs
- HMACRIPEMD160.cs
- RightsManagementInformation.cs
- AssemblyFilter.cs
- NativeCompoundFileAPIs.cs
- Color.cs
- DependencyPropertyAttribute.cs
- BindingElementExtensionElement.cs
- TcpWorkerProcess.cs
- SigningCredentials.cs
- InsufficientMemoryException.cs
- PartBasedPackageProperties.cs
- BodyGlyph.cs
- figurelengthconverter.cs
- RouteItem.cs
- CodeRegionDirective.cs
- BackStopAuthenticationModule.cs
- BamlBinaryReader.cs
- StatusBarItem.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- FaultContext.cs
- PassportAuthentication.cs
- PersonalizationDictionary.cs
- BinaryConverter.cs
- BookmarkResumptionRecord.cs
- Configuration.cs
- PasswordBox.cs
- XmlSchema.cs
- TaskFormBase.cs
- ScrollEventArgs.cs
- BooleanAnimationUsingKeyFrames.cs
- ProfileParameter.cs
- DiscreteKeyFrames.cs
- TemplateXamlParser.cs
- AttributedMetaModel.cs
- safex509handles.cs
- AspCompat.cs
- EntityDesignerDataSourceView.cs
- XhtmlBasicObjectListAdapter.cs
- WindowCollection.cs
- MouseBinding.cs
- DBConnectionString.cs
- ObjectComplexPropertyMapping.cs
- HashSetDebugView.cs
- ImageFormat.cs
- MetafileEditor.cs
- HtmlFormWrapper.cs
- KeyConverter.cs
- SessionKeyExpiredException.cs
- PermissionToken.cs
- CultureTable.cs
- EntityDataSourceChangedEventArgs.cs