Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- ServiceContractViewControl.Designer.cs
- StrokeCollectionConverter.cs
- ActivityCodeDomSerializationManager.cs
- Clause.cs
- TraceListener.cs
- MenuAdapter.cs
- TypeBuilderInstantiation.cs
- BrowserCapabilitiesCompiler.cs
- SafeNativeMethods.cs
- Query.cs
- ByteViewer.cs
- HiddenFieldPageStatePersister.cs
- SafeCryptoHandles.cs
- ExpandableObjectConverter.cs
- ModuleConfigurationInfo.cs
- KeyProperty.cs
- DrawingAttributesDefaultValueFactory.cs
- SendMailErrorEventArgs.cs
- Model3DGroup.cs
- IDataContractSurrogate.cs
- FullTrustAssembliesSection.cs
- CounterCreationData.cs
- TargetInvocationException.cs
- EntityContainerRelationshipSet.cs
- GridViewAutomationPeer.cs
- BitmapData.cs
- BamlVersionHeader.cs
- BaseCodeDomTreeGenerator.cs
- FileSecurity.cs
- StreamInfo.cs
- ValueOfAction.cs
- TextServicesHost.cs
- HMACMD5.cs
- PrintPreviewDialog.cs
- ICspAsymmetricAlgorithm.cs
- EditorAttribute.cs
- Activity.cs
- ModelEditingScope.cs
- HttpBrowserCapabilitiesWrapper.cs
- Publisher.cs
- UTF32Encoding.cs
- SamlSubjectStatement.cs
- TextRangeBase.cs
- OleDbMetaDataFactory.cs
- AncillaryOps.cs
- HtmlContainerControl.cs
- MetabaseServerConfig.cs
- ScrollChrome.cs
- StackSpiller.Bindings.cs
- ControlHelper.cs
- CookieParameter.cs
- IfAction.cs
- WCFBuildProvider.cs
- OuterGlowBitmapEffect.cs
- FormClosedEvent.cs
- DynamicILGenerator.cs
- ExpressionReplacer.cs
- MaskedTextBoxDesigner.cs
- SqlProfileProvider.cs
- XamlPathDataSerializer.cs
- iisPickupDirectory.cs
- DesignerOptionService.cs
- CollectionBuilder.cs
- ListViewCommandEventArgs.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- XsltArgumentList.cs
- ClientEventManager.cs
- XmlDownloadManager.cs
- KeyedHashAlgorithm.cs
- GraphicsContext.cs
- HtmlGenericControl.cs
- HttpCachePolicy.cs
- UnionCodeGroup.cs
- DisplayMemberTemplateSelector.cs
- XsdBuildProvider.cs
- TextStore.cs
- _TransmitFileOverlappedAsyncResult.cs
- SafeLocalMemHandle.cs
- ReadOnlyHierarchicalDataSource.cs
- XamlReader.cs
- DataGridLength.cs
- ExpandSegment.cs
- EnumerableRowCollectionExtensions.cs
- WinEventTracker.cs
- SkipQueryOptionExpression.cs
- SystemInfo.cs
- NetworkCredential.cs
- PropertySourceInfo.cs
- BuildProvider.cs
- AttributeCollection.cs
- Int16Converter.cs
- XmlCharCheckingReader.cs
- ExpandSegmentCollection.cs
- UnitySerializationHolder.cs
- HyperLink.cs
- IdentityReference.cs
- XmlArrayAttribute.cs
- StrokeCollectionDefaultValueFactory.cs
- SessionEndingEventArgs.cs
- ProcessHost.cs