Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Configuration / GacUtil.cs / 1 / 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; } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SchemaReference.cs
- HttpBindingExtension.cs
- CompiledQueryCacheKey.cs
- KeyGesture.cs
- UnionCodeGroup.cs
- MailWebEventProvider.cs
- TransformerTypeCollection.cs
- KeyedCollection.cs
- Shared.cs
- ColumnTypeConverter.cs
- Thickness.cs
- FolderLevelBuildProviderAppliesToAttribute.cs
- RectIndependentAnimationStorage.cs
- SizeLimitedCache.cs
- SchemaNames.cs
- HttpRuntime.cs
- Matrix.cs
- FileDetails.cs
- CollectionsUtil.cs
- PrimitiveCodeDomSerializer.cs
- Literal.cs
- GenericWebPart.cs
- Collection.cs
- DesignerActionPropertyItem.cs
- DocumentSchemaValidator.cs
- DbMetaDataCollectionNames.cs
- CommandEventArgs.cs
- DBConcurrencyException.cs
- TypeSystem.cs
- RtfControls.cs
- WindowsAltTab.cs
- ElapsedEventArgs.cs
- CreatingCookieEventArgs.cs
- SignerInfo.cs
- SelectionItemPattern.cs
- ListBoxItemAutomationPeer.cs
- ObjectStateManager.cs
- PipelineModuleStepContainer.cs
- WaitHandle.cs
- SplayTreeNode.cs
- SmiConnection.cs
- IMembershipProvider.cs
- Figure.cs
- ExpandedWrapper.cs
- SizeAnimationBase.cs
- DivideByZeroException.cs
- PagerSettings.cs
- XmlSchemaAnnotation.cs
- DesignTimeParseData.cs
- SmiSettersStream.cs
- SubpageParagraph.cs
- RangeBase.cs
- LinqExpressionNormalizer.cs
- ProfileSettings.cs
- TextEffect.cs
- AgileSafeNativeMemoryHandle.cs
- SpAudioStreamWrapper.cs
- WorkflowViewManager.cs
- TreeChangeInfo.cs
- AsyncStreamReader.cs
- DiscoveryDocumentReference.cs
- RegexCompilationInfo.cs
- RtfToXamlReader.cs
- KnownTypesProvider.cs
- ListViewTableRow.cs
- AstTree.cs
- TablePattern.cs
- New.cs
- TransformValueSerializer.cs
- IteratorDescriptor.cs
- TableProvider.cs
- Utils.cs
- DependencySource.cs
- ApplicationSecurityInfo.cs
- Span.cs
- StrokeIntersection.cs
- BCryptHashAlgorithm.cs
- SqlNode.cs
- AssemblyAttributes.cs
- Compress.cs
- SmtpNegotiateAuthenticationModule.cs
- ToolboxBitmapAttribute.cs
- EditorZone.cs
- Model3D.cs
- UnsupportedPolicyOptionsException.cs
- OdbcStatementHandle.cs
- AvTraceFormat.cs
- X509CertificateRecipientClientCredential.cs
- Msec.cs
- TransformGroup.cs
- PopupRootAutomationPeer.cs
- SchemeSettingElement.cs
- AdPostCacheSubstitution.cs
- PropertyTab.cs
- WindowsMenu.cs
- WebResourceAttribute.cs
- StringHelper.cs
- ErrorHandler.cs
- TdsEnums.cs
- SecurityToken.cs