Code:
/ FX-1434 / FX-1434 / 1.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
- Oci.cs
- CachedRequestParams.cs
- SecurityUtils.cs
- Timer.cs
- ScriptReferenceBase.cs
- RSAOAEPKeyExchangeFormatter.cs
- StringDictionaryCodeDomSerializer.cs
- TransactionChannelFaultConverter.cs
- ThreadAbortException.cs
- BaseTransportHeaders.cs
- ResponseBodyWriter.cs
- ProtocolsSection.cs
- ControlCollection.cs
- ReferenceAssemblyAttribute.cs
- IIS7WorkerRequest.cs
- PropertyManager.cs
- MethodBuilderInstantiation.cs
- AttributeProviderAttribute.cs
- DataServiceRequest.cs
- SqlLiftIndependentRowExpressions.cs
- SR.cs
- ToolStripItemCollection.cs
- ColorTransformHelper.cs
- ApplicationServiceHelper.cs
- GlobalizationSection.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- RegexWriter.cs
- ToolStripControlHost.cs
- PageCache.cs
- OpenFileDialog.cs
- SimpleMailWebEventProvider.cs
- FolderBrowserDialog.cs
- RemotingConfiguration.cs
- StackSpiller.Generated.cs
- Ray3DHitTestResult.cs
- HttpResponseHeader.cs
- ToolboxComponentsCreatedEventArgs.cs
- FileIOPermission.cs
- GridViewColumn.cs
- BaseParagraph.cs
- ControlDesignerState.cs
- SimpleMailWebEventProvider.cs
- EncryptedPackageFilter.cs
- DbExpressionBuilder.cs
- NamespaceList.cs
- DataKey.cs
- SignedInfo.cs
- WeakEventManager.cs
- DataListItem.cs
- StorageEndPropertyMapping.cs
- TextFormatterImp.cs
- JoinTreeSlot.cs
- FixedSOMGroup.cs
- Label.cs
- EncryptedPackage.cs
- MetadataException.cs
- DoubleAnimationUsingPath.cs
- Timer.cs
- WSFederationHttpSecurity.cs
- TimersDescriptionAttribute.cs
- StrokeNodeData.cs
- CodeCompileUnit.cs
- DrawingVisual.cs
- ValueExpressions.cs
- Pens.cs
- SystemThemeKey.cs
- DataTableMapping.cs
- AudioLevelUpdatedEventArgs.cs
- SuppressMergeCheckAttribute.cs
- ImportCatalogPart.cs
- CharacterHit.cs
- safemediahandle.cs
- SafeNativeMemoryHandle.cs
- EdmProviderManifest.cs
- AsyncPostBackTrigger.cs
- OracleNumber.cs
- FreezableDefaultValueFactory.cs
- UInt32Storage.cs
- MouseCaptureWithinProperty.cs
- DoubleCollectionValueSerializer.cs
- DataServicePagingProviderWrapper.cs
- ExecutionContext.cs
- XPathEmptyIterator.cs
- CategoryEditor.cs
- SendKeys.cs
- DocumentPageTextView.cs
- CursorConverter.cs
- UInt32.cs
- XmlQueryStaticData.cs
- MultiplexingFormatMapping.cs
- StringPropertyBuilder.cs
- SrgsToken.cs
- TextContainerHelper.cs
- IListConverters.cs
- WebResourceUtil.cs
- UMPAttributes.cs
- AuthenticationService.cs
- LinqDataSourceSelectEventArgs.cs
- TableCell.cs
- RawTextInputReport.cs