Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WF / Activities / Role / DirectoryRedirect.cs / 1305376 / DirectoryRedirect.cs
#region Using directives using System; using System.Collections.Generic; using System.Text; using System.DirectoryServices; #endregion namespace System.Workflow.Activities { [Serializable] sealed internal class DirectoryRedirect : IDirectoryOperation { private String m_getPropertyName; private String m_searchPropertyName; private bool m_recursive; public DirectoryRedirect(String getPropertyName, String searchPropertyName) : this( getPropertyName, searchPropertyName, false ) { } public DirectoryRedirect(String getPropertyName, String searchPropertyName, bool recursive) { if (getPropertyName == null) throw new ArgumentNullException("getPropertyName"); if (searchPropertyName == null) throw new ArgumentNullException("searchPropertyName"); this.m_getPropertyName = getPropertyName; this.m_searchPropertyName = searchPropertyName; this.m_recursive = recursive; } public void GetResult(DirectoryEntry rootEntry, DirectoryEntry currentEntry, Listresponse) { if (rootEntry == null) throw new ArgumentNullException("rootEntry"); if (currentEntry == null) throw new ArgumentNullException("currentEntry"); if (response == null) throw new ArgumentNullException("response"); if (!this.m_recursive) { using (DirectorySearcher searcher = CreateSearcher(rootEntry, currentEntry)) { foreach (SearchResult result in searcher.FindAll()) { response.Add(result.GetDirectoryEntry()); } } } else { Dictionary dResponse = new Dictionary (); Stack stack = new Stack (); stack.Push(currentEntry); while (stack.Count != 0) { DirectoryEntry currentTop = stack.Pop(); using (DirectorySearcher searcher = CreateSearcher(rootEntry, currentTop)) { foreach (SearchResult result in searcher.FindAll()) { DirectoryEntry newEntry = result.GetDirectoryEntry(); if (!dResponse.ContainsKey(newEntry.Guid)) dResponse.Add(newEntry.Guid, newEntry); stack.Push(newEntry); } } } response.AddRange(dResponse.Values); } } private DirectorySearcher CreateSearcher(DirectoryEntry rootEntry, DirectoryEntry currentEntry) { DirectorySearcher searcher = new DirectorySearcher(rootEntry); PropertyValueCollection values = currentEntry.Properties[this.m_getPropertyName]; System.Diagnostics.Debug.Assert(values.Count == 1); searcher.Filter = "(" + this.m_searchPropertyName + "=" + values[0] + ")"; return searcher; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. #region Using directives using System; using System.Collections.Generic; using System.Text; using System.DirectoryServices; #endregion namespace System.Workflow.Activities { [Serializable] sealed internal class DirectoryRedirect : IDirectoryOperation { private String m_getPropertyName; private String m_searchPropertyName; private bool m_recursive; public DirectoryRedirect(String getPropertyName, String searchPropertyName) : this( getPropertyName, searchPropertyName, false ) { } public DirectoryRedirect(String getPropertyName, String searchPropertyName, bool recursive) { if (getPropertyName == null) throw new ArgumentNullException("getPropertyName"); if (searchPropertyName == null) throw new ArgumentNullException("searchPropertyName"); this.m_getPropertyName = getPropertyName; this.m_searchPropertyName = searchPropertyName; this.m_recursive = recursive; } public void GetResult(DirectoryEntry rootEntry, DirectoryEntry currentEntry, List response) { if (rootEntry == null) throw new ArgumentNullException("rootEntry"); if (currentEntry == null) throw new ArgumentNullException("currentEntry"); if (response == null) throw new ArgumentNullException("response"); if (!this.m_recursive) { using (DirectorySearcher searcher = CreateSearcher(rootEntry, currentEntry)) { foreach (SearchResult result in searcher.FindAll()) { response.Add(result.GetDirectoryEntry()); } } } else { Dictionary dResponse = new Dictionary (); Stack stack = new Stack (); stack.Push(currentEntry); while (stack.Count != 0) { DirectoryEntry currentTop = stack.Pop(); using (DirectorySearcher searcher = CreateSearcher(rootEntry, currentTop)) { foreach (SearchResult result in searcher.FindAll()) { DirectoryEntry newEntry = result.GetDirectoryEntry(); if (!dResponse.ContainsKey(newEntry.Guid)) dResponse.Add(newEntry.Guid, newEntry); stack.Push(newEntry); } } } response.AddRange(dResponse.Values); } } private DirectorySearcher CreateSearcher(DirectoryEntry rootEntry, DirectoryEntry currentEntry) { DirectorySearcher searcher = new DirectorySearcher(rootEntry); PropertyValueCollection values = currentEntry.Properties[this.m_getPropertyName]; System.Diagnostics.Debug.Assert(values.Count == 1); searcher.Filter = "(" + this.m_searchPropertyName + "=" + values[0] + ")"; return searcher; } } } // 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
- GridViewCancelEditEventArgs.cs
- DataGridTextBox.cs
- InstanceData.cs
- EventSinkHelperWriter.cs
- CompoundFileStreamReference.cs
- DataContractSerializerFaultFormatter.cs
- TabItemAutomationPeer.cs
- ModuleBuilder.cs
- EncryptedHeaderXml.cs
- WebPartMinimizeVerb.cs
- GroupBox.cs
- IndicCharClassifier.cs
- DataTableNewRowEvent.cs
- EndpointPerformanceCounters.cs
- ListViewItemSelectionChangedEvent.cs
- CompositeCollectionView.cs
- AbstractSvcMapFileLoader.cs
- InfiniteTimeSpanConverter.cs
- PolicyUnit.cs
- HttpCacheVary.cs
- TextRunTypographyProperties.cs
- ObjectMemberMapping.cs
- FreezableCollection.cs
- BindingList.cs
- ClientBase.cs
- Html32TextWriter.cs
- TdsParserSafeHandles.cs
- ReaderWriterLockWrapper.cs
- Visual3DCollection.cs
- SmiConnection.cs
- ObjectStorage.cs
- RadioButtonList.cs
- WebPartAuthorizationEventArgs.cs
- IdentitySection.cs
- RepeaterItemEventArgs.cs
- RequestContext.cs
- SHA1.cs
- LinqDataSourceDisposeEventArgs.cs
- ThreadAbortException.cs
- RuleDefinitions.cs
- SchemaManager.cs
- WorkflowInstanceAbortedRecord.cs
- EntitySetDataBindingList.cs
- sqlcontext.cs
- rsa.cs
- MaxMessageSizeStream.cs
- FileDialogPermission.cs
- MarkerProperties.cs
- COAUTHIDENTITY.cs
- CodeArgumentReferenceExpression.cs
- SelectionChangedEventArgs.cs
- DataGridBeginningEditEventArgs.cs
- AuthenticationService.cs
- DiagnosticTrace.cs
- CheckBoxRenderer.cs
- CompositeControl.cs
- ConfigXmlComment.cs
- DataPagerFieldCollection.cs
- Bold.cs
- ComplexObject.cs
- SecurityContext.cs
- HttpRequestCacheValidator.cs
- SafeProcessHandle.cs
- ObjectDataSourceStatusEventArgs.cs
- LockingPersistenceProvider.cs
- XmlAtomErrorReader.cs
- BamlLocalizabilityResolver.cs
- SmiConnection.cs
- contentDescriptor.cs
- SqlExpander.cs
- BinaryCommonClasses.cs
- CqlQuery.cs
- BaseAsyncResult.cs
- DesignerActionItem.cs
- recordstatefactory.cs
- OutputCacheSettingsSection.cs
- MasterPageParser.cs
- StreamWithDictionary.cs
- TokenBasedSet.cs
- EncryptedKeyIdentifierClause.cs
- FilterUserControlBase.cs
- AdapterSwitches.cs
- BamlLocalizableResourceKey.cs
- DataReceivedEventArgs.cs
- MarginCollapsingState.cs
- PropertyValueUIItem.cs
- Border.cs
- DesignerToolboxInfo.cs
- FormatConvertedBitmap.cs
- DataGridViewLinkCell.cs
- LinearKeyFrames.cs
- MeasureData.cs
- RowsCopiedEventArgs.cs
- Utilities.cs
- FontDifferentiator.cs
- SQLGuid.cs
- ObjectView.cs
- SQLDoubleStorage.cs
- ExpressionVisitor.cs
- TableItemStyle.cs