Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WF / Common / AuthoringOM / Compiler / Validation / ActivityValidator.cs / 1305376 / ActivityValidator.cs
namespace System.Workflow.ComponentModel.Compiler { using System; using System.Reflection; using System.Workflow.ComponentModel.Design; #region Class ActivityValidator public class ActivityValidator : DependencyObjectValidator { public override ValidationErrorCollection Validate(ValidationManager manager, object obj) { if (manager == null) throw new ArgumentNullException("manager"); Activity activity = obj as Activity; if (activity == null) throw new ArgumentException(SR.GetString(SR.Error_UnexpectedArgumentType, typeof(Activity).FullName), "obj"); if (manager.Context == null) throw new ArgumentException("manager", SR.GetString(SR.Error_MissingContextProperty)); manager.Context.Push(activity); ValidationErrorCollection errors = new ValidationErrorCollection(); errors.AddRange(base.Validate(manager, obj)); if (activity.Parent == null) { errors.AddRange(ValidationHelpers.ValidateUniqueIdentifiers(activity)); if (activity.Enabled == false) { ValidationError error = new ValidationError(SR.GetString(SR.Error_RootIsNotEnabled), ErrorNumbers.Error_RootIsNotEnabled); error.PropertyName = "Enabled"; errors.Add(error); } } // validate ID property, only if it is not root activity Activity rootActivity = Helpers.GetRootActivity(activity); if (activity != rootActivity) { ValidationError identifierError = ValidationHelpers.ValidateNameProperty("Name", manager, activity.Name); if (identifierError != null) errors.Add(identifierError); } try { errors.AddRange(ValidateProperties(manager, obj)); } finally { System.Diagnostics.Debug.Assert(manager.Context.Current == activity, "Unwinding contextStack: the item that is about to be popped is not the one we pushed."); manager.Context.Pop(); } return errors; } } #endregion } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. namespace System.Workflow.ComponentModel.Compiler { using System; using System.Reflection; using System.Workflow.ComponentModel.Design; #region Class ActivityValidator public class ActivityValidator : DependencyObjectValidator { public override ValidationErrorCollection Validate(ValidationManager manager, object obj) { if (manager == null) throw new ArgumentNullException("manager"); Activity activity = obj as Activity; if (activity == null) throw new ArgumentException(SR.GetString(SR.Error_UnexpectedArgumentType, typeof(Activity).FullName), "obj"); if (manager.Context == null) throw new ArgumentException("manager", SR.GetString(SR.Error_MissingContextProperty)); manager.Context.Push(activity); ValidationErrorCollection errors = new ValidationErrorCollection(); errors.AddRange(base.Validate(manager, obj)); if (activity.Parent == null) { errors.AddRange(ValidationHelpers.ValidateUniqueIdentifiers(activity)); if (activity.Enabled == false) { ValidationError error = new ValidationError(SR.GetString(SR.Error_RootIsNotEnabled), ErrorNumbers.Error_RootIsNotEnabled); error.PropertyName = "Enabled"; errors.Add(error); } } // validate ID property, only if it is not root activity Activity rootActivity = Helpers.GetRootActivity(activity); if (activity != rootActivity) { ValidationError identifierError = ValidationHelpers.ValidateNameProperty("Name", manager, activity.Name); if (identifierError != null) errors.Add(identifierError); } try { errors.AddRange(ValidateProperties(manager, obj)); } finally { System.Diagnostics.Debug.Assert(manager.Context.Current == activity, "Unwinding contextStack: the item that is about to be popped is not the one we pushed."); manager.Context.Pop(); } return errors; } } #endregion } // 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
- TouchFrameEventArgs.cs
- ThousandthOfEmRealDoubles.cs
- SchemaElementLookUpTable.cs
- EditableTreeList.cs
- CodeLinePragma.cs
- WebCategoryAttribute.cs
- Column.cs
- DBConcurrencyException.cs
- QueryOperationResponseOfT.cs
- ClipboardData.cs
- _UriSyntax.cs
- FrameworkTextComposition.cs
- HtmlPhoneCallAdapter.cs
- ControlIdConverter.cs
- CultureMapper.cs
- ErrorCodes.cs
- FileDialogPermission.cs
- SqlDuplicator.cs
- PlacementWorkspace.cs
- SQLBinary.cs
- ProcessManager.cs
- CqlParser.cs
- Rule.cs
- OdbcInfoMessageEvent.cs
- SqlDataReader.cs
- SqlError.cs
- HttpProtocolReflector.cs
- SafeFileMapViewHandle.cs
- SendMessageRecord.cs
- PerformanceCounterCategory.cs
- EntityTypeBase.cs
- ToolStripItemRenderEventArgs.cs
- GradientBrush.cs
- AxParameterData.cs
- GeometryValueSerializer.cs
- Vector3DAnimationBase.cs
- DoubleLinkListEnumerator.cs
- FilterableAttribute.cs
- XmlSchemaImporter.cs
- XamlReaderConstants.cs
- QueryOpcode.cs
- EnterpriseServicesHelper.cs
- Currency.cs
- DynamicQueryStringParameter.cs
- TextAnchor.cs
- DataSourceCollectionBase.cs
- AddingNewEventArgs.cs
- IndicCharClassifier.cs
- XsltLibrary.cs
- Rfc2898DeriveBytes.cs
- EventLogQuery.cs
- DecoderFallbackWithFailureFlag.cs
- XmlILModule.cs
- ContainerSelectorGlyph.cs
- Crc32.cs
- GenericRootAutomationPeer.cs
- GroupBoxDesigner.cs
- DynamicObjectAccessor.cs
- AspNetHostingPermission.cs
- TraceLog.cs
- DecimalConverter.cs
- InstanceLockedException.cs
- PrtCap_Public_Simple.cs
- WebRequestModuleElementCollection.cs
- DataExpression.cs
- TreeViewCancelEvent.cs
- TransactionChannelListener.cs
- TemplateAction.cs
- OrderedHashRepartitionStream.cs
- ExpressionEvaluator.cs
- SqlUserDefinedAggregateAttribute.cs
- CodeDirectoryCompiler.cs
- RegexGroupCollection.cs
- ParenthesizePropertyNameAttribute.cs
- Tuple.cs
- XmlSchemaImporter.cs
- ExpressionHelper.cs
- WriteableBitmap.cs
- ToolStripHighContrastRenderer.cs
- TrustManager.cs
- EntityStoreSchemaFilterEntry.cs
- ZipIOBlockManager.cs
- AnyAllSearchOperator.cs
- ScriptResourceAttribute.cs
- AttributeCollection.cs
- DynamicMetaObjectBinder.cs
- MemberRelationshipService.cs
- StreamReader.cs
- ClientFormsIdentity.cs
- PersonalizablePropertyEntry.cs
- SmtpReplyReaderFactory.cs
- DateTime.cs
- PartBasedPackageProperties.cs
- ContextDataSourceContextData.cs
- DummyDataSource.cs
- ToolStripRendererSwitcher.cs
- OperandQuery.cs
- SignerInfo.cs
- WebPartActionVerb.cs
- serverconfig.cs