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
- MemberPath.cs
- autovalidator.cs
- OracleInternalConnection.cs
- RPIdentityRequirement.cs
- UserPreferenceChangedEventArgs.cs
- HashAlgorithm.cs
- Brush.cs
- DetailsViewUpdateEventArgs.cs
- SchemaConstraints.cs
- TextModifierScope.cs
- EmptyEnumerable.cs
- XPathBinder.cs
- Soap11ServerProtocol.cs
- WebControlAdapter.cs
- EventDescriptorCollection.cs
- SqlUtils.cs
- ExtentKey.cs
- StringOutput.cs
- SRef.cs
- Int16.cs
- TemplatedEditableDesignerRegion.cs
- MatrixValueSerializer.cs
- DataGridSortCommandEventArgs.cs
- UpdateExpressionVisitor.cs
- TdsParserHelperClasses.cs
- TreeNodeCollectionEditor.cs
- XPathDocumentBuilder.cs
- SignatureConfirmations.cs
- CodeMethodInvokeExpression.cs
- SpanIndex.cs
- AssemblyInfo.cs
- ChildDocumentBlock.cs
- RuntimeConfigLKG.cs
- X509ChainElement.cs
- Annotation.cs
- NamespaceEmitter.cs
- NativeMethodsOther.cs
- UrlPath.cs
- SelectionHighlightInfo.cs
- DescriptionAttribute.cs
- LocalizableAttribute.cs
- TextTreeUndoUnit.cs
- TabControlDesigner.cs
- FlowSwitch.cs
- ReadOnlyHierarchicalDataSourceView.cs
- StreamInfo.cs
- DynamicVirtualDiscoSearcher.cs
- HttpFileCollection.cs
- FutureFactory.cs
- glyphs.cs
- MSG.cs
- WebPartCancelEventArgs.cs
- PolicyStatement.cs
- GenericTypeParameterBuilder.cs
- CookieHandler.cs
- Avt.cs
- ProxyAttribute.cs
- TransformerInfo.cs
- IntellisenseTextBox.cs
- HostingEnvironment.cs
- OleDbReferenceCollection.cs
- CapabilitiesAssignment.cs
- LogicalCallContext.cs
- SendContent.cs
- HtmlInputImage.cs
- TransformedBitmap.cs
- ToolStripDropTargetManager.cs
- DbConnectionStringCommon.cs
- DeploymentSectionCache.cs
- HtmlInputImage.cs
- OleDbError.cs
- RenamedEventArgs.cs
- CalendarButtonAutomationPeer.cs
- TargetConverter.cs
- XmlAtomicValue.cs
- WebProxyScriptElement.cs
- ExternalDataExchangeService.cs
- AmbientLight.cs
- TopClause.cs
- PropertyChangeTracker.cs
- COM2ExtendedTypeConverter.cs
- InvalidWMPVersionException.cs
- IPAddressCollection.cs
- SafeFindHandle.cs
- ServiceNameElement.cs
- RadioButtonAutomationPeer.cs
- StructuredTypeEmitter.cs
- ChannelCacheSettings.cs
- MLangCodePageEncoding.cs
- Stackframe.cs
- LookupBindingPropertiesAttribute.cs
- SiteMapNodeItem.cs
- WindowsEditBox.cs
- HandleCollector.cs
- ViewStateException.cs
- WindowsFormsSectionHandler.cs
- SiteMapSection.cs
- ActivityStateQuery.cs
- MemberAccessException.cs
- ColorMap.cs