Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / DataAccess / ADConnectionHelper.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- QuaternionAnimation.cs
- GridItemPatternIdentifiers.cs
- PageCache.cs
- XPathNavigatorKeyComparer.cs
- DesignerTransaction.cs
- OracleDateTime.cs
- SrgsElementFactory.cs
- UntypedNullExpression.cs
- DeferredSelectedIndexReference.cs
- ExpressionConverter.cs
- SAPICategories.cs
- StrokeCollection.cs
- ResourceDisplayNameAttribute.cs
- webbrowsersite.cs
- XmlProcessingInstruction.cs
- Range.cs
- DocumentOrderQuery.cs
- EventProvider.cs
- CqlBlock.cs
- SaveFileDialog.cs
- DocumentViewerHelper.cs
- ResourceDictionaryCollection.cs
- SelectionWordBreaker.cs
- ListBoxChrome.cs
- ResourceManagerWrapper.cs
- Accessors.cs
- RemotingAttributes.cs
- IconEditor.cs
- storepermission.cs
- EndpointNotFoundException.cs
- ModuleConfigurationInfo.cs
- ApplicationSecurityInfo.cs
- AccessText.cs
- DataGridCheckBoxColumn.cs
- FontWeightConverter.cs
- TextBoxDesigner.cs
- DataExpression.cs
- ListControlDesigner.cs
- FrugalMap.cs
- ContentElementAutomationPeer.cs
- BreakSafeBase.cs
- WebServiceFaultDesigner.cs
- ErrorWebPart.cs
- BasicExpandProvider.cs
- DebuggerAttributes.cs
- Point.cs
- cookie.cs
- XmlDocumentFragment.cs
- EndpointInstanceProvider.cs
- DynamicEndpoint.cs
- DesignBindingPicker.cs
- TreeBuilder.cs
- PermissionSetTriple.cs
- GraphicsContainer.cs
- ViewCellRelation.cs
- ToolStripRenderer.cs
- WsdlParser.cs
- Grammar.cs
- OrderByBuilder.cs
- AnnotationStore.cs
- Transactions.cs
- ColumnHeaderConverter.cs
- _NativeSSPI.cs
- PackageDigitalSignatureManager.cs
- VirtualizingPanel.cs
- ReadOnlyMetadataCollection.cs
- DataGridViewSelectedRowCollection.cs
- TransportChannelFactory.cs
- QilSortKey.cs
- CurrencyWrapper.cs
- IncomingWebRequestContext.cs
- Point3DKeyFrameCollection.cs
- Point.cs
- EnterpriseServicesHelper.cs
- Line.cs
- DataMisalignedException.cs
- AppDomain.cs
- IntPtr.cs
- RecognizerStateChangedEventArgs.cs
- ExtendedTransformFactory.cs
- AppDomainProtocolHandler.cs
- ClusterSafeNativeMethods.cs
- CodeNamespaceImport.cs
- SmiTypedGetterSetter.cs
- SoapIgnoreAttribute.cs
- SHA1.cs
- TreeNodeSelectionProcessor.cs
- ConfigXmlDocument.cs
- documentation.cs
- RtfControls.cs
- FileRecordSequenceCompletedAsyncResult.cs
- ThreadInterruptedException.cs
- UnsafeNativeMethods.cs
- KeyValueSerializer.cs
- ThrowHelper.cs
- LinqDataView.cs
- RadioButtonRenderer.cs
- Base64Encoder.cs
- NavigationProgressEventArgs.cs
- FlowDocumentScrollViewer.cs