Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ //// 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
- ExecutionEngineException.cs
- WCFServiceClientProxyGenerator.cs
- OptimalBreakSession.cs
- RoleGroupCollectionEditor.cs
- AmbientProperties.cs
- TemplateFactory.cs
- CalendarButton.cs
- AsyncContentLoadedEventArgs.cs
- PasswordRecovery.cs
- baseshape.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- Adorner.cs
- BookmarkEventArgs.cs
- SystemIPInterfaceStatistics.cs
- DataServiceRequestException.cs
- HtmlHead.cs
- ApplyImportsAction.cs
- ClaimSet.cs
- CollectionChangeEventArgs.cs
- InternalConfigSettingsFactory.cs
- EllipseGeometry.cs
- TextProviderWrapper.cs
- StorageRoot.cs
- Token.cs
- CryptoApi.cs
- DBCSCodePageEncoding.cs
- FacetChecker.cs
- XmlWrappingReader.cs
- DesignerTextWriter.cs
- SymbolTable.cs
- VersionPair.cs
- ConstraintConverter.cs
- EndpointNameMessageFilter.cs
- AuthenticationModeHelper.cs
- GrammarBuilderDictation.cs
- Label.cs
- AffineTransform3D.cs
- KeyGestureValueSerializer.cs
- URLString.cs
- HostedTransportConfigurationManager.cs
- HttpCapabilitiesSectionHandler.cs
- DateTimeStorage.cs
- PathGeometry.cs
- ListViewItem.cs
- DiscriminatorMap.cs
- HostingEnvironment.cs
- HotSpot.cs
- PropertyToken.cs
- PeerTransportListenAddressValidatorAttribute.cs
- CompatibleIComparer.cs
- TextDocumentView.cs
- WebPartDisplayModeCollection.cs
- TextEffect.cs
- XmlElement.cs
- Paragraph.cs
- XNameConverter.cs
- FixedDSBuilder.cs
- ContainsRowNumberChecker.cs
- XamlPoint3DCollectionSerializer.cs
- ImageCodecInfo.cs
- sqlmetadatafactory.cs
- DataGrid.cs
- ValidatorCompatibilityHelper.cs
- _OverlappedAsyncResult.cs
- JoinTreeNode.cs
- ResourceDictionaryCollection.cs
- WindowsTitleBar.cs
- linebase.cs
- X509CertificateCollection.cs
- SafeMILHandle.cs
- StructuredProperty.cs
- SyndicationDeserializer.cs
- MemberPath.cs
- FixedBufferAttribute.cs
- precedingsibling.cs
- CodeParameterDeclarationExpression.cs
- DateTimeFormat.cs
- ADMembershipUser.cs
- ObjectDataSource.cs
- Soap12ProtocolImporter.cs
- UnhandledExceptionEventArgs.cs
- EnumerableRowCollection.cs
- MenuAdapter.cs
- UriTemplateVariableQueryValue.cs
- EntityExpressionVisitor.cs
- SQLBytesStorage.cs
- PrintDialogException.cs
- LineMetrics.cs
- HashCodeCombiner.cs
- cookie.cs
- SqlMethodCallConverter.cs
- ConfigurationSettings.cs
- ModelFunctionTypeElement.cs
- CircleHotSpot.cs
- ToolStripItem.cs
- ListDataBindEventArgs.cs
- RecommendedAsConfigurableAttribute.cs
- PrinterUnitConvert.cs
- FastEncoder.cs
- Splitter.cs