Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ChangeConflicts.cs
- AllMembershipCondition.cs
- DataComponentMethodGenerator.cs
- Attribute.cs
- CancellableEnumerable.cs
- SettingsPropertyValueCollection.cs
- ActivityIdHeader.cs
- SBCSCodePageEncoding.cs
- RotateTransform3D.cs
- PictureBox.cs
- InvalidateEvent.cs
- XmlRawWriter.cs
- DataConnectionHelper.cs
- XmlQueryStaticData.cs
- UserControl.cs
- SimpleHandlerFactory.cs
- PersonalizationEntry.cs
- ThrowHelper.cs
- dbenumerator.cs
- DotNetATv1WindowsLogEntrySerializer.cs
- TimelineClockCollection.cs
- ToolStripDropDownClosedEventArgs.cs
- AsyncCompletedEventArgs.cs
- COMException.cs
- ContentFilePart.cs
- bindurihelper.cs
- ReflectTypeDescriptionProvider.cs
- HtmlControlPersistable.cs
- WindowsBrush.cs
- PersonalizationDictionary.cs
- MobileUserControlDesigner.cs
- ToolStripHighContrastRenderer.cs
- _DisconnectOverlappedAsyncResult.cs
- DateRangeEvent.cs
- RolePrincipal.cs
- Helpers.cs
- CfgRule.cs
- SymbolTable.cs
- SmtpNegotiateAuthenticationModule.cs
- XmlWhitespace.cs
- BypassElementCollection.cs
- EditCommandColumn.cs
- XmlDocument.cs
- NetworkCredential.cs
- MemberInfoSerializationHolder.cs
- ColorTransform.cs
- EntityDataSourceMemberPath.cs
- XmlIncludeAttribute.cs
- FocusChangedEventArgs.cs
- NativeActivityContext.cs
- VisualTarget.cs
- SafeLibraryHandle.cs
- WebPartZoneCollection.cs
- ResourceProviderFactory.cs
- HttpClientCertificate.cs
- TreeNodeSelectionProcessor.cs
- FigureParagraph.cs
- UnknownWrapper.cs
- ConnectionPoint.cs
- DataTableMappingCollection.cs
- AttributeParameterInfo.cs
- ListItemViewControl.cs
- XmlAttributeCache.cs
- DecimalAnimation.cs
- ButtonChrome.cs
- ReferencedCollectionType.cs
- AssociationTypeEmitter.cs
- ArgumentException.cs
- CultureInfoConverter.cs
- SHA256CryptoServiceProvider.cs
- SimpleLine.cs
- SimpleLine.cs
- TreeNodeBindingCollection.cs
- TdsRecordBufferSetter.cs
- Stylesheet.cs
- X509ChainPolicy.cs
- XMLSyntaxException.cs
- Size.cs
- CaseExpr.cs
- FileReservationCollection.cs
- TimeZone.cs
- BindingManagerDataErrorEventArgs.cs
- FullTextLine.cs
- TextHintingModeValidation.cs
- DependsOnAttribute.cs
- UInt16Storage.cs
- TrackingStringDictionary.cs
- ZipIOBlockManager.cs
- CodeDirectoryCompiler.cs
- UnsafeNativeMethods.cs
- wgx_render.cs
- TextRunCacheImp.cs
- OdbcUtils.cs
- ArrayList.cs
- DiagnosticTrace.cs
- LinqMaximalSubtreeNominator.cs
- SecurityException.cs
- ParenthesizePropertyNameAttribute.cs
- SpecularMaterial.cs
- MenuItemAutomationPeer.cs