Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- RelatedCurrencyManager.cs
- Int32Storage.cs
- ObjectToIdCache.cs
- WebPartZoneBase.cs
- ObjectIDGenerator.cs
- FontInfo.cs
- ImageCodecInfo.cs
- FontDialog.cs
- ComponentResourceKey.cs
- DiscreteKeyFrames.cs
- WorkflowServiceHostFactory.cs
- ActivityDefaults.cs
- _DomainName.cs
- XmlSerializerFactory.cs
- DatatypeImplementation.cs
- TextFormatterContext.cs
- DBConnection.cs
- HttpListenerPrefixCollection.cs
- DataKey.cs
- SqlServer2KCompatibilityAnnotation.cs
- AttachedPropertyInfo.cs
- PagedDataSource.cs
- RemotingServices.cs
- Solver.cs
- DataSetUtil.cs
- SqlProviderServices.cs
- DataGridViewColumnCollectionEditor.cs
- LinearQuaternionKeyFrame.cs
- ModelTypeConverter.cs
- ToolboxBitmapAttribute.cs
- SymbolEqualComparer.cs
- EditorAttribute.cs
- GenericTypeParameterBuilder.cs
- AssociationEndMember.cs
- DataGridViewEditingControlShowingEventArgs.cs
- WebPartsPersonalization.cs
- DiscoveryClientRequestChannel.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- PropertyRecord.cs
- XpsS0ValidatingLoader.cs
- SimpleTypesSurrogate.cs
- Point4D.cs
- ClrPerspective.cs
- BitHelper.cs
- HelloMessage11.cs
- DescriptionAttribute.cs
- UTF7Encoding.cs
- DesignColumn.cs
- Encoding.cs
- NavigationProgressEventArgs.cs
- COMException.cs
- SubMenuStyle.cs
- OperatorExpressions.cs
- PropertyTab.cs
- OperandQuery.cs
- UriScheme.cs
- DataSourceProvider.cs
- InternalConfigHost.cs
- EventLogPermission.cs
- Base64Stream.cs
- StringDictionary.cs
- Matrix.cs
- Grammar.cs
- EventLogTraceListener.cs
- Journal.cs
- Component.cs
- TextEndOfParagraph.cs
- FormViewDesigner.cs
- coordinatorscratchpad.cs
- RenamedEventArgs.cs
- PageAsyncTask.cs
- MissingMemberException.cs
- XmlReturnWriter.cs
- XmlnsCompatibleWithAttribute.cs
- RowBinding.cs
- DataGridViewColumnConverter.cs
- ChannelTokenTypeConverter.cs
- XPathArrayIterator.cs
- InvalidFilterCriteriaException.cs
- HttpDigestClientCredential.cs
- TypeUtils.cs
- LedgerEntryCollection.cs
- AuthenticateEventArgs.cs
- DataGridViewColumnCollection.cs
- objectquery_tresulttype.cs
- List.cs
- ArglessEventHandlerProxy.cs
- MiniAssembly.cs
- FullTextBreakpoint.cs
- WebPartConnectVerb.cs
- BindingCompleteEventArgs.cs
- VariableBinder.cs
- RowToParametersTransformer.cs
- InputReport.cs
- EventRouteFactory.cs
- DataContext.cs
- PersonalizableAttribute.cs
- RepeaterCommandEventArgs.cs
- InkSerializer.cs
- DbProviderFactory.cs