Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CellParagraph.cs
- MruCache.cs
- GorillaCodec.cs
- Sql8ConformanceChecker.cs
- RightNameExpirationInfoPair.cs
- WindowsToolbar.cs
- LayoutSettings.cs
- RequestStatusBarUpdateEventArgs.cs
- XamlFrame.cs
- SortDescriptionCollection.cs
- DesigntimeLicenseContext.cs
- TextTreeTextNode.cs
- GlyphsSerializer.cs
- LogRecordSequence.cs
- SpecularMaterial.cs
- PostBackOptions.cs
- UInt32Converter.cs
- DataControlFieldCollection.cs
- Decorator.cs
- MimeMapping.cs
- DiscreteKeyFrames.cs
- Filter.cs
- ToolStripRenderer.cs
- SqlDataSourceView.cs
- GenericsInstances.cs
- SystemThemeKey.cs
- RuleInfoComparer.cs
- FormsAuthenticationUserCollection.cs
- SecurityException.cs
- UIElementParaClient.cs
- TargetException.cs
- BitmapSource.cs
- PTManager.cs
- RenderData.cs
- TextLine.cs
- panel.cs
- ButtonRenderer.cs
- FieldMetadata.cs
- Events.cs
- SqlReorderer.cs
- SessionEndingCancelEventArgs.cs
- RSAPKCS1SignatureFormatter.cs
- InteropBitmapSource.cs
- DictionaryEntry.cs
- OverlappedAsyncResult.cs
- AttributeExtensions.cs
- EpmTargetPathSegment.cs
- WebPartConnectVerb.cs
- MessageHeaderAttribute.cs
- DataGridViewHitTestInfo.cs
- SchemaNamespaceManager.cs
- relpropertyhelper.cs
- StorageSetMapping.cs
- SHA384CryptoServiceProvider.cs
- TextHintingModeValidation.cs
- CompositeDesignerAccessibleObject.cs
- RecommendedAsConfigurableAttribute.cs
- selecteditemcollection.cs
- InputDevice.cs
- GPPOINT.cs
- CodeAttachEventStatement.cs
- IgnorePropertiesAttribute.cs
- LogicalMethodInfo.cs
- SqlDataSourceEnumerator.cs
- DbQueryCommandTree.cs
- HostedTcpTransportManager.cs
- PerformanceCounter.cs
- XmlObjectSerializerReadContextComplexJson.cs
- StaticResourceExtension.cs
- EntitySetBaseCollection.cs
- IsolatedStoragePermission.cs
- BulletChrome.cs
- IsolatedStorageFileStream.cs
- HashAlgorithm.cs
- EditCommandColumn.cs
- SqlBulkCopyColumnMappingCollection.cs
- MetaColumn.cs
- Automation.cs
- ProcessHostFactoryHelper.cs
- MessagePartDescriptionCollection.cs
- RegistrySecurity.cs
- InstallerTypeAttribute.cs
- TempEnvironment.cs
- FunctionImportMapping.cs
- ProcessProtocolHandler.cs
- MetadataArtifactLoaderCompositeResource.cs
- UnsafeNativeMethodsMilCoreApi.cs
- ResourceExpressionEditor.cs
- PersonalizationStateInfo.cs
- TraceSection.cs
- DataGridViewCellEventArgs.cs
- SqlConnectionString.cs
- Binding.cs
- StreamDocument.cs
- PropertyContainer.cs
- Pair.cs
- RC2CryptoServiceProvider.cs
- StrokeSerializer.cs
- ValidateNames.cs
- TCPListener.cs