Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.Activities / System / Activities / Expressions / Add.cs / 1305376 / Add.cs
//---------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. //--------------------------------------------------------------- namespace System.Activities.Expressions { using System.Activities; using System.Activities.Statements; using System.Activities.Validation; using System.Collections.Generic; using System.ComponentModel; using System.Linq.Expressions; using System.Runtime; public sealed class Add: CodeActivity { //Lock is not needed for operationFunction here. The reason is that delegates for a given Add are the same. //It's possible that 2 threads are assigning the operationFucntion at the same time. But it's okay because the compiled codes are the same. static Func checkedOperationFunction; static Func uncheckedOperationFunction; bool checkedOperation = true; [RequiredArgument] [DefaultValue(null)] public InArgument Left { get; set; } [RequiredArgument] [DefaultValue(null)] public InArgument Right { get; set; } [DefaultValue(true)] public bool Checked { get { return this.checkedOperation; } set { this.checkedOperation = value; } } protected override void CacheMetadata(CodeActivityMetadata metadata) { BinaryExpressionHelper.OnGetArguments(metadata, this.Left, this.Right); if (this.checkedOperation) { EnsureOperationFunction(metadata, ref checkedOperationFunction, ExpressionType.AddChecked); } else { EnsureOperationFunction(metadata, ref uncheckedOperationFunction, ExpressionType.Add); } } void EnsureOperationFunction(CodeActivityMetadata metadata, ref Func operationFunction, ExpressionType operatorType) { if (operationFunction == null) { ValidationError validationError; if (!BinaryExpressionHelper.TryGenerateLinqDelegate( operatorType, out operationFunction, out validationError)) { metadata.AddValidationError(validationError); } } } protected override TResult Execute(CodeActivityContext context) { TLeft leftValue = this.Left.Get(context); TRight rightValue = this.Right.Get(context); //if user changed Checked flag between Open and Execution, //a NRE may be thrown and that's by design if (this.checkedOperation) { return checkedOperationFunction(leftValue, rightValue); } else { return uncheckedOperationFunction(leftValue, rightValue); } } } } // 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
- OverlappedAsyncResult.cs
- NativeWindow.cs
- DropTarget.cs
- XmlDataSource.cs
- CodeCatchClause.cs
- RegionInfo.cs
- ConnectionPoolManager.cs
- ObjectSecurity.cs
- EventLogEntry.cs
- XPathMultyIterator.cs
- URLMembershipCondition.cs
- Models.cs
- JsonWriter.cs
- XmlQueryStaticData.cs
- TableSectionStyle.cs
- HebrewCalendar.cs
- Dispatcher.cs
- HttpModulesSection.cs
- StatusBarItem.cs
- BuilderInfo.cs
- ForEachAction.cs
- CounterCreationDataCollection.cs
- DerivedKeySecurityToken.cs
- Paragraph.cs
- SignatureHelper.cs
- EntityDataSourceDesigner.cs
- DesignerHost.cs
- ObjectToModelValueConverter.cs
- LogEntryHeaderSerializer.cs
- XmlDataDocument.cs
- AvTraceDetails.cs
- Crypto.cs
- DataSourceConverter.cs
- XmlSchemaType.cs
- Mapping.cs
- DesignerCategoryAttribute.cs
- PackageRelationshipSelector.cs
- Image.cs
- CustomPopupPlacement.cs
- Stackframe.cs
- SqlParameter.cs
- SvcMapFile.cs
- RIPEMD160Managed.cs
- User.cs
- PlaceHolder.cs
- ImageField.cs
- SafeEventHandle.cs
- CanonicalFormWriter.cs
- DataGridViewColumnEventArgs.cs
- TraceListener.cs
- MetafileHeaderWmf.cs
- LowerCaseStringConverter.cs
- UIElementAutomationPeer.cs
- RectValueSerializer.cs
- TextRunCache.cs
- IntegerValidator.cs
- ThreadStaticAttribute.cs
- WebPartAddingEventArgs.cs
- ItemCheckedEvent.cs
- HostingEnvironmentException.cs
- Geometry.cs
- ResumeStoryboard.cs
- DrawingVisualDrawingContext.cs
- CreateUserWizardStep.cs
- PartBasedPackageProperties.cs
- DbModificationClause.cs
- SqlCacheDependency.cs
- HttpInputStream.cs
- Context.cs
- UIPermission.cs
- OleDbCommand.cs
- BooleanSwitch.cs
- WebSysDisplayNameAttribute.cs
- SimpleLine.cs
- ThreadSafeMessageFilterTable.cs
- WmlObjectListAdapter.cs
- LinearGradientBrush.cs
- CssTextWriter.cs
- AudioFormatConverter.cs
- PlatformCulture.cs
- TableSectionStyle.cs
- HttpInputStream.cs
- SchemaAttDef.cs
- SqlCommand.cs
- HashRepartitionStream.cs
- PolyLineSegmentFigureLogic.cs
- ColumnHeader.cs
- ListViewDeleteEventArgs.cs
- RawStylusSystemGestureInputReport.cs
- BuildProvider.cs
- MSAAWinEventWrap.cs
- FamilyCollection.cs
- MetadataItemEmitter.cs
- InfoCardRSAPKCS1KeyExchangeFormatter.cs
- SerializationException.cs
- WsatConfiguration.cs
- TabControlToolboxItem.cs
- XmlIncludeAttribute.cs
- ComponentConverter.cs
- BitmapEffectDrawingContextState.cs