Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.Activities / System / Activities / Expressions / DelegateArgumentValue.cs / 1305376 / DelegateArgumentValue.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.Activities.Expressions { using System.Linq.Expressions; using System.Runtime; using System.Windows.Markup; [ContentProperty("DelegateArgument")] public sealed class DelegateArgumentValue: CodeActivity , IExpressionContainer { public DelegateArgumentValue() : base() { } public DelegateArgumentValue(DelegateArgument delegateArgument) : this() { this.DelegateArgument = delegateArgument; } public DelegateArgument DelegateArgument { get; set; } Expression IExpressionContainer.Expression { get { return ExpressionUtilities.CreateIdentifierExpression(this.DelegateArgument); } } protected override void CacheMetadata(CodeActivityMetadata metadata) { if (this.DelegateArgument == null) { metadata.AddValidationError(SR.DelegateArgumentMustBeSet); } else { if (!this.DelegateArgument.IsInTree) { metadata.AddValidationError(SR.DelegateArgumentMustBeReferenced(this.DelegateArgument.Name)); } if (!metadata.Environment.IsVisible(this.DelegateArgument)) { metadata.AddValidationError(SR.DelegateArgumentNotVisible(this.DelegateArgument.Name)); } if (!(this.DelegateArgument is DelegateInArgument ) && !TypeHelper.AreTypesCompatible(this.DelegateArgument.Type, typeof(T))) { metadata.AddValidationError(SR.DelegateArgumentTypeInvalid(this.DelegateArgument, typeof(T), this.DelegateArgument.Type)); } } } internal override bool TryGetValue(ActivityContext context, out T value) { try { context.AllowChainedEnvironmentAccess = true; value = context.GetValue ((LocationReference)this.DelegateArgument); } finally { context.AllowChainedEnvironmentAccess = false; } return true; } protected override T Execute(CodeActivityContext context) { return ExecuteWithTryGetValue(context); } } } // 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
- AppModelKnownContentFactory.cs
- PassportAuthenticationModule.cs
- BitStack.cs
- propertyentry.cs
- BitmapPalette.cs
- WindowsStreamSecurityUpgradeProvider.cs
- SQLByte.cs
- PowerStatus.cs
- counter.cs
- StrongNameUtility.cs
- CompoundFileStreamReference.cs
- DrawingContextWalker.cs
- CapabilitiesRule.cs
- TextParaLineResult.cs
- GuidelineSet.cs
- DataGridViewMethods.cs
- UrlAuthorizationModule.cs
- UITypeEditor.cs
- XmlHierarchicalEnumerable.cs
- HwndMouseInputProvider.cs
- TypeDelegator.cs
- MessageDecoder.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- CodeArrayIndexerExpression.cs
- SerializationSectionGroup.cs
- wgx_commands.cs
- DBSqlParserColumnCollection.cs
- MailDefinitionBodyFileNameEditor.cs
- RegisteredHiddenField.cs
- CultureTable.cs
- WindowsStartMenu.cs
- TextEditorDragDrop.cs
- PerformanceCounterPermission.cs
- HtmlEncodedRawTextWriter.cs
- ToolStripContentPanel.cs
- HostingEnvironmentException.cs
- TypedDataSetSchemaImporterExtensionFx35.cs
- XmlSchema.cs
- MetadataArtifactLoaderCompositeResource.cs
- Variant.cs
- TablePattern.cs
- QilUnary.cs
- AutoResetEvent.cs
- QueryCoreOp.cs
- AutoResetEvent.cs
- NamespaceListProperty.cs
- TrackBarRenderer.cs
- DefaultTypeArgumentAttribute.cs
- DataViewSetting.cs
- QueryActivatableWorkflowsCommand.cs
- PageAsyncTaskManager.cs
- GlobalizationSection.cs
- Converter.cs
- ObjectStateFormatter.cs
- ActivityDelegate.cs
- SHA512Managed.cs
- TypeLoadException.cs
- Composition.cs
- StagingAreaInputItem.cs
- QilFactory.cs
- COM2IPerPropertyBrowsingHandler.cs
- _LocalDataStore.cs
- PseudoWebRequest.cs
- HotSpotCollection.cs
- IIS7UserPrincipal.cs
- AttachmentCollection.cs
- MD5CryptoServiceProvider.cs
- QueryAsyncResult.cs
- ResponseBodyWriter.cs
- IItemContainerGenerator.cs
- DbMetaDataColumnNames.cs
- SqlReferenceCollection.cs
- RegexMatch.cs
- NativeCppClassAttribute.cs
- ListViewInsertionMark.cs
- RolePrincipal.cs
- TableLayoutStyle.cs
- DataTablePropertyDescriptor.cs
- DesignerView.Commands.cs
- NodeCounter.cs
- FocusTracker.cs
- XamlToRtfParser.cs
- AnonymousIdentificationModule.cs
- PinnedBufferMemoryStream.cs
- PlainXmlWriter.cs
- InheritanceAttribute.cs
- RepeatButtonAutomationPeer.cs
- UrlAuthFailedErrorFormatter.cs
- ScrollableControl.cs
- DebugTraceHelper.cs
- PropertyGroupDescription.cs
- BitConverter.cs
- TextEndOfLine.cs
- DtrList.cs
- CurrentChangedEventManager.cs
- ISAPIRuntime.cs
- ProfileModule.cs
- Solver.cs
- PropertyChangingEventArgs.cs
- RuntimeArgumentHandle.cs