Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / DataAccess / ADConnectionHelper.cs / 1 / ADConnectionHelper.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.DataAccess { using System.Net; using System.Diagnostics; using System.Web.Hosting; using System.Web.Security; using System.DirectoryServices; using System.DirectoryServices.Protocols; internal static class ActiveDirectoryConnectionHelper { internal static DirectoryEntryHolder GetDirectoryEntry(DirectoryInformation directoryInfo, string objectDN, bool revertImpersonation) { Debug.Assert ((objectDN != null) && (objectDN.Length != 0)); // // Get the adspath and create a directory entry holder // DirectoryEntryHolder holder = new DirectoryEntryHolder(new DirectoryEntry ( directoryInfo.GetADsPath(objectDN), directoryInfo.GetUsername(), directoryInfo.GetPassword(), directoryInfo.AuthenticationTypes)); // // If revertImpersonation is true, we need to revert // holder.Open(null, revertImpersonation); return holder; } } internal sealed class DirectoryEntryHolder { private ImpersonationContext ctx = null; private bool opened; private DirectoryEntry entry; internal DirectoryEntryHolder (DirectoryEntry entry) { Debug.Assert (entry != null); this.entry = entry; } internal void Open (HttpContext context, bool revertImpersonate) { if (opened) return; // Already opened // // Revert client impersonation if required // if (revertImpersonate) { ctx = new ApplicationImpersonationContext(); } else { ctx = null; } opened = true; // Open worked! } internal void Close () { if (!opened) // Not open! return; entry.Dispose(); RestoreImpersonation(); opened = false; } internal void RestoreImpersonation() { // Restore impersonation if (ctx != null) { ctx.Undo(); ctx = null; } } internal DirectoryEntry DirectoryEntry { get { return entry; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.DataAccess { using System.Net; using System.Diagnostics; using System.Web.Hosting; using System.Web.Security; using System.DirectoryServices; using System.DirectoryServices.Protocols; internal static class ActiveDirectoryConnectionHelper { internal static DirectoryEntryHolder GetDirectoryEntry(DirectoryInformation directoryInfo, string objectDN, bool revertImpersonation) { Debug.Assert ((objectDN != null) && (objectDN.Length != 0)); // // Get the adspath and create a directory entry holder // DirectoryEntryHolder holder = new DirectoryEntryHolder(new DirectoryEntry ( directoryInfo.GetADsPath(objectDN), directoryInfo.GetUsername(), directoryInfo.GetPassword(), directoryInfo.AuthenticationTypes)); // // If revertImpersonation is true, we need to revert // holder.Open(null, revertImpersonation); return holder; } } internal sealed class DirectoryEntryHolder { private ImpersonationContext ctx = null; private bool opened; private DirectoryEntry entry; internal DirectoryEntryHolder (DirectoryEntry entry) { Debug.Assert (entry != null); this.entry = entry; } internal void Open (HttpContext context, bool revertImpersonate) { if (opened) return; // Already opened // // Revert client impersonation if required // if (revertImpersonate) { ctx = new ApplicationImpersonationContext(); } else { ctx = null; } opened = true; // Open worked! } internal void Close () { if (!opened) // Not open! return; entry.Dispose(); RestoreImpersonation(); opened = false; } internal void RestoreImpersonation() { // Restore impersonation if (ctx != null) { ctx.Undo(); ctx = null; } } internal DirectoryEntry DirectoryEntry { get { return entry; } } } } // 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
- HtmlTableRowCollection.cs
- CachedPathData.cs
- TdsParserHelperClasses.cs
- UInt64Storage.cs
- ToggleButton.cs
- FrameworkElementFactory.cs
- DocumentPageHost.cs
- PictureBox.cs
- SynchronizationContext.cs
- FontStretchConverter.cs
- ConvertersCollection.cs
- TemplatedWizardStep.cs
- SurrogateEncoder.cs
- FileResponseElement.cs
- DefaultDialogButtons.cs
- InfoCardSymmetricAlgorithm.cs
- EdmRelationshipRoleAttribute.cs
- UxThemeWrapper.cs
- ValueExpressions.cs
- SafeWaitHandle.cs
- MouseGestureConverter.cs
- SelectorItemAutomationPeer.cs
- WebBrowserContainer.cs
- MatrixCamera.cs
- ScaleTransform.cs
- SpanIndex.cs
- RequestCacheEntry.cs
- GlyphInfoList.cs
- templategroup.cs
- RichTextBox.cs
- DataColumnMapping.cs
- WindowProviderWrapper.cs
- SafeFileMapViewHandle.cs
- FormsAuthenticationModule.cs
- DataGridViewCellMouseEventArgs.cs
- ToolStripContentPanel.cs
- SimplePropertyEntry.cs
- DateTimeOffset.cs
- columnmapfactory.cs
- HostingEnvironmentSection.cs
- SecurityContext.cs
- SimpleApplicationHost.cs
- ADRoleFactory.cs
- UriExt.cs
- XmlWellformedWriter.cs
- ListBoxChrome.cs
- TransactionFlowElement.cs
- NeutralResourcesLanguageAttribute.cs
- ConfigXmlSignificantWhitespace.cs
- WebGetAttribute.cs
- XmlTypeMapping.cs
- Stream.cs
- DateTimeStorage.cs
- ByeMessage11.cs
- TransportSecurityHelpers.cs
- IteratorFilter.cs
- TabControl.cs
- FrugalList.cs
- panel.cs
- InstanceKeyNotReadyException.cs
- WebRequest.cs
- DirectoryObjectSecurity.cs
- KnownBoxes.cs
- TaiwanCalendar.cs
- HealthMonitoringSection.cs
- SoapExtension.cs
- EventLogPermission.cs
- ProtectedConfiguration.cs
- ConnectionConsumerAttribute.cs
- ResizeGrip.cs
- DropShadowEffect.cs
- SvcMapFile.cs
- FrameworkTextComposition.cs
- SystemSounds.cs
- SpecularMaterial.cs
- WindowsFormsHelpers.cs
- BrushMappingModeValidation.cs
- FixUp.cs
- Menu.cs
- ActivityTrace.cs
- TransformerInfoCollection.cs
- Span.cs
- DeclarativeExpressionConditionDeclaration.cs
- DesignDataSource.cs
- _TLSstream.cs
- InfocardInteractiveChannelInitializer.cs
- DescendantOverDescendantQuery.cs
- ButtonBaseAutomationPeer.cs
- SelectedGridItemChangedEvent.cs
- PrivateFontCollection.cs
- SerializationFieldInfo.cs
- GroupItemAutomationPeer.cs
- IPHostEntry.cs
- HtmlElementCollection.cs
- EnumUnknown.cs
- ToolStripContentPanel.cs
- LicenseException.cs
- JsonFormatMapping.cs
- XmlILOptimizerVisitor.cs
- TextRangeBase.cs