Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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; } } } // 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
- TextRangeEdit.cs
- FormatException.cs
- AnnotationResourceChangedEventArgs.cs
- Atom10FormatterFactory.cs
- dbdatarecord.cs
- RangeBaseAutomationPeer.cs
- Control.cs
- CallTemplateAction.cs
- SchemaImporter.cs
- EntityDataSourceViewSchema.cs
- TableLayoutStyleCollection.cs
- Itemizer.cs
- TableRow.cs
- InvokeMethodDesigner.xaml.cs
- GatewayIPAddressInformationCollection.cs
- QilVisitor.cs
- Exceptions.cs
- ColumnCollection.cs
- FormsAuthenticationEventArgs.cs
- MethodCallTranslator.cs
- WasAdminWrapper.cs
- NamedPermissionSet.cs
- InfiniteTimeSpanConverter.cs
- InternalBufferOverflowException.cs
- WindowsFormsHelpers.cs
- LinqToSqlWrapper.cs
- Slider.cs
- Object.cs
- XamlBrushSerializer.cs
- UIElementAutomationPeer.cs
- LowerCaseStringConverter.cs
- ProxyElement.cs
- SiteMapDataSource.cs
- PathFigureCollection.cs
- RewritingProcessor.cs
- TableParagraph.cs
- ColorConvertedBitmap.cs
- PlainXmlDeserializer.cs
- TableParagraph.cs
- RepeatBehavior.cs
- UriSectionData.cs
- Rfc2898DeriveBytes.cs
- WebColorConverter.cs
- FrameworkContentElementAutomationPeer.cs
- PropertyConverter.cs
- FacetEnabledSchemaElement.cs
- InstanceDescriptor.cs
- StringValidator.cs
- XmlEncoding.cs
- DataViewSettingCollection.cs
- Update.cs
- TextSearch.cs
- DependencyProperty.cs
- DateTimeUtil.cs
- SiteMapNodeItem.cs
- ForEachAction.cs
- ModifyActivitiesPropertyDescriptor.cs
- SizeFConverter.cs
- SQLBytesStorage.cs
- xdrvalidator.cs
- ListView.cs
- IfAction.cs
- Visual3DCollection.cs
- DataList.cs
- InputMethod.cs
- HttpCachePolicyWrapper.cs
- ReadOnlyMetadataCollection.cs
- TextSchema.cs
- Int32CAMarshaler.cs
- DefaultMemberAttribute.cs
- DataGridViewSelectedRowCollection.cs
- ObjectHelper.cs
- CurrentTimeZone.cs
- UInt32Storage.cs
- CodeSubDirectoriesCollection.cs
- ListViewItemCollectionEditor.cs
- DiscoveryReferences.cs
- RepeatInfo.cs
- SqlMetaData.cs
- Matrix3DConverter.cs
- String.cs
- ProviderUtil.cs
- HoistedLocals.cs
- TableLayoutPanelCodeDomSerializer.cs
- MinimizableAttributeTypeConverter.cs
- ThreadPool.cs
- ValueTypeFixupInfo.cs
- Wizard.cs
- Vector3DValueSerializer.cs
- PolyBezierSegment.cs
- XmlMembersMapping.cs
- SqlUdtInfo.cs
- TableItemPatternIdentifiers.cs
- DataListCommandEventArgs.cs
- HtmlCommandAdapter.cs
- SerializerWriterEventHandlers.cs
- TimeSpanConverter.cs
- TickBar.cs
- MemoryPressure.cs
- InputLanguage.cs