Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WF / Activities / Rules / RuleSetCollection.cs / 1305376 / RuleSetCollection.cs
using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Globalization; using System.Text; using System.Workflow.ComponentModel; namespace System.Workflow.Activities.Rules { #region class RuleSetCollection public sealed class RuleSetCollection : KeyedCollection, IWorkflowChangeDiff { #region members and constructors private bool _runtimeInitialized; [NonSerialized] private object syncLock = new object(); public RuleSetCollection() { } #endregion #region keyed collection members protected override string GetKeyForItem(RuleSet item) { return item.Name; } protected override void InsertItem(int index, RuleSet item) { if (this._runtimeInitialized) throw new InvalidOperationException(SR.GetString(SR.Error_CanNotChangeAtRuntime)); if (item.Name != null && item.Name.Length >= 0 && this.Contains(item.Name)) { string message = string.Format(CultureInfo.CurrentCulture, Messages.RuleSetExists, item.Name); throw new ArgumentException(message); } base.InsertItem(index, item); } protected override void RemoveItem(int index) { if (this._runtimeInitialized) throw new InvalidOperationException(SR.GetString(SR.Error_CanNotChangeAtRuntime)); base.RemoveItem(index); } protected override void SetItem(int index, RuleSet item) { if (this._runtimeInitialized) throw new InvalidOperationException(SR.GetString(SR.Error_CanNotChangeAtRuntime)); base.SetItem(index, item); } new public void Add(RuleSet item) { if (this._runtimeInitialized) throw new InvalidOperationException(SR.GetString(SR.Error_CanNotChangeAtRuntime)); if (null == item) { throw new ArgumentNullException("item"); } if (null == item.Name) { string message = string.Format(CultureInfo.CurrentCulture, Messages.InvalidRuleSetName, "item.Name"); throw new ArgumentException(message); } base.Add(item); } #endregion #region runtime initializing internal void OnRuntimeInitialized() { lock (this.syncLock) { if (this._runtimeInitialized) return; foreach (RuleSet ruleSet in this) { ruleSet.OnRuntimeInitialized(); } _runtimeInitialized = true; } } internal bool RuntimeMode { set { this._runtimeInitialized = value; } get { return this._runtimeInitialized; } } internal string GenerateRuleSetName() { string nameBase = Messages.NewRuleSetName; string newName; int i = 1; do { newName = nameBase + i.ToString(CultureInfo.InvariantCulture); i++; } while(this.Contains(newName)); return newName; } #endregion #region IWorkflowChangeDiff Members public IList Diff(object originalDefinition, object changedDefinition) { List listChanges = new List (); RuleSetCollection originalRuleSets = (RuleSetCollection)originalDefinition; RuleSetCollection changedRuleSets = (RuleSetCollection)changedDefinition; if (null != changedRuleSets) { foreach (RuleSet changedRuleSet in changedRuleSets) { if ((originalRuleSets != null) && (originalRuleSets.Contains(changedRuleSet.Name))) { RuleSet originalRuleSet = originalRuleSets[changedRuleSet.Name]; if (!originalRuleSet.Equals(changedRuleSet)) { listChanges.Add(new UpdatedRuleSetAction(originalRuleSet, changedRuleSet)); } } else { listChanges.Add(new AddedRuleSetAction(changedRuleSet)); } } } if (null != originalRuleSets) { foreach (RuleSet originalRuleSet in originalRuleSets) { if ((changedRuleSets == null) || (!changedRuleSets.Contains(originalRuleSet.Name))) { listChanges.Add(new RemovedRuleSetAction(originalRuleSet)); } } } return listChanges; } #endregion } #endregion } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Globalization; using System.Text; using System.Workflow.ComponentModel; namespace System.Workflow.Activities.Rules { #region class RuleSetCollection public sealed class RuleSetCollection : KeyedCollection , IWorkflowChangeDiff { #region members and constructors private bool _runtimeInitialized; [NonSerialized] private object syncLock = new object(); public RuleSetCollection() { } #endregion #region keyed collection members protected override string GetKeyForItem(RuleSet item) { return item.Name; } protected override void InsertItem(int index, RuleSet item) { if (this._runtimeInitialized) throw new InvalidOperationException(SR.GetString(SR.Error_CanNotChangeAtRuntime)); if (item.Name != null && item.Name.Length >= 0 && this.Contains(item.Name)) { string message = string.Format(CultureInfo.CurrentCulture, Messages.RuleSetExists, item.Name); throw new ArgumentException(message); } base.InsertItem(index, item); } protected override void RemoveItem(int index) { if (this._runtimeInitialized) throw new InvalidOperationException(SR.GetString(SR.Error_CanNotChangeAtRuntime)); base.RemoveItem(index); } protected override void SetItem(int index, RuleSet item) { if (this._runtimeInitialized) throw new InvalidOperationException(SR.GetString(SR.Error_CanNotChangeAtRuntime)); base.SetItem(index, item); } new public void Add(RuleSet item) { if (this._runtimeInitialized) throw new InvalidOperationException(SR.GetString(SR.Error_CanNotChangeAtRuntime)); if (null == item) { throw new ArgumentNullException("item"); } if (null == item.Name) { string message = string.Format(CultureInfo.CurrentCulture, Messages.InvalidRuleSetName, "item.Name"); throw new ArgumentException(message); } base.Add(item); } #endregion #region runtime initializing internal void OnRuntimeInitialized() { lock (this.syncLock) { if (this._runtimeInitialized) return; foreach (RuleSet ruleSet in this) { ruleSet.OnRuntimeInitialized(); } _runtimeInitialized = true; } } internal bool RuntimeMode { set { this._runtimeInitialized = value; } get { return this._runtimeInitialized; } } internal string GenerateRuleSetName() { string nameBase = Messages.NewRuleSetName; string newName; int i = 1; do { newName = nameBase + i.ToString(CultureInfo.InvariantCulture); i++; } while(this.Contains(newName)); return newName; } #endregion #region IWorkflowChangeDiff Members public IList Diff(object originalDefinition, object changedDefinition) { List listChanges = new List (); RuleSetCollection originalRuleSets = (RuleSetCollection)originalDefinition; RuleSetCollection changedRuleSets = (RuleSetCollection)changedDefinition; if (null != changedRuleSets) { foreach (RuleSet changedRuleSet in changedRuleSets) { if ((originalRuleSets != null) && (originalRuleSets.Contains(changedRuleSet.Name))) { RuleSet originalRuleSet = originalRuleSets[changedRuleSet.Name]; if (!originalRuleSet.Equals(changedRuleSet)) { listChanges.Add(new UpdatedRuleSetAction(originalRuleSet, changedRuleSet)); } } else { listChanges.Add(new AddedRuleSetAction(changedRuleSet)); } } } if (null != originalRuleSets) { foreach (RuleSet originalRuleSet in originalRuleSets) { if ((changedRuleSets == null) || (!changedRuleSets.Contains(originalRuleSet.Name))) { listChanges.Add(new RemovedRuleSetAction(originalRuleSet)); } } } return listChanges; } #endregion } #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
- BuildResult.cs
- QueryResponse.cs
- SessionStateUtil.cs
- MsmqHostedTransportConfiguration.cs
- CodeSubDirectoriesCollection.cs
- Package.cs
- MaskPropertyEditor.cs
- WebBrowserContainer.cs
- PackageRelationshipCollection.cs
- UpdateTracker.cs
- MimePart.cs
- DataGridViewTextBoxColumn.cs
- Menu.cs
- ClientConfigurationSystem.cs
- SemanticAnalyzer.cs
- SQLGuidStorage.cs
- Graphics.cs
- ValidationEventArgs.cs
- TextModifier.cs
- ProfileServiceManager.cs
- HostedHttpTransportManager.cs
- PenThread.cs
- SapiRecoContext.cs
- ItemsControl.cs
- PixelShader.cs
- WeakEventManager.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- EntityType.cs
- HtmlTable.cs
- Focus.cs
- Wrapper.cs
- CalendarAutoFormat.cs
- SmiEventSink_DeferedProcessing.cs
- ColorTranslator.cs
- SyndicationCategory.cs
- SymbolDocumentInfo.cs
- WebPartConnectionsConfigureVerb.cs
- SqlInternalConnectionTds.cs
- FileSystemEventArgs.cs
- TemplateBindingExpression.cs
- ReadOnlyPermissionSet.cs
- NetSectionGroup.cs
- ReceiveCompletedEventArgs.cs
- XmlSchemaComplexContentExtension.cs
- CodeExporter.cs
- QilNode.cs
- CaseExpr.cs
- DocumentsTrace.cs
- TreeNodeCollection.cs
- CardSpaceException.cs
- LambdaCompiler.Unary.cs
- PersonalizationProviderCollection.cs
- WebPartConnectionsCancelEventArgs.cs
- HitTestResult.cs
- LocalizableResourceBuilder.cs
- EditorZone.cs
- ToolStripItemRenderEventArgs.cs
- TemplateComponentConnector.cs
- CryptoStream.cs
- TraceLevelStore.cs
- QuaternionRotation3D.cs
- AdornerPresentationContext.cs
- RegistrySecurity.cs
- Size3D.cs
- GridPatternIdentifiers.cs
- BitmapEffectGroup.cs
- Color.cs
- basecomparevalidator.cs
- ListSortDescriptionCollection.cs
- DataGridItemAttachedStorage.cs
- OleDbStruct.cs
- NullRuntimeConfig.cs
- MessageRpc.cs
- ImageUrlEditor.cs
- IndexExpression.cs
- DefaultPropertyAttribute.cs
- TypedRowGenerator.cs
- CalendarButtonAutomationPeer.cs
- X509Certificate.cs
- LocalValueEnumerator.cs
- TextEditorTyping.cs
- DomainUpDown.cs
- IncrementalReadDecoders.cs
- ListBindableAttribute.cs
- DataGridViewRowsRemovedEventArgs.cs
- EventWaitHandleSecurity.cs
- TranslateTransform3D.cs
- SystemIPGlobalProperties.cs
- CompilerErrorCollection.cs
- Button.cs
- BlurEffect.cs
- TemplateBindingExtension.cs
- RuntimeHelpers.cs
- CodePropertyReferenceExpression.cs
- XmlException.cs
- ConfigurationCollectionAttribute.cs
- TypeElementCollection.cs
- VoiceChangeEventArgs.cs
- DBNull.cs
- VisualStyleTypesAndProperties.cs