Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WF / Activities / EventDriven.cs / 1305376 / EventDriven.cs
namespace System.Workflow.Activities
{
#region Imports
using System;
using System.Text;
using System.Reflection;
using System.Collections;
using System.Collections.Generic;
using System.CodeDom;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Drawing;
using System.Workflow.ComponentModel;
using System.Workflow.ComponentModel.Design;
using System.Workflow.ComponentModel.Compiler;
using System.Collections.ObjectModel;
using System.Workflow.Activities.Common;
#endregion
[SRDescription(SR.EventDrivenActivityDescription)]
[Designer(typeof(EventDrivenDesigner), typeof(IDesigner))]
[ToolboxItem(typeof(ActivityToolboxItem))]
[ToolboxBitmap(typeof(EventDrivenActivity), "Resources.EventDriven.png")]
[ActivityValidator(typeof(EventDrivenValidator))]
[SRCategory(SR.Standard)]
public sealed class EventDrivenActivity : SequenceActivity
{
public EventDrivenActivity()
{
}
public EventDrivenActivity(string name)
: base(name)
{
}
[Browsable(false)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public IEventActivity EventActivity
{
get
{
ReadOnlyCollection enabledActivities = this.EnabledActivities;
if (enabledActivities.Count == 0)
return null;
else
return enabledActivities[0] as IEventActivity;
}
}
}
internal sealed class EventDrivenValidator : CompositeActivityValidator
{
public override ValidationErrorCollection Validate(ValidationManager manager, object obj)
{
ValidationErrorCollection validationErrors = base.Validate(manager, obj);
EventDrivenActivity eventDriven = obj as EventDrivenActivity;
if (eventDriven == null)
throw new ArgumentException(SR.GetString(SR.Error_UnexpectedArgumentType, typeof(EventDrivenActivity).FullName), "obj");
// check parent
if (!(eventDriven.Parent is ListenActivity) &&
!(eventDriven.Parent is EventHandlersActivity) &&
!(eventDriven.Parent is StateActivity)
)
validationErrors.Add(new ValidationError(SR.GetError_EventDrivenParentNotListen(), ErrorNumbers.Error_EventDrivenParentNotListen));
// validate Event property
string message = string.Empty;
int errorNumber = -1;
Activity firstActivity = (eventDriven.EnabledActivities.Count > 0) ? eventDriven.EnabledActivities[0] : null;
if (firstActivity == null)
{
message = SR.GetString(SR.Error_EventDrivenNoFirstActivity);
errorNumber = ErrorNumbers.Error_EventDrivenNoFirstActivity;
}
else if (!(firstActivity is IEventActivity))
{
message = SR.GetError_EventDrivenInvalidFirstActivity();
errorNumber = ErrorNumbers.Error_EventDrivenInvalidFirstActivity;
}
if (message.Length > 0)
validationErrors.Add(new ValidationError(message, errorNumber));
return validationErrors;
}
public override ValidationError ValidateActivityChange(Activity activity, ActivityChangeAction action)
{
if (activity == null)
throw new ArgumentNullException("activity");
if (action == null)
throw new ArgumentNullException("action");
RemovedActivityAction removedAction = action as RemovedActivityAction;
if (removedAction != null && removedAction.RemovedActivityIndex == 0)
{
return new ValidationError(SR.GetString(SR.Error_EventActivityIsImmutable), ErrorNumbers.Error_DynamicActivity, false);
}
else
{
AddedActivityAction addedAction = action as AddedActivityAction;
if (addedAction != null && addedAction.Index == 0)
return new ValidationError(SR.GetString(SR.Error_EventActivityIsImmutable), ErrorNumbers.Error_DynamicActivity, false);
}
return base.ValidateActivityChange(activity, action);
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
namespace System.Workflow.Activities
{
#region Imports
using System;
using System.Text;
using System.Reflection;
using System.Collections;
using System.Collections.Generic;
using System.CodeDom;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Drawing;
using System.Workflow.ComponentModel;
using System.Workflow.ComponentModel.Design;
using System.Workflow.ComponentModel.Compiler;
using System.Collections.ObjectModel;
using System.Workflow.Activities.Common;
#endregion
[SRDescription(SR.EventDrivenActivityDescription)]
[Designer(typeof(EventDrivenDesigner), typeof(IDesigner))]
[ToolboxItem(typeof(ActivityToolboxItem))]
[ToolboxBitmap(typeof(EventDrivenActivity), "Resources.EventDriven.png")]
[ActivityValidator(typeof(EventDrivenValidator))]
[SRCategory(SR.Standard)]
public sealed class EventDrivenActivity : SequenceActivity
{
public EventDrivenActivity()
{
}
public EventDrivenActivity(string name)
: base(name)
{
}
[Browsable(false)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public IEventActivity EventActivity
{
get
{
ReadOnlyCollection enabledActivities = this.EnabledActivities;
if (enabledActivities.Count == 0)
return null;
else
return enabledActivities[0] as IEventActivity;
}
}
}
internal sealed class EventDrivenValidator : CompositeActivityValidator
{
public override ValidationErrorCollection Validate(ValidationManager manager, object obj)
{
ValidationErrorCollection validationErrors = base.Validate(manager, obj);
EventDrivenActivity eventDriven = obj as EventDrivenActivity;
if (eventDriven == null)
throw new ArgumentException(SR.GetString(SR.Error_UnexpectedArgumentType, typeof(EventDrivenActivity).FullName), "obj");
// check parent
if (!(eventDriven.Parent is ListenActivity) &&
!(eventDriven.Parent is EventHandlersActivity) &&
!(eventDriven.Parent is StateActivity)
)
validationErrors.Add(new ValidationError(SR.GetError_EventDrivenParentNotListen(), ErrorNumbers.Error_EventDrivenParentNotListen));
// validate Event property
string message = string.Empty;
int errorNumber = -1;
Activity firstActivity = (eventDriven.EnabledActivities.Count > 0) ? eventDriven.EnabledActivities[0] : null;
if (firstActivity == null)
{
message = SR.GetString(SR.Error_EventDrivenNoFirstActivity);
errorNumber = ErrorNumbers.Error_EventDrivenNoFirstActivity;
}
else if (!(firstActivity is IEventActivity))
{
message = SR.GetError_EventDrivenInvalidFirstActivity();
errorNumber = ErrorNumbers.Error_EventDrivenInvalidFirstActivity;
}
if (message.Length > 0)
validationErrors.Add(new ValidationError(message, errorNumber));
return validationErrors;
}
public override ValidationError ValidateActivityChange(Activity activity, ActivityChangeAction action)
{
if (activity == null)
throw new ArgumentNullException("activity");
if (action == null)
throw new ArgumentNullException("action");
RemovedActivityAction removedAction = action as RemovedActivityAction;
if (removedAction != null && removedAction.RemovedActivityIndex == 0)
{
return new ValidationError(SR.GetString(SR.Error_EventActivityIsImmutable), ErrorNumbers.Error_DynamicActivity, false);
}
else
{
AddedActivityAction addedAction = action as AddedActivityAction;
if (addedAction != null && addedAction.Index == 0)
return new ValidationError(SR.GetString(SR.Error_EventActivityIsImmutable), ErrorNumbers.Error_DynamicActivity, false);
}
return base.ValidateActivityChange(activity, action);
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UrlEncodedParameterWriter.cs
- SwitchLevelAttribute.cs
- CodeDirectiveCollection.cs
- SoapFault.cs
- Int16.cs
- StyleCollection.cs
- GridViewCancelEditEventArgs.cs
- PocoPropertyAccessorStrategy.cs
- ProfileSection.cs
- HttpTransportElement.cs
- PolygonHotSpot.cs
- GlobalizationSection.cs
- Int64Storage.cs
- FontWeight.cs
- controlskin.cs
- InvalidateEvent.cs
- SqlConnectionPoolGroupProviderInfo.cs
- MetadataArtifactLoaderCompositeResource.cs
- UnmanagedMemoryStreamWrapper.cs
- OracleTransaction.cs
- TabControlAutomationPeer.cs
- FixedSOMElement.cs
- OraclePermission.cs
- QueuePathEditor.cs
- XamlStream.cs
- WebPartHeaderCloseVerb.cs
- ModuleElement.cs
- BehaviorService.cs
- PageSetupDialog.cs
- EllipticalNodeOperations.cs
- WithStatement.cs
- WebPartEditorApplyVerb.cs
- EntityCommand.cs
- _ChunkParse.cs
- InputMethod.cs
- InternalBufferOverflowException.cs
- MouseEvent.cs
- StreamSecurityUpgradeAcceptorBase.cs
- ObjectItemLoadingSessionData.cs
- XmlElementCollection.cs
- PieceDirectory.cs
- QilTernary.cs
- BindingExpressionBase.cs
- XmlStringTable.cs
- httpstaticobjectscollection.cs
- EdmType.cs
- X509CertificateValidationMode.cs
- ColumnMapCopier.cs
- QilXmlWriter.cs
- smtppermission.cs
- _NegoState.cs
- FileFormatException.cs
- TypeUnloadedException.cs
- MimeFormImporter.cs
- GenericAuthenticationEventArgs.cs
- XamlVector3DCollectionSerializer.cs
- XmlBindingWorker.cs
- IntSecurity.cs
- UnmanagedMemoryStreamWrapper.cs
- LinkUtilities.cs
- Events.cs
- PropertyEntry.cs
- BitmapCodecInfo.cs
- RuleSettingsCollection.cs
- DataSourceSelectArguments.cs
- _SSPISessionCache.cs
- X509Certificate.cs
- PolyLineSegmentFigureLogic.cs
- EncoderReplacementFallback.cs
- URLMembershipCondition.cs
- WindowsTreeView.cs
- HMACMD5.cs
- FaultDesigner.cs
- AsyncDataRequest.cs
- FrameworkTemplate.cs
- ZoneMembershipCondition.cs
- InputScopeAttribute.cs
- LabelEditEvent.cs
- EdgeModeValidation.cs
- OptionUsage.cs
- WebBrowserSiteBase.cs
- ChangePassword.cs
- TreeNodeMouseHoverEvent.cs
- PropertyIDSet.cs
- XmlDataSource.cs
- ItemList.cs
- GrammarBuilderWildcard.cs
- ObfuscateAssemblyAttribute.cs
- SystemIPInterfaceStatistics.cs
- MetadataArtifactLoader.cs
- ElementHostPropertyMap.cs
- WpfKnownMemberInvoker.cs
- ClientTarget.cs
- TemplateApplicationHelper.cs
- MenuItem.cs
- DeploymentSection.cs
- NameTable.cs
- CodeTypeReference.cs
- RegexGroup.cs
- OleDbPermission.cs