Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.Activities / System / Activities / InOutArgument.cs / 1305376 / InOutArgument.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.Activities { using System; using System.Activities.Expressions; using System.Activities.XamlIntegration; using System.Activities.Runtime; using System.ComponentModel; using System.Diagnostics.CodeAnalysis; using System.Linq.Expressions; using System.Runtime; using System.Windows.Markup; public abstract class InOutArgument : Argument { internal InOutArgument() { this.Direction = ArgumentDirection.InOut; } [SuppressMessage(FxCop.Category.Design, FxCop.Rule.ConsiderPassingBaseTypesAsParameters, Justification = "Subclass needed to enforce rules about which directions can be referenced.")] public static InOutArgument CreateReference(InOutArgument argumentToReference, string referencedArgumentName) { if (argumentToReference == null) { throw FxTrace.Exception.ArgumentNull("argumentToReference"); } if (string.IsNullOrEmpty(referencedArgumentName)) { throw FxTrace.Exception.ArgumentNullOrEmpty("referencedArgumentName"); } return (InOutArgument)ActivityUtilities.CreateReferenceArgument(argumentToReference.ArgumentType, ArgumentDirection.InOut, referencedArgumentName); } } [ContentProperty("Expression")] [TypeConverter(typeof(InOutArgumentConverter))] [ValueSerializer(typeof(ArgumentValueSerializer))] public sealed class InOutArgument: InOutArgument { public InOutArgument(Variable variable) : this() { if (variable != null) { this.Expression = new VariableReference { Variable = variable }; } } public InOutArgument(Variable variable) : this() { if (variable != null) { this.Expression = new VariableReference { Variable = variable }; } } public InOutArgument(Expression > expression) : this() { if (expression != null) { this.Expression = new LambdaReference (expression); } } public InOutArgument(Activity > expression) : this() { this.Expression = expression; } public InOutArgument() : base() { this.ArgumentType = typeof(T); } [DefaultValue(null)] public new Activity > Expression { get; set; } internal override ActivityWithResult ExpressionCore { get { return this.Expression; } set { if (value == null) { this.Expression = null; return; } Activity > typedActivity = value as Activity >; if (typedActivity != null) { this.Expression = typedActivity; } else { // We do not verify compatibility here. We will do that // during CacheMetadata in Argument.Validate. this.Expression = new ActivityWithResultWrapper >(value); } } } public static implicit operator InOutArgument (Variable variable) { return FromVariable(variable); } public static implicit operator InOutArgument (Activity > expression) { return FromExpression(expression); } [SuppressMessage(FxCop.Category.Design, FxCop.Rule.ConsiderPassingBaseTypesAsParameters, Justification = "Generic needed for type inference")] public static InOutArgument FromVariable(Variable variable) { return new InOutArgument { Expression = new VariableReference { Variable = variable } }; } public static InOutArgument FromExpression(Activity > expression) { if (expression == null) { throw FxTrace.Exception.ArgumentNull("expression"); } return new InOutArgument { Expression = expression }; } // Soft-Link: This method is referenced through reflection by // ExpressionUtilities.TryRewriteLambdaExpression. Update that // file if the signature changes. public new Location GetLocation(ActivityContext context) { if (context == null) { throw FxTrace.Exception.ArgumentNull("context"); } ThrowIfNotInTree(); return context.GetLocation (this.RuntimeArgument); } // Soft-Link: This method is referenced through reflection by // ExpressionUtilities.TryRewriteLambdaExpression. Update that // file if the signature changes. public new T Get(ActivityContext context) { return Get (context); } public void Set(ActivityContext context, T value) { if (context == null) { throw FxTrace.Exception.ArgumentNull("context"); } ThrowIfNotInTree(); context.SetValue(this, value); } internal override Location CreateDefaultLocation() { return Argument.CreateLocation (); } internal override void Declare(LocationEnvironment targetEnvironment, ActivityInstance activityInstance) { targetEnvironment.DeclareTemporaryLocation >(this.RuntimeArgument, activityInstance, false); } internal override bool TryPopulateValue(LocationEnvironment targetEnvironment, ActivityInstance targetActivityInstance, ActivityContext resolutionContext) { Fx.Assert(this.Expression != null, "This should only be called for non-empty bindings."); Location argumentValue; if (this.Expression.TryGetValue(resolutionContext, out argumentValue)) { targetEnvironment.Declare(this.RuntimeArgument, argumentValue.CreateReference(false), targetActivityInstance); return true; } else { targetEnvironment.DeclareTemporaryLocation >(this.RuntimeArgument, targetActivityInstance, false); 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
- SafeReversePInvokeHandle.cs
- XPathAncestorQuery.cs
- Byte.cs
- AppDomainUnloadedException.cs
- wmiprovider.cs
- AppSettings.cs
- RuntimeIdentifierPropertyAttribute.cs
- PageRequestManager.cs
- SmtpFailedRecipientException.cs
- CodeNamespaceCollection.cs
- ListViewItemMouseHoverEvent.cs
- OracleSqlParser.cs
- ObjectSet.cs
- CodeBlockBuilder.cs
- TagPrefixCollection.cs
- TextComposition.cs
- LinqToSqlWrapper.cs
- Triangle.cs
- BaseAddressElementCollection.cs
- CalendarDay.cs
- XmlSchemaSimpleTypeList.cs
- BatchParser.cs
- FunctionDetailsReader.cs
- DictionaryChange.cs
- ImageIndexConverter.cs
- WebConfigurationFileMap.cs
- XmlSchemaValidationException.cs
- DesignDataSource.cs
- ContentHostHelper.cs
- SqlMultiplexer.cs
- ScriptIgnoreAttribute.cs
- DbParameterCollectionHelper.cs
- PriorityItem.cs
- ActivityCodeDomSerializer.cs
- ComboBoxRenderer.cs
- ListBox.cs
- TabletDeviceInfo.cs
- RepeatBehaviorConverter.cs
- WebUtil.cs
- MessageQueueKey.cs
- HandlerBase.cs
- CreateUserWizardStep.cs
- CalendarAutoFormat.cs
- EmptyStringExpandableObjectConverter.cs
- Point3DConverter.cs
- BoundPropertyEntry.cs
- XPathNodeList.cs
- RequestCache.cs
- TextSchema.cs
- DataGridSortCommandEventArgs.cs
- FormViewRow.cs
- DataGridDesigner.cs
- ContainerVisual.cs
- PropertyBuilder.cs
- WebDescriptionAttribute.cs
- RequestSecurityTokenResponseCollection.cs
- DataGridViewComboBoxColumn.cs
- KeyBinding.cs
- BitmapInitialize.cs
- StringSorter.cs
- newinstructionaction.cs
- ObfuscateAssemblyAttribute.cs
- MsmqProcessProtocolHandler.cs
- SmiMetaData.cs
- QueryContinueDragEventArgs.cs
- TextPattern.cs
- SafeEventLogReadHandle.cs
- PaperSize.cs
- AuthorizationSection.cs
- StubHelpers.cs
- SR.cs
- ProtocolsConfigurationEntry.cs
- AudioDeviceOut.cs
- SplitContainerDesigner.cs
- DataGridAutomationPeer.cs
- PointHitTestResult.cs
- UnmanagedHandle.cs
- LineVisual.cs
- NullExtension.cs
- StringFunctions.cs
- InputBinder.cs
- ApplicationHost.cs
- OracleRowUpdatedEventArgs.cs
- selecteditemcollection.cs
- NamespaceQuery.cs
- JsonDeserializer.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- LicenseException.cs
- HandleRef.cs
- LightweightCodeGenerator.cs
- ToolboxItemAttribute.cs
- SyndicationItem.cs
- COM2ExtendedUITypeEditor.cs
- PrintControllerWithStatusDialog.cs
- TextTreeDeleteContentUndoUnit.cs
- DependencyPropertyAttribute.cs
- ChannelServices.cs
- DiagnosticSection.cs
- translator.cs
- ContentIterators.cs