Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / GacUtil.cs / 1305376 / GacUtil.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System.Web.Configuration; using System.Runtime.InteropServices; using System.Security.Permissions; /* class for installing ASP.BrowserCapabilitiesFactory into gac */ internal sealed class GacUtil : IGac { [SecurityPermission(SecurityAction.Demand, UnmanagedCode = true)] public void GacInstall(string assemblyPath) { #if !FEATURE_PAL IAssemblyCache ac = null; int hr = NativeMethods.CreateAssemblyCache(out ac, 0); if (0 == hr) hr = ac.InstallAssembly(0, assemblyPath, IntPtr.Zero); #else // !FEATURE_PAL int hr = -1; try { Process gacutilprocess = new System.Diagnostics.Process(); if (gacutilprocess != null) { gacutilprocess.StartInfo.CreateNoWindow = true; #if PLATFORM_UNIX gacutilprocess.StartInfo.FileName = "gacutil"; #else gacutilprocess.StartInfo.FileName = "gacutil.exe"; #endif gacutilprocess.StartInfo.UseShellExecute = false; gacutilprocess.StartInfo.Arguments = "/i " + assemblyPath; gacutilprocess.Start(); while (!gacutilprocess.HasExited) { Thread.Sleep(250); } hr = gacutilprocess.ExitCode; } } catch (Exception) { hr = -1; } #endif // FEATURE_PAL if (0 != hr) { throw new Exception(SR.GetString(SR.Failed_gac_install)); } } [SecurityPermission(SecurityAction.Demand, UnmanagedCode = true)] public bool GacUnInstall(string assemblyName) { IAssemblyCache ac = null; uint position = 0; int hr = NativeMethods.CreateAssemblyCache(out ac, 0); if (0 == hr) { hr = ac.UninstallAssembly(0, assemblyName, IntPtr.Zero, out position); if (position == 3 /*IASSEMBLYCACHE_UNINSTALL_DISPOSITION_ALREADY_UNINSTALLED*/) { return false; } } if (0 != hr) { throw new Exception(SR.GetString(SR.Failed_gac_uninstall)); } return true; } } } // 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
- ResourcePermissionBaseEntry.cs
- PolicyDesigner.cs
- ActivityExecutorSurrogate.cs
- GradientStop.cs
- MexNamedPipeBindingCollectionElement.cs
- UriTemplateMatchException.cs
- X509ThumbprintKeyIdentifierClause.cs
- CellNormalizer.cs
- JoinSymbol.cs
- SolidColorBrush.cs
- FormViewInsertEventArgs.cs
- ControlEvent.cs
- UIntPtr.cs
- EventsTab.cs
- DES.cs
- WebRequestModuleElementCollection.cs
- VScrollBar.cs
- SessionStateModule.cs
- SQLMoney.cs
- UnsafeNativeMethods.cs
- HostedTransportConfigurationManager.cs
- DataGridViewTopRowAccessibleObject.cs
- QueryExpr.cs
- xml.cs
- InputBinder.cs
- Type.cs
- TimeZone.cs
- CollectionBuilder.cs
- FixedSOMPageElement.cs
- WhitespaceRuleLookup.cs
- IgnoreDeviceFilterElementCollection.cs
- ipaddressinformationcollection.cs
- ExceptionUtil.cs
- SqlDataSourceCache.cs
- StrokeNodeOperations.cs
- WebPartActionVerb.cs
- HandledEventArgs.cs
- DBPropSet.cs
- EllipseGeometry.cs
- AsyncContentLoadedEventArgs.cs
- ConstructorNeedsTagAttribute.cs
- SortableBindingList.cs
- FixedPageProcessor.cs
- CorrelationQueryBehavior.cs
- MDIClient.cs
- ExpressionList.cs
- CustomAttribute.cs
- WebBrowsableAttribute.cs
- DesignParameter.cs
- MultipartContentParser.cs
- ErrorTolerantObjectWriter.cs
- GPRECTF.cs
- SegmentInfo.cs
- BulletedListEventArgs.cs
- CellLabel.cs
- BoundsDrawingContextWalker.cs
- ImageKeyConverter.cs
- Buffer.cs
- TextSelectionHighlightLayer.cs
- HyperLink.cs
- AttributeUsageAttribute.cs
- Catch.cs
- Merger.cs
- HostingEnvironment.cs
- WebConfigurationFileMap.cs
- FixedHighlight.cs
- DataGridViewCellFormattingEventArgs.cs
- FullTextBreakpoint.cs
- SafeNativeMethods.cs
- UserControl.cs
- RichTextBox.cs
- DoubleLinkList.cs
- SchemaLookupTable.cs
- Win32KeyboardDevice.cs
- UnsafeNativeMethods.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- MemberListBinding.cs
- MailAddress.cs
- HttpClientCredentialType.cs
- HostedBindingBehavior.cs
- PropertyEntry.cs
- SmtpSection.cs
- EventHandlerService.cs
- LinkArea.cs
- Translator.cs
- BaseInfoTable.cs
- StreamUpdate.cs
- DynamicMethod.cs
- CounterCreationDataCollection.cs
- CompilationLock.cs
- FontWeight.cs
- RegexBoyerMoore.cs
- SqlUDTStorage.cs
- PageFunction.cs
- Int32Collection.cs
- WebPartConnection.cs
- PermissionListSet.cs
- ErrorWrapper.cs
- Publisher.cs
- ReferenceService.cs