Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / Tools / System.Activities.Presentation / System / Activities / Presentation / Xaml / ActivityBuilderHelper.cs / 1407647 / ActivityBuilderHelper.cs
//---------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. //--------------------------------------------------------------- namespace System.Activities.Presentation.Xaml { using System.Activities.Debugger; using System.Activities.Presentation.Model; using System.Collections.Generic; using System.ComponentModel; using System.Runtime; using System.Windows.Markup; internal class ActivityBuilderHelper { internal static bool IsActivityBuilderType(ModelItem modelItem) { if (null == modelItem) { throw FxTrace.Exception.AsError(new ArgumentNullException("modelItem")); } return modelItem.ItemType.IsAssignableFrom(typeof(ActivityBuilder)); } internal static ListGetVariables(object input) { if (null == input) { throw FxTrace.Exception.AsError(new ArgumentNullException("input")); } ModelItem astAsModelItem = input as ModelItem; ActivityBuilder instance = input as ActivityBuilder; if (null != astAsModelItem) { if (!astAsModelItem.ItemType.IsAssignableFrom(typeof(ActivityBuilder))) { throw FxTrace.Exception.AsError(new InvalidCastException(astAsModelItem.ItemType.FullName)); } instance = (ActivityBuilder)astAsModelItem.GetCurrentValue(); } else if (null == instance) { throw FxTrace.Exception.AsError(new InvalidCastException(input.GetType().FullName)); } List variables = new List (); foreach (DynamicActivityProperty property in instance.Properties) { if (property != null) { Variable autoVariable = GetVariableFromProperty(property); if (autoVariable != null) { variables.Add(autoVariable); } } } return variables; } internal static Variable GetVariableFromProperty(DynamicActivityProperty property) { Type variableType = null; Variable autoVariable = null; if (property.Type != null) { Type propertyType = property.Type; // if the property is an Argument create a variable of type T if (propertyType != null && typeof(Argument).IsAssignableFrom(propertyType)) { if (propertyType.IsGenericType) { variableType = propertyType.GetGenericArguments()[0]; } else { variableType = typeof(object); } } } if (variableType != null) { autoVariable = Variable.Create(property.Name, variableType, VariableModifiers.None); Argument argument = property.Value as Argument; if (argument != null) { autoVariable.Default = argument.Expression; } } return autoVariable; } } } // 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
- SqlDataSourceConfigureSelectPanel.cs
- RequestCacheEntry.cs
- TypeConverterHelper.cs
- NullExtension.cs
- GeneratedView.cs
- SafeSecurityHandles.cs
- DataBindingExpressionBuilder.cs
- AttributeEmitter.cs
- BitmapEffect.cs
- cookie.cs
- AnnotationResource.cs
- ClientOptions.cs
- PropertyMap.cs
- ISO2022Encoding.cs
- VirtualPathUtility.cs
- AddToCollection.cs
- CreateDataSourceDialog.cs
- ConfigurationSectionGroup.cs
- XamlWriter.cs
- DataStreams.cs
- ArrangedElement.cs
- DynamicControlParameter.cs
- DataTableNewRowEvent.cs
- WebBaseEventKeyComparer.cs
- InfoCardRSAPKCS1KeyExchangeDeformatter.cs
- RequestCachingSection.cs
- CharStorage.cs
- ScrollEvent.cs
- DesignUtil.cs
- InstanceLockQueryResult.cs
- ContentTextAutomationPeer.cs
- ImpersonationContext.cs
- MultipartContentParser.cs
- KeyProperty.cs
- ToolStripSplitButton.cs
- ConfigXmlElement.cs
- ServiceDebugBehavior.cs
- ConfigurationManagerHelperFactory.cs
- ContentType.cs
- AutomationProperty.cs
- ProfileSettingsCollection.cs
- PerformanceCounterNameAttribute.cs
- SecurityCriticalDataForSet.cs
- ShutDownListener.cs
- TreeNodeCollection.cs
- UrlParameterWriter.cs
- BooleanFunctions.cs
- StorageAssociationTypeMapping.cs
- PolyBezierSegmentFigureLogic.cs
- BookmarkScopeHandle.cs
- XmlException.cs
- UpdateCompiler.cs
- NameValueCollection.cs
- PageTheme.cs
- ExpressionBindingCollection.cs
- StorageBasedPackageProperties.cs
- AutoResizedEvent.cs
- DecoderReplacementFallback.cs
- FunctionDetailsReader.cs
- PropertyPathConverter.cs
- ContextQuery.cs
- XmlDocumentSerializer.cs
- XmlSchemaSimpleTypeUnion.cs
- XmlSchemaSet.cs
- BitmapDownload.cs
- RadioButtonList.cs
- FontStyleConverter.cs
- DataComponentNameHandler.cs
- ButtonRenderer.cs
- InfoCardKeyedHashAlgorithm.cs
- InkPresenterAutomationPeer.cs
- UnsafeNativeMethodsTablet.cs
- SubqueryRules.cs
- ModuleBuilder.cs
- StringKeyFrameCollection.cs
- ScrollChrome.cs
- EntityDataSourceMemberPath.cs
- __ConsoleStream.cs
- XmlUtil.cs
- FixedSOMSemanticBox.cs
- BrushValueSerializer.cs
- TaiwanLunisolarCalendar.cs
- QueryExpression.cs
- AddingNewEventArgs.cs
- XmlDataLoader.cs
- XmlCharacterData.cs
- DynamicEndpoint.cs
- SqlConnectionString.cs
- DESCryptoServiceProvider.cs
- UserMapPath.cs
- RegexInterpreter.cs
- CacheDict.cs
- HierarchicalDataBoundControlAdapter.cs
- DisplayMemberTemplateSelector.cs
- ReadOnlyAttribute.cs
- ItemsPanelTemplate.cs
- ActiveXSite.cs
- TypeLibConverter.cs
- AncestorChangedEventArgs.cs
- SqlRemoveConstantOrderBy.cs