Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- SuppressIldasmAttribute.cs
- LicenseProviderAttribute.cs
- ParameterCollectionEditor.cs
- DocobjHost.cs
- PropertySegmentSerializationProvider.cs
- RegexWorker.cs
- DataTableClearEvent.cs
- DebuggerService.cs
- ToolStripItemEventArgs.cs
- IdnElement.cs
- EmptyStringExpandableObjectConverter.cs
- DateTimeValueSerializer.cs
- Int32AnimationUsingKeyFrames.cs
- WindowsPen.cs
- DetailsViewUpdateEventArgs.cs
- GroupBox.cs
- BamlResourceSerializer.cs
- ManagedFilter.cs
- BrowserCapabilitiesCompiler.cs
- Animatable.cs
- OdbcConnectionPoolProviderInfo.cs
- DesignerImageAdapter.cs
- WhitespaceRuleReader.cs
- GatewayIPAddressInformationCollection.cs
- ProviderConnectionPointCollection.cs
- CultureInfoConverter.cs
- WrappedIUnknown.cs
- StandardToolWindows.cs
- ContextMenu.cs
- QuotedStringWriteStateInfo.cs
- OLEDB_Enum.cs
- DoubleAnimation.cs
- QilUnary.cs
- DataViewListener.cs
- DocumentViewerHelper.cs
- HttpProfileBase.cs
- CheckBoxField.cs
- CustomMenuItemCollection.cs
- DataReaderContainer.cs
- VisualCollection.cs
- TextTreeUndo.cs
- Pointer.cs
- GrammarBuilder.cs
- AsyncResult.cs
- SqlFacetAttribute.cs
- UIElement3D.cs
- PermissionRequestEvidence.cs
- HtmlFormWrapper.cs
- SqlBooleanizer.cs
- DefaultMemberAttribute.cs
- WebPartPersonalization.cs
- UIHelper.cs
- TextEffect.cs
- Activator.cs
- InfiniteTimeSpanConverter.cs
- OdbcError.cs
- ObjectDataSourceView.cs
- TraceContextEventArgs.cs
- RequestNavigateEventArgs.cs
- CompoundFileIOPermission.cs
- SoapDocumentServiceAttribute.cs
- AddingNewEventArgs.cs
- ToolStripPanelSelectionBehavior.cs
- SearchExpression.cs
- SelectedDatesCollection.cs
- FillRuleValidation.cs
- FormsAuthenticationUserCollection.cs
- EntityModelSchemaGenerator.cs
- CharAnimationBase.cs
- BeginGetFileNameFromUserRequest.cs
- DuplicateWaitObjectException.cs
- Point.cs
- RawStylusInputCustomDataList.cs
- RegexReplacement.cs
- DataControlField.cs
- ResourceDictionary.cs
- Point3DIndependentAnimationStorage.cs
- ItemCheckedEvent.cs
- LayoutTable.cs
- ClientScriptManager.cs
- arabicshape.cs
- FixedSOMPage.cs
- CommonProperties.cs
- IdentityModelDictionary.cs
- RawStylusActions.cs
- SignedInfo.cs
- CheckableControlBaseAdapter.cs
- AdapterUtil.cs
- DefaultBinder.cs
- RTLAwareMessageBox.cs
- Visual3DCollection.cs
- arclist.cs
- SecurityTokenTypes.cs
- SignedXml.cs
- SynchronizedDispatch.cs
- HttpProtocolImporter.cs
- MaskInputRejectedEventArgs.cs
- DataGridRow.cs
- RepeatBehaviorConverter.cs
- cookieexception.cs